nRF mesh serial example not receive messages more than 32 node

Hello, I'm using nrf mesh serial example in nrf5sdkformeshv500src, in the serial node i subscripted to 0xC000 but i can't not received messages more than 32 node, my netwwork have about 90 node and all node published to 0xC000.  I changed config in the serial node as bellow.

/**
 * @defgroup DSM_CONFIG Device State Manager configuration
 * Sizes for the internal storage of the Device State Manager.
 * @{
 */
/** Maximum number of subnetworks. */
#define DSM_SUBNET_MAX                                  (8)
/** Maximum number of applications. */
#define DSM_APP_MAX                                     (8)
/** Maximum number of device keys. */
#define DSM_DEVICE_MAX                                  (100)
/** Maximum number of virtual addresses. */
#define DSM_VIRTUAL_ADDR_MAX                            (90)
/** Maximum number of non-virtual addresses. */
#define DSM_NONVIRTUAL_ADDR_MAX                         (90)
/** @} end of DSM_CONFIG */
Related