Hi Sarah,
Assuming you have AUX disabled and ADC enabled in your acquisition board plugin, you should see a total of 64 DATA + 8 ADC = 72 continuous channels when clicking on the RecordNode's continuous channel buffer monitor. If you enable AUX, you'll have 64 + 3 + 8 = 75. AUX channels will always come before ADC if they are enabled. in your case I recommend leaving disabled if not using them.
To record all 64 DATA plus the 2 ADCs (with AUX disabled), you'll just need to add the 2 ADC channels to your current list. Note that the first number after SELECT is actually the stream ID (0-indexed). The rest of the values are the channel numbers (which are 1-indexed). So the correct command in your case is:
gui.config(102, "SELECT 0 1 2 3 4 5 6 7 8 9 . . . 59 60 61 62 63
64 65 66") where I added 64 as a missing DATA channel and 65, 66 are the ADC channels, assuming you are using ADC1 and ADC2 in hardware.