UNPKG

lixin-web

Version:

vue and bootstrap

2,209 lines 78.1 kB
var Lotteryssc = function(){

/**
 * 彩票投注辅助
 */
var LotteryUtils = function() {
	/**
	 * 输入框类型检测
	 */
	var _inputCheck_Num = function(datasel, l, fun, sort) {
		fun = $.isFunction(fun) ? fun : function(n, l) {
			return true;
		}
		var newsel = []; // 新的号码
		if(sort) { // 如果需要号码排序
			var sortsel = [];
			$.each(datasel, function(i, n) {
				sortsel.push(n.split('').sort().toString().replace(/\,/g, ''));
			});
			datasel = sortsel;
		}
		datasel = ArrayUtil.unique(datasel); // 去除重复
		var regex = new RegExp('^[0-9]{' + l + '}$');
		$.each(datasel, function(i, n) {
			if(regex.test(n) && fun(n, l)) {
				newsel.push(n);
			}
		});
		return newsel;
	}

	/**
	 * 和值检测
	 */
	var _HHZXCheck_Num = function(n, l) {
		var a = new Array();
		if (l == 2) {//两位
			a = [ '00', '11', '22', '33', '44', '55', '66', '77', '88', '99' ];
		} else {//三位[默认]
			a = [ '000', '111', '222', '333', '444', '555', '666', '777', '888', '999' ];
		}
		return $.inArray(n, a) == -1 ? true : false;
	}

	/**
	 * 多少注计算
	 */
	var _inputNumbers = function(type, datasel) {
		var nums = 0, tmp_nums = 1;
		switch (type) {
		case 'rx3z3':
			var maxplace = 1;
			if(datasel.length > 1) {
				var place = 0;
				for (var i = 0; i < datasel[0].length; i++) {
					if(datasel[0][i] == '√') place++;
				}
				var newsel = datasel[1];
				var m = 3;
				// 任选3必须大于选了3位以上才能组成组合
				if(place >= m) {
					var h = ArrayUtil.ComNum(place, m);
					if(h > 0) {// 组合数必须大于0
						for (var i = 0; i < maxplace; i++) {
							var s = newsel.length;
							// 组三必须选两位或者以上
							if (s > 1) {
								nums += s * (s - 1);
							}
						}
						nums *= h;
					}
				}
			}
			break;
		case 'rx3z6':
			var maxplace = 1;
			if(datasel.length > 1) {
				var place = 0;
				for (var i = 0; i < datasel[0].length; i++) {
					if(datasel[0][i] == '√') place++;
				}
				var newsel = datasel[1];
				var m = 3;
				// 任选3必须大于选了3位以上才能组成组合
				if(place >= m) {
					var h = ArrayUtil.ComNum(place, m);
					if(h > 0) {// 组合数必须大于0
						for (var i = 0; i < maxplace; i++) {
							var s = newsel.length;
							// 组六必须选三位或者以上
							if (s > 2) {
								nums += s * (s - 1) * (s - 2) / 6;
							}
						}
						nums *= h;
					}
				}
			}
			break;
		case 'rx2zx':
			var maxplace = 1;
			if(datasel.length > 1) {
				var place = 0;
				for (var i = 0; i < datasel[0].length; i++) {
					if(datasel[0][i] == '√') place++;
				}
				var newsel = datasel[1];
				var m = 2;
				// 任选2必须大于选了2位以上才能组成组合
				if(place >= m) {
					var h = ArrayUtil.ComNum(place, m);
					if(h > 0) {// 组合数必须大于0
						for (var i = 0; i < maxplace; i++) {
							var s = newsel.length;
							// 二码不定位必须选两位或者以上
							if (s > 1) {
								nums += s * (s - 1) / 2;
							}
						}
						nums *= h;
					}
				}
			}
			break;
		case 'rx2ds':
		case 'rx3ds':
		case 'rx4ds':
			if(datasel.length > 1) {
				var place = 0;
				for (var i = 0; i < datasel[0].length; i++) {
					if(datasel[0][i] == '√') place++;
				}
				var newsel = [];
				for (var i = 1; i < datasel.length; i++) {
					newsel.push(datasel[i]);
				}
				var m = 0;
				if(type == 'rx2ds') {
					m = 2;
				}
				if(type == 'rx3ds') {
					m = 3;
				}
				if(type == 'rx4ds') {
					m = 4;
				}
				// 任选2必须大于选了2位以上才能组成组合
				if(place >= m) {
					var h = ArrayUtil.ComNum(place, m);
					if(h > 0) {// 组合数必须大于0
						nums += _inputCheck_Num(newsel, m).length;
						nums *=  h;
					}
				}
			}
			break;
		case 'rx3hh':
			if(datasel.length > 1) {
				var place = 0;
				for (var i = 0; i < datasel[0].length; i++) {
					if(datasel[0][i] == '√') place++;
				}
				var newsel = [];
				for (var i = 1; i < datasel.length; i++) {
					newsel.push(datasel[i]);
				}
				var m = 3;
				// 任选3必须大于选了3位以上才能组成组合
				if(place >= m) {
					var h = ArrayUtil.ComNum(place, m);
					if(h > 0) {// 组合数必须大于0
						nums = _inputCheck_Num(newsel, 3, _HHZXCheck_Num, true).length;
						nums *= h;
					}
				}
			}
			break;
		case 'wxzhixds':
			nums = _inputCheck_Num(datasel, 5).length;
			break;
		case 'sixzhixdsh':
		case 'sixzhixdsq':
			nums = _inputCheck_Num(datasel, 4).length;
			break;
		case 'sxzhixdsh':
		case 'sxzhixdsz':
		case 'sxzhixdsq':
			nums = _inputCheck_Num(datasel, 3).length;
			break;
		case 'sxhhzxh':
		case 'sxhhzxz':
		case 'sxhhzxq':
			nums = _inputCheck_Num(datasel, 3, _HHZXCheck_Num, true).length;
			break;
		case 'exzhixdsh':
		case 'exzhixdsq':
			nums = _inputCheck_Num(datasel, 2).length;
			break;
		case 'exzuxdsh':
		case 'exzuxdsq':
			nums = _inputCheck_Num(datasel, 2, _HHZXCheck_Num, true).length;
			break;
		case 'wxzux120':
			var s = datasel[0].length;
			if (s > 4) {
				nums += ArrayUtil.ComNum(s, 5);
			}
			break;
		case 'wxzux60':
		case 'wxzux30':
		case 'wxzux20':
		case 'wxzux10':
		case 'wxzux5':
			var minchosen = new Array();
			if(type == 'wxzux60') {
				minchosen = [1, 3];
			}
			if(type == 'wxzux30') {
				minchosen = [2, 1];
			}
			if(type == 'wxzux20') {
				minchosen = [1, 2];
			}
			if(type == 'wxzux10' || type == 'wxzux5') {
				minchosen = [1, 1];
			}
			if(datasel[0].length >= minchosen[0] && datasel[1].length >= minchosen[1]) {
				var h = ArrayUtil.intersect(datasel[0], datasel[1]).length;
				tmp_nums = ArrayUtil.ComNum(datasel[0].length, minchosen[0]) * ArrayUtil.ComNum(datasel[1].length, minchosen[1]);
				if (h > 0) {
					if (type == 'wxzux60') {
						tmp_nums -= ArrayUtil.ComNum(h, 1) * ArrayUtil.ComNum(datasel[1].length - 1, 2);
					}
					if (type == 'wxzux30') {
						tmp_nums -= ArrayUtil.ComNum(h, 2) * ArrayUtil.ComNum(2, 1);
						if (datasel[0].length - h > 0) {
							tmp_nums -= ArrayUtil.ComNum(h, 1) * ArrayUtil.ComNum(datasel[0].length - h, 1);
						}
					}
					if (type == 'wxzux20') {
						tmp_nums -= ArrayUtil.ComNum(h, 1) * ArrayUtil.ComNum(datasel[1].length - 1, 1);
					}
					if (type == 'wxzux10' || type == 'wxzux5') {
						tmp_nums -= ArrayUtil.ComNum(h, 1);
					}
				}
				nums += tmp_nums;
			}
			break;
		case 'sixzux24h':
		case 'sixzux24q':
			var s = datasel[0].length;
			if (s > 3) {
				nums += ArrayUtil.ComNum(s, 4);
			}
			break;
		case 'sixzux6h':
		case 'sixzux6q':
			var minchosen = [2];
			if (datasel[0].length >= minchosen[0]) {
				nums += ArrayUtil.ComNum(datasel[0].length, minchosen[0]);
			}
			break;
		case 'sixzux12h':
		case 'sixzux12q':
		case 'sixzux4h':
		case 'sixzux4q':
			var minchosen = new Array();
			if(type == 'sixzux12h' || type == 'sixzux12q') {
				minchosen = [1, 2];
			}
			if(type == 'sixzux4h' || type == 'sixzux4q') {
				minchosen = [1, 1];
			}
			if (datasel[0].length >= minchosen[0] && datasel[1].length >= minchosen[1]) {
				var h = ArrayUtil.intersect(datasel[0], datasel[1]).length;
				tmp_nums = ArrayUtil.ComNum(datasel[0].length, minchosen[0]) * ArrayUtil.ComNum(datasel[1].length, minchosen[1]);
				if (h > 0) {
					if (type == 'sixzux12h' || type == 'sixzux12q') {
						tmp_nums -= ArrayUtil.ComNum(h, 1) * ArrayUtil.ComNum(datasel[1].length - 1, 1);
					}
					if (type == 'sixzux4h' || type == 'sixzux4q') {
						tmp_nums -= ArrayUtil.ComNum(h, 1);
					}
				}
				nums += tmp_nums;
			}
			break;
		case 'sxzuxzsh':
		case 'sxzuxzsz':
		case 'sxzuxzsq':
			var maxplace = 1;
			for (var i = 0; i < maxplace; i++) {
				var s = datasel[i].length;
				// 组三必须选两位或者以上
				if (s > 1) {
					nums += s * (s - 1);
				}
			}
			break;
		case 'sxzuxzlh':
		case 'sxzuxzlz':
		case 'sxzuxzlq':
			var maxplace = 1;
			for (var i = 0; i < maxplace; i++) {
				var s = datasel[i].length;
				// 组六必须选三位或者以上
				if (s > 2) {
					nums += s * (s - 1) * (s - 2) / 6;
				}
			}
			break;
		case 'wxzhixzh':
		case 'sixzhixzhh':
		case 'sixzhixzhq':
			var maxplace = 0;
			if('wxzhixzh' == type) {
				maxplace = 5;
			}
			if('sixzhixzhh' == type || 'sixzhixzhq' == type) {
				maxplace = 4;
			}
			for (var i = 0; i < maxplace; i++) {
				// 有位置上没有选择
				if (datasel[i].length == 0) {
					tmp_nums = 0; break;
				}
				tmp_nums *= datasel[i].length;
			}
			nums += tmp_nums * maxplace;
			break;
		case 'sxzhixhzh':
		case 'sxzhixhzz':
		case 'sxzhixhzq':
		case 'exzhixhzh':
		case 'exzhixhzq':
			var cc = {0 : 1,1 : 3,2 : 6,3 : 10,4 : 15,5 : 21,6 : 28,7 : 36,8 : 45,9 : 55,10 : 63,11 : 69,12 : 73,13 : 75,14 : 75,15 : 73,16 : 69,17 : 63,18 : 55,19 : 45,20 : 36,21 : 28,22 : 21,23 : 15,24 : 10,25 : 6,26 : 3,27 : 1};
			if(type == 'exzhixhzh' || type == 'exzhixhzq') {
				cc = {0 : 1,1 : 2,2 : 3,3 : 4,4 : 5,5 : 6,6 : 7,7 : 8,8 : 9,9 : 10,10 : 9,11 : 8,12 : 7,13 : 6,14 : 5,15 : 4,16 : 3,17 : 2,18 : 1};
			}
		    for (var i = 0; i < datasel[0].length; i++) {
		    	nums += cc[parseInt(datasel[0][i], 10)];
			}
		    break;
		case 'rx2fs':
		case 'rx3fs':
		case 'rx4fs':
			var minplace = 0;
			if(type == 'rx2fs') {
				minplace = 2;
			}
			if(type == 'rx3fs') {
				minplace = 3;
			}
			if(type == 'rx4fs') {
				minplace = 4;
			}
			var newsel = [];
			for (var i = 0; i < datasel.length; i++) {
				if(datasel[i].length != 0) {
					newsel.push(datasel[i]);
				}
			}
			// 最少位数
			if(newsel.length >= minplace) {
				var l = ArrayUtil.ComNum(newsel.length, minplace);
				for (var i = 0; i < l; i++) {
					tmp_nums = 1;
					var data = ArrayUtil.ComVal(newsel, minplace, i);
					for (var j = 0; j < data.length; j++) {
						tmp_nums *= data[j].length;
					}
					nums += tmp_nums;
				}
			}
			break;
		case 'dw': //定位胆所有在一起特殊处理
			var maxplace = 5;
			for (var i = 0; i < maxplace; i++) {
				nums += datasel[i].length;
			}
			break;
		case 'bdw2mh':
		case 'bdw2mz':
		case 'bdw2mq':
		case 'exzuxfsh':
		case 'exzuxfsq':
			var maxplace = 1;
			for (var i = 0; i < maxplace; i++) {
				var s = datasel[i].length;
				// 二码不定位必须选两位或者以上
				if (s > 1) {
					nums += s * (s - 1) / 2;
				}
			}
			break;
		case 'kdqs':
		case 'kdzs':
		case 'kdhs':
		case 'kdqe':
		case 'kdhe':
			var cc = {0 : 10,1 : 54,2 : 96,3 : 126,4 : 144,5 : 150,6 : 144,7 : 126,8 : 96,9 : 54};
			if(type == 'kdqe' || type == 'kdhe') {
				cc = {0 : 10,1 : 18,2 : 16,3 : 14,4 : 12,5 : 10,6 : 8,7 : 6,8 : 4,9 : 2};
			}
		    for (var i = 0; i < datasel[0].length; i++) {
		    	nums += cc[parseInt(datasel[0][i], 10)];
			}
		    break;
		default:
			var maxplace = 0;
			switch (type) {
			case 'wxzhixfs':
				maxplace = 5;
				break;
			case 'sixzhixfsh':
			case 'sixzhixfsq':
				maxplace = 4;
				break;
			case 'sxzhixfsh':
			case 'sxzhixfsz':
			case 'sxzhixfsq':
				maxplace = 3;
				break;
			case 'exzhixfsh':
			case 'exzhixfsq':
			case 'dxdsh':
			case 'dxdsq':
				maxplace = 2;
				break;
			case 'bdw1mh':
			case 'bdw1mz':
			case 'bdw1mq':
			case 'qwyffs':
			case 'qwhscs':
			case 'qwsxbx':
			case 'qwsjfc':
			case 'lhwq':
			case 'lhwb':
			case 'lhws':
			case 'lhwg':
			case 'lhqb':
			case 'lhqs':
			case 'lhqg':
			case 'lhbs':
			case 'lhbg':
			case 'lhsg':
				maxplace = 1;
				break;
			}
			if(datasel.length == maxplace) {
				for (var i = 0; i < maxplace; i++) {
					// 有位置上没有选择
					if (datasel[i].length == 0) {
						tmp_nums = 0; break;
					}
					tmp_nums *= datasel[i].length;
				}
				nums += tmp_nums;
			}
		}
		return nums;
	}

	var _formatSelect_Num = function(datasel, m, n) {
		var newsel = new Array();
		if(!m) m = 0;
		if(!n) n = 0;
		for (var i = 0; i < m; i++) {
			newsel.push('-');
		}
		for (var i = 0; i < datasel.length; i++) {
			var f = datasel[i].toString().replace(/\,/g, '');
			if(f == '') {
				newsel.push('-');
			} else {
				newsel.push(f);
			}
		}
		for (var i = 0; i < n; i++) {
			newsel.push('-');
		}
		return newsel.toString();
	}

	var _formatTextarea_Num = function(type, datasel) {
		switch (type) {
		case 'wxzhixds':
			datasel = _inputCheck_Num(datasel, 5);
			break;
		case 'sixzhixdsh':
		case 'sixzhixdsq':
			datasel = _inputCheck_Num(datasel, 4);
			break;
		case 'sxzhixdsh':
		case 'sxzhixdsz':
		case 'sxzhixdsq':
			datasel = _inputCheck_Num(datasel, 3);
			break;
		case 'sxhhzxh':
		case 'sxhhzxz':
		case 'sxhhzxq':
			datasel = _inputCheck_Num(datasel, 3, _HHZXCheck_Num, true);
			break;
		case 'exzhixdsh':
		case 'exzhixdsq':
			datasel = _inputCheck_Num(datasel, 2);
			break;
		case 'exzuxdsh':
		case 'exzuxdsq':
			datasel = _inputCheck_Num(datasel, 2, _HHZXCheck_Num, true);
			break;
		case 'rx2ds':
		case 'rx3ds':
		case 'rx4ds':
			if(datasel.length > 1) {
				var place = 0;
				for (var i = 0; i < datasel[0].length; i++) {
					if(datasel[0][i] == '√') place++;
				}
				var newsel = [];
				for (var i = 1; i < datasel.length; i++) {
					newsel.push(datasel[i]);
				}
				var m = 0;
				if(type == 'rx2ds') {
					m = 2;
				}
				if(type == 'rx3ds') {
					m = 3;
				}
				if(type == 'rx4ds') {
					m = 4;
				}
				// 任选2必须大于选了2位以上才能组成组合
				if(place >= m) {
					var h = ArrayUtil.ComNum(place, m);
					if(h > 0) {// 组合数必须大于0
						return '[' + datasel[0] + ']' + _inputCheck_Num(newsel, m);
					}
				}
			}
			break;
		case 'rx3hh':
			if(datasel.length > 1) {
				var place = 0;
				for (var i = 0; i < datasel[0].length; i++) {
					if(datasel[0][i] == '√') place++;
				}
				var newsel = [];
				for (var i = 1; i < datasel.length; i++) {
					newsel.push(datasel[i]);
				}
				var m = 3;
				// 任选3必须大于选了3位以上才能组成组合
				if(place >= m) {
					var h = ArrayUtil.ComNum(place, m);
					if(h > 0) {// 组合数必须大于0
						return '[' + datasel[0] + ']' + _inputCheck_Num(newsel, 3, _HHZXCheck_Num, true);
					}
				}
			}
			break;
		default:
			break;
		}
		return datasel.toString().replace(/\,/g, ' ');
	}

	var _inputFormat = function(type, datasel) {
		switch (type) {
		case 'wxzhixds':
		case 'sixzhixdsh':
		case 'sixzhixdsq':
		case 'sxzhixdsh':
		case 'sxzhixdsz':
		case 'sxzhixdsq':
		case 'sxhhzxh':
		case 'sxhhzxz':
		case 'sxhhzxq':
		case 'exzhixdsh':
		case 'exzhixdsq':
		case 'exzuxdsh':
		case 'exzuxdsq':
		case 'rx2ds':
		case 'rx3ds':
		case 'rx3hh':
		case 'rx4ds':
			return _formatTextarea_Num(type, datasel);
		case 'rx3z3':
		case 'rx3z6':
		case 'rx2zx':
			var space = datasel[0];
			return '[' + space + ']' + ArrayUtil.remove(datasel, 0).toString();
		case 'wxzux120':
		case 'sixzux24h':
		case 'sixzux24q':
		case 'sixzux6h':
		case 'sixzux6q':
		case 'sxzuxzsh':
		case 'sxzuxzsz':
		case 'sxzuxzsq':
		case 'sxzuxzlh':
		case 'sxzuxzlz':
		case 'sxzuxzlq':
		case 'exzuxfsh':
		case 'exzuxfsq':
		case 'bdw1mh':
		case 'bdw1mz':
		case 'bdw1mq':
		case 'bdw2mh':
		case 'bdw2mz':
		case 'bdw2mq':
		case 'qwyffs':
		case 'qwhscs':
		case 'qwsxbx':
		case 'qwsjfc':
		case 'sxzhixhzh':
		case 'sxzhixhzz':
		case 'sxzhixhzq':
		case 'exzhixhzh':
		case 'exzhixhzq':
		case 'kdqs':
		case 'kdzs':
		case 'kdhs':
		case 'kdqe':
		case 'kdhe':
			return datasel.toString();
		case 'lhwq':
		case 'lhwb':
		case 'lhws':
		case 'lhwg':
		case 'lhqb':
		case 'lhqs':
		case 'lhqg':
		case 'lhbs':
		case 'lhbg':
		case 'lhsg':
			return datasel[0].toString().replace(/\,/g , '|');
		case 'sixzhixfsh':
		case 'sixzhixzhh':
			return _formatSelect_Num(datasel, 1);
		case 'sixzhixfsq':
		case 'sixzhixzhq':
			return _formatSelect_Num(datasel, 0, 1);
		case 'sxzhixfsh':
			return _formatSelect_Num(datasel, 2);
		case 'sxzhixfsz':
			return _formatSelect_Num(datasel, 1, 1);
		case 'sxzhixfsq':
			return _formatSelect_Num(datasel, 0, 2);
		case 'exzhixfsh':
			return _formatSelect_Num(datasel, 3);
		case 'exzhixfsq':
			return _formatSelect_Num(datasel, 0, 3);
		default:
			return _formatSelect_Num(datasel);
		}
	}

	var _typeFormat = function(code) {
		var a = [code[0], code[1], code[2]];
		var b = [code[2], code[3], code[4]];
		var _a = a.uniquelize();
		var _b = b.uniquelize();
		var arr = [];
		if(_a.length == 1) arr[0] = '豹子';
		if(_a.length == 2) arr[0] = '组三';
		if(_a.length == 3) arr[0] = '组六';
		if(_b.length == 1) arr[1] = '豹子';
		if(_b.length == 2) arr[1] = '组三';
		if(_b.length == 3) arr[1] = '组六';
		return arr;
	}

	return {
		inputNumbers: _inputNumbers,
		inputFormat: _inputFormat,
		typeFormat: _typeFormat
	}
}();

/**
 * TODO 彩票投注主要方法
 */
	var LotteryMain = function() {
	LotteryBaBa.call(this);
	this.LotteryUtils = LotteryUtils; 	
	// 布局
	this.Layout = [{
		title: '五星',
		rows: [[{
			title: '五星直选',
			columns: [{
				showname: '复式',
				shortname: 'wxzhixfs',
				realname: '[五星_复式]',
				tips: '从万、千、百、十、个位各选一个号码组成一注。',
				example: '投注方案:23456;<br />开奖号码:23456,<br />',
				help: '从万位、千位、百位、十位、个位中选择一个5位数号码组成一注,所选号码与开奖号码全部相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '万位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '个位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'wxzhixds',
				realname: '[五星_单式]',
				tips: '手动输入号码,至少输入1个五位数号码组成一注。',
				example: '投注方案:23456; 开奖号码:23456,即中五星直选一等奖',
				help: '手动输入一个5位数号码组成一注,所选号码的万位、千位、百位、十位、个位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {},
				compress: true
			}, {
				showname: '组合',
				shortname: 'wxzhixzh',
				realname: '[五星_组合]',
				tips: '从个、十、百、千、万位各选一个号码组成五注。',
				example: '五星组合示例,如购买:4+5+6+7+8,该票共10元,由以下5注:45678(五星)、5678(四星)、678(三星)、78(二星)、8(一星)构成。开奖号码:45678,即可中五星、四星、三星、二星、一星的一等奖各1注。',
				help: '从万位、千位、百位、十位、个位中至少各选一个号码组成1-5星的组合,共五注,所选号码的个位与开奖号码相同,则中1个5等奖;所选号码的个位、十位与开奖号码相同,则中1个5等奖以及1个4等奖,依此类推,最高可中5个奖。',
				select: {
					layout: [{
						title: '万位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '个位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}], [{
			title: '五星组选',
			columns: [{
				showname: '组选120',
				shortname: 'wxzux120',
				realname: '[五星_组选120]',
				tips: '从0-9中选择5个号码组成一注。',
				example: '投注方案:02568,开奖号码的五个数字只要包含0、2、5、6、8,即可中五星组选120一等奖。',
				help: '从0-9中任意选择5个号码组成一注,所选号码与开奖号码的万位、千位、百位、十位、个位相同,顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选60',
				shortname: 'wxzux60',
				realname: '[五星_组选60]',
				tips: '从“二重号”选择一个号码,“单号”中选择三个号码组成一注。',
				example: '投注方案:二重号:8,单号:0、2、5,只要开奖的5个数字包括 0、2、5、8、8,即可中五星组选60一等奖。',
				help: '选择1个二重号码和3个单号号码组成一注,所选的单号号码与开奖号码相同,且所选二重号码在开奖号码中出现了2次,即为中奖。',
				select: {
					layout: [{
						title: '二重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选30',
				shortname: 'wxzux30',
				realname: '[五星_组选30]',
				tips: '从“二重号”选择两个号码,“单号”中选择一个号码组成一注。',
				example: '投注方案:二重号:2、8,单号:0,只要开奖的5个数字包括 0、2、2、8、8,即可中五星组选30一等奖。',
				help: '选择2个二重号和1个单号号码组成一注,所选的单号号码与开奖号码相同,且所选的2个二重号码分别在开奖号码中出现了2次,即为中奖。',
				select: {
					layout: [{
						title: '二重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选20',
				shortname: 'wxzux20',
				realname: '[五星_组选20]',
				tips: '从“三重号”选择一个号码,“单号”中选择两个号码组成一注。',
				example: '投注方案:三重号:8,单号:0、2,只要开奖的5个数字包括 0、2、8、8、8,即可中五星组选20一等奖。',
				help: '选择1个三重号码和2个单号号码组成一注,所选的单号号码与开奖号码相同,且所选三重号码在开奖号码中出现了3次,即为中奖。',
				select: {
					layout: [{
						title: '三重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选10',
				shortname: 'wxzux10',
				realname: '[五星_组选10]',
				tips: '从“三重号”选择一个号码,“二重号”中选择一个号码组成一注。',
				example: '投注方案:三重号:8,二重号:2,只要开奖的5个数字包括 2、2、8、8、8,即可中五星组选10一等奖。',
				help: '选择1个三重号码和1个二重号码,所选三重号码在开奖号码中出现3次,并且所选二重号码在开奖号码中出现了2次,即为中奖。',
				select: {
					layout: [{
						title: '三重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '二重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选5',
				shortname: 'wxzux5',
				realname: '[五星_组选5]',
				tips: '从“四重号”选择一个号码,“单号”中选择一个号码组成一注。',
				example: '投注方案:四重号:8,单号:2,只要开奖的5个数字包括 2、8、8、8、8,即可中五星组选5一等奖。',
				help: '选择1个四重号码和1个单号号码组成一注,所选的单号号码与开奖号码相同,且所选四重号码在开奖号码中出现了4次,即为中奖。',
				select: {
					layout: [{
						title: '四重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}]]
	}, {
		title: '后四',
		rows: [[{
			title: '后四直选',
			columns: [{
				showname: '复式',
				shortname: 'sixzhixfsh',
				realname: '[后四星_复式]',
				tips: '从千位、百位、十位、个位中选择一个4位数号码组成一注',
				example: '投注方案:3456;开奖号码:*3456,即中四星直选。',
				help: '从千位、百位、十位、个位中选择一个4位数号码组成一注,所选号码与开奖号码相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '个位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'sixzhixdsh',
				realname: '[后四星_单式]',
				tips: '手动输入号码,至少输入1个四位数号码组成一注。',
				example: '投注方案:3456; 开奖号码:3456,即中四星直选一等奖',
				help: '手动输入一个4位数号码组成一注,所选号码的千位、百位、十位、个位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {},
				compress: true
			}, {
				showname: '组合',
				shortname: 'sixzhixzhh',
				realname: '[后四星_组合]',
				tips: '在千位,百位,十位,个位任意位置上任意选择1个或1个以上号码。',
				example: '投注方案:1;开奖号码万位:1,即中定位胆万位一等奖。',
				help: '从千位、百位、十位、个位任意位置上至少选择1个以上号码,所选号码与相同位置上的开奖号码一致,即为中奖。',
				select: {
					layout: [{
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '个位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}], [{
			title: '后四组选',
			columns: [{
				showname: '组选24',
				shortname: 'sixzux24h',
				realname: '[后四星_组选24]',
				tips: '从0-9中选择4个号码组成一注。',
				example: '投注方案:0568,开奖号码的四个数字只要包含0、5、6、8,即可中四星组选24一等奖。',
				help: '从0-9中任意选择4个号码组成一注,所选号码与开奖号码的千位、百位、十位、个位相同,且顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选12',
				shortname: 'sixzux12h',
				realname: '[后四星_组选12]',
				tips: '从“二重号”选择一个号码,“单号”中选择两个号码组成一注。',
				example: '投注方案:二重号:8,单号:0、6,只要开奖的四个数字包括 0、6、8、8,即可中四星组选12一等奖。',
				help: '选择1个二重号码和2个单号号码组成一注,所选单号号码与开奖号码相同,且所选二重号码在开奖号码中出现了2次,即为中奖。',
				select: {
					layout: [{
						title: '二重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选6',
				shortname: 'sixzux6h',
				realname: '[后四星_组选6]',
				tips: '从“二重号”选择两个号码组成一注。',
				example: '投注方案:二重号:6、8,只要开奖的四个数字从小到大排列为 6、6、8、8,即可中四星组选6。',
				help: '选择2个二重号码组成一注,所选的2个二重号码在开奖号码中分别出现了2次,即为中奖。',
				select: {
					layout: [{
						title: '二重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选4',
				shortname: 'sixzux4h',
				realname: '[后四星_组选4]',
				tips: '从“三重号”选择一个号码,“单号”中选择两个号码组成一注。',
				example: '投注方案:三重号:8,单号:2,只要开奖的四个数字从小到大排列为 2、8、8、8,即可中四星组选4。',
				help: '选择1个三重号码和1个单号号码组成一注,所选单号号码与开奖号码相同,且所选三重号码在开奖号码中出现了3次,即为中奖。',
				select: {
					layout: [{
						title: '三重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}]]
	}, {
		title: '前四',
		rows: [[{
			title: '前四直选',
			columns: [{
				showname: '复式',
				shortname: 'sixzhixfsq',
				realname: '[前四星_复式]',
				tips: '从万位、千位、百位、十位中选择一个4位数号码组成一注',
				example: '投注方案:3456;开奖号码:3456*,即中四星直选。',
				help: '从万位、千位、百位、十位中选择一个4位数号码组成一注,所选号码与开奖号码相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '万位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'sixzhixdsq',
				realname: '[前四星_单式]',
				tips: '手动输入号码,至少输入1个四位数号码组成一注。',
				example: '投注方案:3456; 开奖号码:3456,即中四星直选一等奖',
				help: '手动输入一个4位数号码组成一注,所选号码的万位、千位、百位、十位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {},
				compress: true
			}, {
				showname: '组合',
				shortname: 'sixzhixzhq',
				realname: '[前四星_组合]',
				tips: '在万位、千位、百位、十位任意位置上任意选择1个或1个以上号码。',
				example: '投注方案:1;开奖号码万位:1,即中定位胆万位一等奖。',
				help: '从万位、千位、百位、十位任意位置上至少选择1个以上号码,所选号码与相同位置上的开奖号码一致,即为中奖。',
				select: {
					layout: [{
						title: '万位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}], [{
			title: '前四组选',
			columns: [{
				showname: '组选24',
				shortname: 'sixzux24q',
				realname: '[前四星_组选24]',
				tips: '从0-9中选择4个号码组成一注。',
				example: '投注方案:0568,开奖号码的四个数字只要包含0、5、6、8,即可中四星组选24一等奖。',
				help: '从0-9中任意选择4个号码组成一注,所选号码与开奖号码的千位、百位、十位、个位相同,且顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选12',
				shortname: 'sixzux12q',
				realname: '[前四星_组选12]',
				tips: '从“二重号”选择一个号码,“单号”中选择两个号码组成一注。',
				example: '投注方案:二重号:8,单号:0、6,只要开奖的四个数字包括 0、6、8、8,即可中四星组选12一等奖。',
				help: '选择1个二重号码和2个单号号码组成一注,所选单号号码与开奖号码相同,且所选二重号码在开奖号码中出现了2次,即为中奖。',
				select: {
					layout: [{
						title: '二重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选6',
				shortname: 'sixzux6q',
				realname: '[前四星_组选6]',
				tips: '从“二重号”选择两个号码组成一注。',
				example: '投注方案:二重号:6、8,只要开奖的四个数字从小到大排列为 6、6、8、8,即可中四星组选6。',
				help: '选择2个二重号码组成一注,所选的2个二重号码在开奖号码中分别出现了2次,即为中奖。',
				select: {
					layout: [{
						title: '二重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组选4',
				shortname: 'sixzux4q',
				realname: '[前四星_组选4]',
				tips: '从“三重号”选择一个号码,“单号”中选择两个号码组成一注。',
				example: '投注方案:三重号:8,单号:2,只要开奖的四个数字从小到大排列为 2、8、8、8,即可中四星组选4。',
				help: '选择1个三重号码和1个单号号码组成一注,所选单号号码与开奖号码相同,且所选三重号码在开奖号码中出现了3次,即为中奖。',
				select: {
					layout: [{
						title: '三重号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '单 号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}]]
	}, {
		title: '后三',
		rows: [[{
			title: '后三直选',
			columns: [{
				showname: '复式',
				shortname: 'sxzhixfsh',
				realname: '[后三码_复式]',
				tips: '从百、十、个位各选一个号码组成一注。',
				example: '投注方案:345;<br>投注方案:345;<br>即中后三直选一等奖',
				help: '从百位、十位、个位中选择一个3位数号码组成一注,所选号码与开奖号码后3位相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '个位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'sxzhixdsh',
				realname: '[后三码_单式]',
				tips: '手动输入号码,至少输入1个三位数号码组成一注。',
				example: '投注方案:345; 开奖号码:345,即中后三直选一等奖',
				help: '手动输入一个3位数号码组成一注,所选号码的百位、十位、个位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {}
			}, {
				showname: '直选和值',
				shortname: 'sxzhixhzh',
				realname: '[后三码_和值]',
				tips: '从0-27中任意选择1个或1个以上号码',
				example: '投注方案:和值1;开奖号码后三位:001,010,100,即中后三直选一等奖',
				help: '所选数值等于开奖号码的百位、十位、个位三个数字相加之和,即为中奖。',
				select: {
					layout: [{
						balls: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27],
						tools: false,
						cls: 'hz'
					}]
				}
			}]
		}], [{
			title: '后三组选',
			columns: [{
				showname: '组三',
				shortname: 'sxzuxzsh',
				realname: '[后三码_组三]',
				tips: '从0-9中任意选择2个或2个以上号码。',
				example: '投注方案:5,8,8;开奖号码后三位:1个5,2个8 (顺序不限),即中后三组选三一等奖。',
				help: '从0-9中选择2个数字组成两注,所选号码与开奖号码的百位、十位、个位相同,且顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '组三',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组六',
				shortname: 'sxzuxzlh',
				realname: '[后三码_组六]',
				tips: '从0-9中任意选择3个或3个以上号码。',
				example: '投注方案:2,5,8;开奖号码后三位:1个2、1个5、1个8 (顺序不限),即中后三组选六一等奖。',
				help: '从0-9中任意选择3个号码组成一注,所选号码与开奖号码的百位、十位、个位相同,顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '组六',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '混合组选',
				shortname: 'sxhhzxh',
				realname: '[后三码_混合组选]',
				tips: '手动输入号码,至少输入1个三位数号码。',
				example: '投注方案:分別投注(0,0,1),以及(1,2,3),开奖号码后三位包括:(1)0,0,1,顺序不限,即中得组三一等奖;或者(2)1,2,3,顺序不限,即中得组六一等奖。',
				help: '键盘手动输入购买号码,3个数字为一注,开奖号码的百位、十位、个位符合后三组三或组六均为中奖。',
				textarea: {}
			}]
		}]]
	}, {
		title: '中三',
		rows: [[{
			title: '中三直选',
			columns: [{
				showname: '复式',
				shortname: 'sxzhixfsz',
				realname: '[中三码_复式]',
				tips: '从千、百、十位各选一个号码组成一注。',
				example: '投注方案:456; 开奖号码:3456,即中中三直选一等奖',
				help: '从千位、百位、十位中选择一个3位数号码组成一注,所选号码与开奖号码的中间3位相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'sxzhixdsz',
				realname: '[中三码_单式]',
				tips: '手动输入号码,至少输入1个三位数号码组成一注。',
				example: '投注方案:345; 开奖号码:2345,即中中三直选一等奖',
				help: '手动输入一个3位数号码组成一注,所选号码的千位、百位、十位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {}
			}, {
				showname: '直选和值',
				shortname: 'sxzhixhzz',
				realname: '[中三码_和值]',
				tips: '从0-27中任意选择1个或1个以上号码',
				example: '投注方案:和值1;开奖号码中间三位:01001,00010,00100,即中中三直选一等奖',
				help: '所选数值等于开奖号码的千位、百位、十位三个数字相加之和,即为中奖。',
				select: {
					layout: [{
						balls: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27],
						tools: false,
						cls: 'hz'
					}]
				}
			}]
		}], [{
			title: '中三组选',
			columns: [{
				showname: '组三',
				shortname: 'sxzuxzsz',
				realname: '[中三码_组三]',
				tips: '从0-9中任意选择2个或2个以上号码。',
				example: '投注方案:5,8,8;开奖号码中间三位:1个5,2个8 (顺序不限),即中中三组选三一等奖。',
				help: '从0-9中选择2个数字组成两注,所选号码与开奖号码的千位、百位、十位相同,且顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '组三',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组六',
				shortname: 'sxzuxzlz',
				realname: '[中三码_组六]',
				tips: '从0-9中任意选择3个或3个以上号码。',
				example: '投注方案:2,5,8;开奖号码中间三位:1个2、1个5、1个8 (顺序不限),即中中三组选六一等奖。',
				help: '从0-9中任意选择3个号码组成一注,所选号码与开奖号码的千位、百位、十位相同,顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '组六',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '混合组选',
				shortname: 'sxhhzxz',
				realname: '[中三码_混合组选]',
				tips: '手动输入号码,至少输入1个三位数号码。',
				example: '投注方案:分別投注(0,0,1),以及(1,2,3),开奖号码中间三位包括:(1)0,0,1,顺序不限,即中得组三一等奖;或者(2)1,2,3,顺序不限,即中得组六一等奖。',
				help: '键盘手动输入购买号码,3个数字为一注,开奖号码的千位、百位、十位符合中三组三或组六均为中奖。',
				textarea: {}
			}]
		}]]
	}, {
		title: '前三',
		rows: [[{
			title: '前三直选',
			columns: [{
				showname: '复式',
				shortname: 'sxzhixfsq',
				realname: '[前三码_复式]',
				tips: '从万、千、百位各选一个号码组成一注。',
				example: '投注方案:345; 开奖号码:345,即中前三直选一等奖',
				help: '从万位、千位、百位中选择一个3位数号码组成一注,所选号码与开奖号码的前3位相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '万位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'sxzhixdsq',
				realname: '[前三码_单式]',
				tips: '手动输入号码,至少输入1个三位数号码组成一注。',
				example: '投注方案:345; 开奖号码:345,即中前三直选一等奖',
				help: '手动输入一个3位数号码组成一注,所选号码的万位、千位、百位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {}
			}, {
				showname: '直选和值',
				shortname: 'sxzhixhzq',
				realname: '[前三码_和值]',
				tips: '从0-27中任意选择1个或1个以上号码',
				example: '投注方案:和值1;开奖号码前三位:001,010,100,即中前三直选一等奖',
				help: '所选数值等于开奖号码的万位、千位、百位三个数字相加之和,即为中奖。',
				select: {
					layout: [{
						balls: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27],
						tools: false,
						cls: 'hz'
					}]
				}
			}]
		}], [{
			title: '前三组选',
			columns: [{
				showname: '组三',
				shortname: 'sxzuxzsq',
				realname: '[前三码_组三]',
				tips: '从0-9中任意选择2个或2个以上号码。',
				example: '投注方案:5,8,8;开奖号码前三位:1个5,2个8 (顺序不限),即中前三组选三一等奖。',
				help: '从0-9中选择2个数字组成两注,所选号码与开奖号码的万位、千位、百位相同,且顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '组三',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '组六',
				shortname: 'sxzuxzlq',
				realname: '[前三码_组六]',
				tips: '从0-9中任意选择3个或3个以上号码。',
				example: '投注方案:2,5,8;开奖号码前三位:1个2、1个5、1个8 (顺序不限),即中前三组选六一等奖。',
				help: '从0-9中任意选择3个号码组成一注,所选号码与开奖号码的万位、千位、百位相同,顺序不限,即为中奖。',
				select: {
					layout: [{
						title: '组六',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '混合组选',
				shortname: 'sxhhzxq',
				realname: '[前三码_混合组选]',
				tips: '手动输入号码,至少输入1个三位数号码。',
				example: '投注方案:分別投注(0,0,1),以及(1,2,3),开奖号码前三位包括:(1)0,0,1,顺序不限,即中得组三一等奖;或者(2)1,2,3,顺序不限,即中得组六一等奖。',
				help: '键盘手动输入购买号码,3个数字为一注,开奖号码的万位、千位、百位符合后三组三或组六均为中奖。',
				textarea: {}
			}]
		}]]
	}, {
		title: '二星',
		rows: [[{
			title: '后二 直选',
			columns: [{
				showname: '复式',
				shortname: 'exzhixfsh',
				realname: '[后二码_直选_复式]',
				tips: '从十、个位各选一个号码组成一注。',
				example: '投注方案:58;开奖号码后二位:58,即中后二直选一等奖。',
				help: '从十位、个位中选择一个2位数号码组成一注,所选号码与开奖号码的十位、个位相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '个位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'exzhixdsh',
				realname: '[后二码_直选_单式]',
				tips: '手动输入号码,至少输入1个两位数号码。',
				example: '投注方案:58;开奖号码后二位:58,即中后二直选一等奖。',
				help: '手动输入一个2位数号码组成一注,所选号码的十位、个位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {}
			}, {
				showname: '直选和值',
				shortname: 'exzhixhzh',
				realname: '[后二码_直选_和值]',
				tips: '从0-18中任意选择1个或1个以上的和值号码。',
				example: '投注方案:和值1;开奖号码后二位:01,10,即中后二直选。',
				help: '所选数值等于开奖号码的十位、个位二个数字相加之和,即为中奖。',
				select: {
					layout: [{
						balls: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],
						tools: false,
						cls: 'hz'
					}]
				}
			}, {
				showname: '大小单双',
				shortname: 'dxdsh',
				realname: '[后二_大小单双]',
				tips: '从十位、个位中的“大、小、单、双”中至少各选一个组成一注。',
				example: '投注方案:大单;开奖号码十位与个位:大单,即中后二大小单双一等奖。',
				help: '对十位和个位的“大(56789)小(01234)、单(13579)双(02468)”形态进行购买,所选号码的位置、形态与开奖号码的位置、形态相同,即为中奖。',
				select: {
					layout: [{
						title: '十位',
						balls: ['大', '小', '单', '双'],
						tools: false
					}, {
						title: '个位',
						balls: ['大', '小', '单', '双'],
						tools: false
					}]
				}
			}]
		}, {
			title: '组选',
			columns: [{
				showname: '复式',
				shortname: 'exzuxfsh',
				realname: '[后二码_组选_复式]',
				tips: '从0-9中任意选择2个或2个以上号码。',
				example: '投注方案:5,8;开奖号码后二位:1个5,1个8 (顺序不限),即中后二组选一等奖。',
				help: '从0-9中选2个号码组成一注,所选号码与开奖号码的十位、个位相同,顺序不限,即中奖。',
				select: {
					layout: [{
						title: '组选',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'exzuxdsh',
				realname: '[后二码_组选_单式]',
				tips: '手动输入号码,至少输入1个两位数号码。',
				example: '投注方案:5,8;开奖号码后二位:1个5,1个8 (顺序不限),即中后二组选一等奖。',
				help: '手动输入一个2位数号码组成一注,所选号码的十位、个位与开奖号码相同,顺序不限,即为中奖。',
				textarea: {}
			}]
		}], [{
			title: '前二 直选',
			columns: [{
				showname: '复式',
				shortname: 'exzhixfsq',
				realname: '[前二码_直选_复式]',
				tips: '从万、千位各选一个号码组成一注。',
				example: '投注方案:58;开奖号码前二位:58,即中前二直选一等奖。',
				help: '从万位、千位中选择一个2位数号码组成一注,所选号码与开奖号码的前2位相同,且顺序一致,即为中奖。',
				select: {
					layout: [{
						title: '万位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'exzhixdsq',
				realname: '[前二码_直选_单式]',
				tips: '手动输入号码,至少输入1个两位数号码。',
				example: '投注方案:58;开奖号码前二位:58,即中前二直选一等奖。',
				help: '手动输入一个2位数号码组成一注,所选号码的万位、千位与开奖号码相同,且顺序一致,即为中奖。',
				textarea: {}
			}, {
				showname: '直选和值',
				shortname: 'exzhixhzq',
				realname: '[前二码_直选_和值]',
				tips: '从0-18中任意选择1个或1个以上的和值号码。',
				example: '投注方案:和值1;开奖号码前二位:01,10,即中前二直选。',
				help: '所选数值等于开奖号码的万位、千位二个数字相加之和,即为中奖。',
				select: {
					layout: [{
						balls: [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18],
						tools: false,
						cls: 'hz'
					}]
				}
			}, {
				showname: '大小单双',
				shortname: 'dxdsq',
				realname: '[前二_大小单双]',
				tips: '从万位、千位中的“大、小、单、双”中至少各选一个组成一注。',
				example: '投注方案:小双;开奖号码万位与千位:小双,即中前二大小单双一等奖。',
				help: '对百位、十位和个位的“大(56789)小(01234)、单(13579)双(02468)”形态进行购买,所选号码的位置、形态与开奖号码的位置、形态相同,即为中奖。',
				select: {
					layout: [{
						title: '万位',
						balls: ['大', '小', '单', '双'],
						tools: false
					}, {
						title: '千位',
						balls: ['大', '小', '单', '双'],
						tools: false
					}]
				}
			}]
		}, {
			title: '组选',
			columns: [{
				showname: '复式',
				shortname: 'exzuxfsq',
				realname: '[前二码_组选_复式]',
				tips: '从0-9中任意选择2个或2个以上号码。',
				example: '投注方案:5,8;开奖号码前二位:1个5,1个8 (顺序不限),即中前二组选一等奖。',
				help: '从0-9中选2个号码组成一注,所选号码与开奖号码的万位、千位相同,顺序不限,即中奖。',
				select: {
					layout: [{
						title: '组选',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '单式',
				shortname: 'exzuxdsq',
				realname: '[前二码_组选_单式]',
				tips: '手动输入号码,至少输入1个两位数号码。',
				example: '投注方案:5,8;开奖号码前二位:1个5,1个8 (顺序不限),即中前二组选一等奖。',
				help: '手动输入一个2位数号码组成一注,所选号码的万位、千位与开奖号码相同,顺序不限,即为中奖。',
				textarea: {}
			}]
		}]]
	}, {
		title: '定位胆',
		rows: [[{
			title: '定位胆',
			columns: [{
				showname: '定位胆',
				shortname: 'dw',
				realname: '定位胆',
				tips: '在万千百十个位任意位置上任意选择1个或1个以上号码。',
				example: '投注方案:1;开奖号码万位:1,即中定位胆万位一等奖。',
				help: '从万位、千位、百位、十位、个位任意位置上至少选择1个以上号码,所选号码与相同位置上的开奖号码一致,即为中奖。',
				select: {
					layout: [{
						title: '万位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '千位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '百位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '十位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}, {
						title: '个位',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}]]
	}, {
		title: '不定胆',
		rows: [[{
			title: '三星不定胆 一码',
			columns: [{
				showname: '后三',
				shortname: 'bdw1mh',
				realname: '[不定胆_后三一码]',
				tips: '从0-9中任意选择1个以上号码。',
				example: '投注方案:1;开奖号码后三位:至少出现1个1,即中后三一码不定位一等奖。',
				help: '从0-9中选择1个号码,每注由1个号码组成,只要开奖号码的百位、十位、个位中包含所选号码,即为中奖。',
				select: {
					layout: [{
						title: '不定胆',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '中三',
				shortname: 'bdw1mz',
				realname: '[不定胆_中三一码]',
				tips: '从0-9中任意选择1个以上号码。',
				example: '投注方案:1;开奖号码中间三位:至少出现1个1,即中中三一码不定位一等奖。',
				help: '帮助',
				select: {
					layout: [{
						title: '不定胆',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '前三',
				shortname: 'bdw1mq',
				realname: '[不定胆_前三一码]',
				tips: '从0-9中任意选择1个以上号码。',
				example: '投注方案:1;开奖号码前三位:至少出现1个1,即中前三一码不定位一等奖。',
				help: '从0-9中选择1个号码,每注由1个号码组成,只要开奖号码的万位、千位、百位中包含所选号码,即为中奖。',
				select: {
					layout: [{
						title: '不定胆',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}], [{
			title: '三星不定胆 二码',
			columns: [{
				showname: '后三',
				shortname: 'bdw2mh',
				realname: '[不定胆_后三二码]',
				tips: '从0-9中任意选择2个以上号码。',
				example: '投注方案:1,2;开奖号码后三位:至少出现1和2各1个,即中后三一码不定位一等奖。',
				help: '从0-9中选择2个号码,每注由2个不同的号码组成,开奖号码的百位、十位、个位中同时包含所选的2个号码,即为中奖。',
				select: {
					layout: [{
						title: '不定胆',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '中三',
				shortname: 'bdw2mz',
				realname: '[不定胆_中三二码]',
				tips: '从0-9中任意选择2个以上号码。',
				example: '投注方案:1,2;开奖号码中间三位:至少出现1和2各1个,即中中三二码不定位一等奖。',
				help: '从0-9中选择2个号码,每注由2个不同的号码组成,开奖号码的千位、百位、十位中同时包含所选的2个号码,即为中奖。',
				select: {
					layout: [{
						title: '不定胆',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '前三',
				shortname: 'bdw2mq',
				realname: '[不定胆_前三二码]',
				tips: '从0-9中任意选择2个以上号码。',
				example: '投注方案:1,2;开奖号码前三位:至少出现1和2各1个,即中前三二码不定位一等奖。',
				help: '从0-9中选择2个号码,每注由2个不同的号码组成,开奖号码的万位、千位、百位中同时包含所选的2个号码,即为中奖。',
				select: {
					layout: [{
						title: '不定胆',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}]]
	}, {
		title: '任选',
		rows: [[{
	        title: '任二',
	        columns: [{
	            showname: '复式',
	            shortname: 'rx2fs',
	            realname: '[任选二_复式]',
	            tips: '万、千、百、十、个任意2位,开奖号分别对应且顺序一致即中奖',
	            example: '万位买0,千位买1,百万买2,开奖01234,则中奖。',
	            help: '从万、千、百、十、个中至少2个位置各选一个或多个号码,将各个位置的号码进行组合,所选号码的各位与开奖号码相同则中奖。',
	            select: {
	                layout: [{
	                    title: '万位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '千位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '百位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '十位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '个位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }]
	            }
	        }, {
	            showname: '单式',
	            shortname: 'rx2ds',
	            realname: '[任选二_单式]',
	            tips: '手动输入号码,至少输入1个两位数号码和至少选择两个位置',
	            example: '输入号码01并选择万、千位置位,如开奖号码位01***; 则中奖',
	            help: '手动输入一注或者多注的两个号码和至少两个位置,如果选中的号码与位置和开奖号码对应则中奖',
	            checkbox: {
	                layout: [{
	                    title: '位置',
	                    value: ['万位', '千位', '百位', '十位', '个位']
	                }]
	            },
	            textarea: {}
	        }, {
	            showname: '组选',
	            shortname: 'rx2zx',
	            realname: '[任选二_组选]',
	            tips: '从0-9中任意选择2个或2个以上号码和任意两个位置',
	            example: '位置选择万、千,号码选择01;开奖号码为01***、则中奖',
	            help: '从0-9中任意选择2个或2个以上号码和万、千、百、十、个任意的两个位置,如果组合的号码与开奖号码对应则中奖',
	            checkbox: {
	                layout: [{
	                    title: '位置',
	                    value: ['万位', '千位', '百位', '十位', '个位']
	                }]
	            },
	            select: {
	                layout: [{
	                    title: '号码',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }]
	            }
	        }]
	    }],[{
	        title: '任三',
	        columns: [{
	            showname: '复式',
	            shortname: 'rx3fs',
	            realname: '[任选三_复式]',
	            tips: '万、千、百、十、个任意3位,开奖号分别对应且顺序一致即中奖',
	            example: '万位买0,千位买1,百万买2,十位买3,开奖01234,则中奖。',
	            help: '从万、千、百、十、个中至少3个位置各选一个或多个号码,将各个位置的号码进行组合,所选号码的各位与开奖号码相同则中奖。',
	            select: {
	                layout: [{
	                    title: '万位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '千位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '百位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '十位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '个位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }]
	            }
	        }, {
	            showname: '单式',
	            shortname: 'rx3ds',
	            realname: '[任选三_单式]',
	            tips: '手动输入号码,至少输入1个三位数号码和至少选择三个位置',
	            example: '输入号码012选择万、千、百位置,如开奖号码位012**; 则中奖',
	            help: '手动输入一注或者多注的三个号码和至少三个位置,如果选中的号码与位置和开奖号码对应则中奖',
	            checkbox: {
	                layout: [{
	                    title: '位置',
	                    value: ['万位', '千位', '百位', '十位', '个位']
	                }]
	            },
	            textarea: {}
	        }, {
	            showname: '组三',
	            shortname: 'rx3z3',
	            realname: '[任选三_组三]',
	            tips: '从0-9中任意选择2个或2个以上号码和任意三个位置',
	            example: '位置选择万、千、百,号码选择01;开奖号码为110**、则中奖',
	            help: '从0-9中任意选择2个或2个以上号码和万、千、百、十、个任意的三个位置,如果组合的号码与开奖号码对应则中奖',
	            checkbox: {
	                layout: [{
	                    title: '位置',
	                    value: ['万位', '千位', '百位', '十位', '个位']
	                }]
	            },
	            select: {
	                layout: [{
	                    title: '号码',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }]
	            }
	        }, {
	            showname: '组六',
	            shortname: 'rx3z6',
	            realname: '[任选三_组六]',
	            tips: '从0-9中任意选择3个或3个以上号码和任意三个位置',
	            example: '位置选择万、千、百,号码选择012;开奖号码为012**、则中奖',
	            help: '从0-9中任意选择3个或3个以上号码和万、千、百、十、个任意的三个位置,如果组合的号码与开奖号码对应则中奖',
	            checkbox: {
	                layout: [{
	                    title: '位置',
	                    value: ['万位', '千位', '百位', '十位', '个位']
	                }]
	            },
	            select: {
	                layout: [{
	                    title: '号码',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }]
	            }
	        }, {
	            showname: '混合组选',
	            shortname: 'rx3hh',
	            realname: '[任选三_混合组选]',
	            tips: '手动输入号码,至少输入1个三位数号码和任意三个位置',
	            example: '投注方案:345; 选择对应位:百、十、个,开奖号码:**345,即为中奖',
				help: '3个数字为一注,所选开奖号码符合对应所选位置的组三或组六均为中奖。',
	            checkbox: {
	                layout: [{
	                    title: '位置',
	                    value: ['万位', '千位', '百位', '十位', '个位']
	                }]
	            },
	            textarea: {}
	        }]
	    }], [{
	        title: '任四',
	        columns: [{
	            showname: '复式',
	            shortname: 'rx4fs',
	            realname: '[任选四_复式]',
	            tips: '万、千、百、十、个任意4位,开奖号分别对应且顺序一致即中奖',
	            example: '万位买0,千位买1,百万买2,十位买3,个位买4,开奖01234,则中奖。',
	            help: '从万、千、百、十、个中至少4个位置各选一个或多个号码,将各个位置的号码进行组合,所选号码的各位与开奖号码相同则中奖。',
	            select: {
	                layout: [{
	                    title: '万位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '千位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '百位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '十位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }, {
	                    title: '个位',
	                    balls: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
	                    tools: true
	                }]
	            }
	        }, {
	            showname: '单式',
	            shortname: 'rx4ds',
	            realname: '[任选四_单式]',
	            tips: '手动输入号码,至少输入1个四位数号码和至少选择四个位置',
	            example: '输入号码0123选择万、千、百、十位置,如开奖号码位0123*; 则中奖',
	            help: '手动输入一注或者多注的四个号码和至少四个位置,如果选中的号码与位置和开奖号码对应则中奖',
	            checkbox: {
	                layout: [{
	                    title: '位置',
	                    value: ['万位', '千位', '百位', '十位', '个位']
	                }]
	            },
	            textarea: {}
	        }]
	    }]]
	}, {
		title: '跨度',
		rows: [[{
			title: '跨度',
			columns: [{
				showname: '前三跨度',
				shortname: 'kdqs',
				realname: '跨度_前三',
				tips: '至少选择一个号码组成一注。',
				example: '投注方案:选择5, 等于开奖号前三位2,5,7的最大数7与最小数字2的差值,即为中奖。',
				help: '玩法:选择0-9,若所选号码与开奖号前三位的最大最小数字的差值相等,即中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '中三跨度',
				shortname: 'kdzs',
				realname: '跨度_中三',
				tips: '至少选择一个号码组成一注。',
				example: '投注方案:选择5, 等于开奖号中三位2,5,7的最大数7与最小数字2的差值,即为中奖。',
				help: '玩法:选择0-9,若所选号码与开奖号中三位的最大最小数字的差值相等,即中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '后三跨度',
				shortname: 'kdhs',
				realname: '跨度_后三',
				tips: '至少选择一个号码组成一注。',
				example: '投注方案:选择5, 等于开奖号后三位2,5,7的最大数7与最小数字2的差值,即为中奖。',
				help: '玩法:选择0-9,若所选号码与开奖号后三位的最大最小数字的差值相等,即中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '前二跨度',
				shortname: 'kdqe',
				realname: '跨度_前二',
				tips: '至少选择一个号码组成一注。',
				example: '投注方案:选择5, 等于开奖号前二位2,7的最大数7与最小数字2的差值,即为中奖。',
				help: '玩法:选择0-9,若所选号码与开奖号前二位的最大最小数字的差值相等,即中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '后二跨度',
				shortname: 'kdhe',
				realname: '跨度_后二',
				tips: '至少选择一个号码组成一注。',
				example: '投注方案:选择5, 等于开奖号后二位2,7的最大数7与最小数字2的差值,即为中奖。',
				help: '玩法:选择0-9,若所选号码与开奖号后二位的最大最小数字的差值相等,即中奖。。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}]]
	}, {
		title: '趣味',
		rows: [[{
			title: '特殊',
			columns: [{
				showname: '一帆风顺',
				shortname: 'qwyffs',
				realname: '[特殊_一帆风顺]',
				tips: '从0-9中任意选择1个以上号码。',
				example: '投注方案:8;开奖号码:至少出现1个8,即中一帆风顺。',
				help: '从0-9中任意选择1个号码组成一注,只要开奖号码的万位、千位、百位、十位、个位中包含所选号码,即为中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '好事成双',
				shortname: 'qwhscs',
				realname: '[特殊_好事成双]',
				tips: '从0-9中任意选择1个以上的二重号码。',
				example: '投注方案:8;开奖号码:至少出现2个8,即中好事成双。',
				help: '从0-9中任意选择1个号码组成一注,只要所选号码在开奖号码的万位、千位、百位、十位、个位中出现2次,即为中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '三星报喜',
				shortname: 'qwsxbx',
				realname: '[特殊_三星报喜]',
				tips: '从0-9中任意选择1个以上的三重号码。',
				example: '投注方案:8;开奖号码:至少出现3个8,即中三星报喜。',
				help: '从0-9中任意选择1个号码组成一注,只要所选号码在开奖号码的万位、千位、百位、十位、个位中出现3次,即为中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}, {
				showname: '四季发财',
				shortname: 'qwsjfc',
				realname: '[特殊_四季发财]',
				tips: '从0-9中任意选择1个以上的四重号码。',
				example: '投注方案:8;开奖号码:至少出现4个8,即中四季发财。',
				help: '从0-9中任意选择1个号码组成一注,只要所选号码在开奖号码的万位、千位、百位、十位、个位中出现4次,即为中奖。',
				select: {
					layout: [{
						title: '选号',
						balls: [0,1,2,3,4,5,6,7,8,9],
						tools: true
					}]
				}
			}]
		}]]
	}, {
		title: '龙虎',
		rows: [[{
			title: '龙虎',
			columns: [{
				showname: '万千',
				shortname: 'lhwq',
				realname: '[龙虎_万千]',
				tips: '从万位、千位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码万位大于千位:龙,即中奖。',
				help: '根据万位、千位号码数值比大小,万位号码大于千位号码为龙,万位号码小于千位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '万百',
				shortname: 'lhwb',
				realname: '[龙虎_万百]',
				tips: '从万位、百位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码万位大于百位:龙,即中奖。',
				help: '根据万位、百位号码数值比大小,万位号码大于百位号码为龙,万位号码小于百位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '万十',
				shortname: 'lhws',
				realname: '[龙虎_万十]',
				tips: '从万位、十位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码万位大于十位:龙,即中奖。',
				help: '根据万位、十位号码数值比大小,万位号码大于十位号码为龙,万位号码小于十位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '万个',
				shortname: 'lhwg',
				realname: '[龙虎_万个]',
				tips: '从万位、个位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码万位大于个位:龙,即中奖。',
				help: '根据万位、个位号码数值比大小,万位号码大于个位号码为龙,万位号码小于个位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '千百',
				shortname: 'lhqb',
				realname: '[龙虎_千百]',
				tips: '从千位、百位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码千位大于百位:龙,即中奖。',
				help: '根据千位、百位号码数值比大小,千位号码大于百位号码为龙,千位号码小于百位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '千十',
				shortname: 'lhqs',
				realname: '[龙虎_千十]',
				tips: '从千位、十位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码千位大于十位:龙,即中奖。',
				help: '根据千位、十位号码数值比大小,千位号码大于十位号码为龙,千位号码小于十位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '千个',
				shortname: 'lhqg',
				realname: '[龙虎_千个]',
				tips: '从千位、个位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码千位大于个位:龙,即中奖。',
				help: '根据千位、个位号码数值比大小,千位号码大于个位号码为龙,千位号码小于个位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '百十',
				shortname: 'lhbs',
				realname: '[龙虎_百十]',
				tips: '从百位、十位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码百位大于十位:龙,即中奖。',
				help: '根据百位、十位号码数值比大小,百位号码大于十位号码为龙,百位号码小于十位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '百个',
				shortname: 'lhbg',
				realname: '[龙虎_百个]',
				tips: '从百位、个位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码百位大于个位:龙,即中奖。',
				help: '根据百位、个位号码数值比大小,百位号码大于个位号码为龙,百位号码小于个位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}, {
				showname: '十个',
				shortname: 'lhsg',
				realname: '[龙虎_十个]',
				tips: '从十位、个位上选择一个形态组成一注。',
				example: '投注方案:龙;开奖号码十位大于个位:龙,即中奖。',
				help: '根据十位、个位号码数值比大小,十位号码大于个位号码为龙,十位号码小于个位号码为虎,号码相同则为和。所选形态与开奖号码形态一致,即为中奖。',
				select: {
					layout: [{
						title: '龙虎',
						balls: ['龙', '虎', '和']
					}]
				}
			}]
		}]]
	}];
	
};

	return {LotteryMain:new LotteryMain()}
}()