function bin6BitsToDec(bin) {
  switch (bin) {
    case '000000':
      return 0;
    case '000001':