Firmata Standard Setup

This will probably be a simple question but I'm working with the Firmata Standard sketch on an Uno. My goal is to have it default Digital Pins 2 - 12, and A0-5 to INPUT_PULLUP. I'm not sure where I would do that though. I think it's somewhere here in the global variables section. But I don't quite follow the bitwise map.

/* analog inputs */
int analogInputsToReport = 0; // bitwise array to store pin reporting

/* digital input ports */
byte reportPINs[TOTAL_PORTS];       // 1 = report this port, 0 = silence
byte previousPINs[TOTAL_PORTS];     // previous 8 bits sent

/* pins configuration */
byte portConfigInputs[TOTAL_PORTS]; // each bit: 1 = pin in INPUT, 0 = anything else

you should set it from master