import { Seeder } from 'typeorm-extension'; import { DataSource } from 'typeorm'; import { Dict } from '../../entity/dict.entity'; import { DictItem } from '../../entity/dict_item.entity'; export default class DictSeeder implements Seeder { /** * 格式化名称为 kebab-case * @param name 需要格式化的名称 * @returns 格式化后的名称 */ private formatName(name: string): string { // 只替换空格和下划线 return String(name).replace(/[\_\s]+/g, '-').toLowerCase(); } public async run( dataSource: DataSource, ): Promise { const dictRepository = dataSource.getRepository(Dict); const dictItemRepository = dataSource.getRepository(DictItem); // 初始化语言字典 const locales = [ { name: 'zh-cn', title: '简体中文', titleCn: '简体中文', shortName: 'CN' }, { name: 'en-us', title: 'English', titleCn: '英文', shortName: 'EN' }, ]; for (const locale of locales) { await this.createOrFindDict(dictRepository, locale); } // 添加示例翻译条目 const zhDict = await dictRepository.findOne({ where: { name: 'zh-cn' } }); const enDict = await dictRepository.findOne({ where: { name: 'en-us' } }); const translations = [ { name: 'common-save', zh: '保存', en: 'Save' }, { name: 'common-cancel', zh: '取消', en: 'Cancel' }, { name: 'common-success', zh: '操作成功', en: 'Success' }, { name: 'common-failure', zh: '操作失败', en: 'Failure' }, ]; for (const t of translations) { // 添加中文翻译 let item = await dictItemRepository.findOne({ where: { name: t.name, dict: { id: zhDict.id } } }); if (!item) { await dictItemRepository.save({ name: t.name, title: t.zh, titleCn: t.zh, shortName: t.zh.substring(0, 2).toUpperCase(), dict: zhDict }); } // 添加英文翻译 item = await dictItemRepository.findOne({ where: { name: t.name, dict: { id: enDict.id } } }); if (!item) { await dictItemRepository.save({ name: t.name, title: t.en, titleCn: t.en, shortName: t.en.substring(0, 2).toUpperCase(), dict: enDict }); } } const brandDict = await this.createOrFindDict(dictRepository, { name: 'brand', title: '品牌', titleCn: '品牌', shortName: 'BR' }); const flavorDict = await this.createOrFindDict(dictRepository, { name: 'flavor', title: '口味', titleCn: '口味', shortName: 'FL' }); const strengthDict = await this.createOrFindDict(dictRepository, { name: 'strength', title: '强度', titleCn: '强度', shortName: 'ST' }); // 遍历品牌数据 await this.seedDictItems(dictItemRepository, brandDict, brandsData); // 遍历口味数据 await this.seedDictItems(dictItemRepository, flavorDict, flavorsData); // 遍历强度数据 await this.seedDictItems(dictItemRepository, strengthDict, strengthsData); } /** * 创建或查找字典 * @param repo DictRepository * @param dictInfo 字典信息 * @returns Dict 实例 */ private async createOrFindDict(repo: any, dictInfo: { name: string; title: string; titleCn: string; shortName: string }): Promise { // 格式化 name const formattedName = this.formatName(dictInfo.name); let dict = await repo.findOne({ where: { name: formattedName } }); if (!dict) { // 如果字典不存在,则使用格式化后的 name 创建新字典 dict = await repo.save({ name: formattedName, title: dictInfo.title, titleCn: dictInfo.titleCn, shortName: dictInfo.shortName }); } return dict; } /** * 填充字典项 * @param repo DictItemRepository * @param dict 字典实例 * @param items 字典项数组 */ private async seedDictItems(repo: any, dict: Dict, items: { name: string; title: string; titleCn: string; shortName: string }[]): Promise { for (const item of items) { // 格式化 name const formattedName = this.formatName(item.name); const existingItem = await repo.findOne({ where: { name: formattedName, dict: { id: dict.id } } }); if (!existingItem) { // 如果字典项不存在,则使用格式化后的 name 创建新字典项 await repo.save({ name: formattedName, title: item.title, titleCn: item.titleCn, shortName: item.shortName, dict }); } } } } // 口味数据 const flavorsData = [ { name: 'all-white', title: 'all white', titleCn: '全白', shortName: 'AL' }, { name: 'amazing-apple-blackcurrant', title: 'amazing apple blackcurrant', titleCn: '惊艳苹果黑加仑', shortName: 'AM' }, { name: 'apple-&-mint', title: 'apple & mint', titleCn: '苹果薄荷', shortName: 'AP' }, { name: 'applemint', title: 'applemint', titleCn: '苹果薄荷混合', shortName: 'AP' }, { name: 'apple-berry-ice', title: 'apple berry ice', titleCn: '苹果莓冰', shortName: 'AP' }, { name: 'apple-bomb', title: 'apple bomb', titleCn: '苹果炸弹', shortName: 'AP' }, { name: 'apple-kiwi-melon-ice', title: 'apple kiwi melon ice', titleCn: '苹果奇异瓜冰', shortName: 'AP' }, { name: 'apple-mango-pear', title: 'apple mango pear', titleCn: '苹果芒果梨', shortName: 'AP' }, { name: 'apple-melon-ice', title: 'apple melon ice', titleCn: '苹果瓜冰', shortName: 'AP' }, { name: 'apple-mint', title: 'apple mint', titleCn: '苹果薄荷', shortName: 'AP' }, { name: 'apple-peach', title: 'apple peach', titleCn: '苹果桃子', shortName: 'AP' }, { name: 'apple-peach-pear', title: 'apple peach pear', titleCn: '苹果桃梨', shortName: 'AP' }, { name: 'apple-peach-strawww', title: 'apple peach strawww', titleCn: '苹果桃草莓', shortName: 'AP' }, { name: 'apple-pom-passion-ice', title: 'apple pom passion ice', titleCn: '苹果石榴激情冰', shortName: 'AP' }, { name: 'arctic-banana-glaze', title: 'arctic banana glaze', titleCn: '北极香蕉釉', shortName: 'AR' }, { name: 'arctic-grapefruit', title: 'arctic grapefruit', titleCn: '北极葡萄柚', shortName: 'AR' }, { name: 'arctic-mint', title: 'arctic mint', titleCn: '北极薄荷', shortName: 'AR' }, { name: 'baddie-blueberries', title: 'baddie blueberries', titleCn: '时髦蓝莓', shortName: 'BA' }, { name: 'banana', title: 'banana', titleCn: '香蕉', shortName: 'BA' }, { name: 'banana-(solid)', title: 'banana (solid)', titleCn: '香蕉(固体)', shortName: 'BA' }, { name: 'banana-berry', title: 'banana berry', titleCn: '香蕉莓果', shortName: 'BA' }, { name: 'banana-berry-melon-ice', title: 'banana berry melon ice', titleCn: '香蕉莓果瓜冰', shortName: 'BA' }, { name: 'banana-blackberry', title: 'banana blackberry', titleCn: '香蕉黑莓', shortName: 'BA' }, { name: 'banana-ice', title: 'banana ice', titleCn: '香蕉冰', shortName: 'BA' }, { name: 'banana-milkshake', title: 'banana milkshake', titleCn: '香蕉奶昔', shortName: 'BA' }, { name: 'banana-pnck-dude', title: 'banana pnck dude', titleCn: '香蕉粉红小子', shortName: 'BA' }, { name: 'banana-pomegranate-cherry-ice', title: 'banana pomegranate cherry ice', titleCn: '香蕉石榴樱桃冰', shortName: 'BA' }, { name: 'bangin-blood-orange-iced', title: 'bangin blood orange iced', titleCn: '爆炸血橙冰', shortName: 'BA' }, { name: 'berries-in-the-6ix', title: 'berries in the 6ix', titleCn: '多伦多莓果', shortName: 'BE' }, { name: 'berry-burst', title: 'berry burst', titleCn: '浆果爆发', shortName: 'BE' }, { name: 'berry-burst-(thermal)', title: 'berry burst (thermal)', titleCn: '浆果爆发(热感)', shortName: 'BE' }, { name: 'berry-ice', title: 'berry ice', titleCn: '浆果冰', shortName: 'BE' }, { name: 'berry-lime-ice', title: 'berry lime ice', titleCn: '浆果青柠冰', shortName: 'BE' }, { name: 'berry-trio-ice', title: 'berry trio ice', titleCn: '三重浆果冰', shortName: 'BE' }, { name: 'black', title: 'black', titleCn: '黑色', shortName: 'BL' }, { name: 'black-cherry', title: 'black cherry', titleCn: '黑樱桃', shortName: 'BL' }, { name: 'blackcherry', title: 'blackcherry', titleCn: '黑樱桃混合', shortName: 'BL' }, { name: 'blackcurrant-ice', title: 'blackcurrant ice', titleCn: '黑加仑冰', shortName: 'BL' }, { name: 'black-currant-ice', title: 'black currant ice', titleCn: '黑加仑冰(空格版)', shortName: 'BL' }, { name: 'black-licorice', title: 'black licorice', titleCn: '黑甘草', shortName: 'BL' }, { name: 'black-tea', title: 'black tea', titleCn: '红茶', shortName: 'BL' }, { name: 'blackberry-ice', title: 'blackberry ice', titleCn: '黑莓冰', shortName: 'BL' }, { name: 'blackberry-raspberry-lemon', title: 'blackberry raspberry lemon', titleCn: '黑莓覆盆子柠檬', shortName: 'BL' }, { name: 'blackcurrant-lychee-berries', title: 'blackcurrant lychee berries', titleCn: '黑加仑荔枝莓', shortName: 'BL' }, { name: 'blackcurrant-pineapple-ice', title: 'blackcurrant pineapple ice', titleCn: '黑加仑菠萝冰', shortName: 'BL' }, { name: 'blackcurrant-quench-ice', title: 'blackcurrant quench ice', titleCn: '黑加仑清爽冰', shortName: 'BL' }, { name: 'blastin-banana-mango-iced', title: 'blastin banana mango iced', titleCn: '香蕉芒果爆炸冰', shortName: 'BL' }, { name: 'blazin-banana-blackberry-iced', title: 'blazin banana blackberry iced', titleCn: '香蕉黑莓火焰冰', shortName: 'BL' }, { name: 'blessed-blueberry-mint-iced', title: 'blessed blueberry mint iced', titleCn: '蓝莓薄荷冰', shortName: 'BL' }, { name: 'bliss-iced', title: 'bliss iced', titleCn: '极乐冰', shortName: 'BL' }, { name: 'blood-orange', title: 'blood orange', titleCn: '血橙', shortName: 'BL' }, { name: 'blood-orange-ice', title: 'blood orange ice', titleCn: '血橙冰', shortName: 'BL' }, { name: 'blue-dragon-fruit-peach', title: 'blue dragon fruit peach', titleCn: '蓝色龙果桃', shortName: 'BL' }, { name: 'blue-lemon', title: 'blue lemon', titleCn: '蓝柠檬', shortName: 'BL' }, { name: 'blue-raspberry', title: 'blue raspberry', titleCn: '蓝覆盆子', shortName: 'BL' }, { name: 'blue-raspberry-apple', title: 'blue raspberry apple', titleCn: '蓝覆盆子苹果', shortName: 'BL' }, { name: 'blue-raspberry-lemon', title: 'blue raspberry lemon', titleCn: '蓝覆盆子柠檬', shortName: 'BL' }, { name: 'blue-raspberry-magic-cotton-ice', title: 'blue raspberry magic cotton ice', titleCn: '蓝覆盆子魔法棉花糖冰', shortName: 'BL' }, { name: 'blue-razz', title: 'blue razz', titleCn: '蓝覆盆子', shortName: 'BL' }, { name: 'blue-razz-hype', title: 'blue razz hype', titleCn: '蓝覆盆子热情', shortName: 'BL' }, { name: 'blue-razz-ice', title: 'blue razz ice', titleCn: '蓝覆盆子冰', shortName: 'BL' }, { name: 'blue-razz-ice-(solid)', title: 'blue razz ice (solid)', titleCn: '蓝覆盆子冰(固体)', shortName: 'BL' }, { name: 'blue-razz-ice-glace', title: 'blue razz ice glace', titleCn: '蓝覆盆子冰格', shortName: 'BL' }, { name: 'blue-razz-lemon-ice', title: 'blue razz lemon ice', titleCn: '蓝覆盆子柠檬冰', shortName: 'BL' }, { name: 'blue-razz-lemonade', title: 'blue razz lemonade', titleCn: '蓝覆盆子柠檬水', shortName: 'BL' }, { name: 'blueberry', title: 'blueberry', titleCn: '蓝莓', shortName: 'BL' }, { name: 'blueberry-banana', title: 'blueberry banana', titleCn: '蓝莓香蕉', shortName: 'BL' }, { name: 'blueberry-cloudz', title: 'blueberry cloudz', titleCn: '蓝莓云', shortName: 'BL' }, { name: 'blueberry-ice', title: 'blueberry ice', titleCn: '蓝莓冰', shortName: 'BL' }, { name: 'blueberry-kiwi-ice', title: 'blueberry kiwi ice', titleCn: '蓝莓奇异果冰', shortName: 'BL' }, { name: 'blueberry-lemon', title: 'blueberry lemon', titleCn: '蓝莓柠檬', shortName: 'BL' }, { name: 'blueberry-lemon-ice', title: 'blueberry lemon ice', titleCn: '蓝莓柠檬冰', shortName: 'BL' }, { name: 'blueberry-mint', title: 'blueberry mint', titleCn: '蓝莓薄荷', shortName: 'BL' }, { name: 'blueberry-pear', title: 'blueberry pear', titleCn: '蓝莓梨', shortName: 'BL' }, { name: 'blueberry-razz-cc', title: 'blueberry razz cc', titleCn: '蓝莓覆盆子混合', shortName: 'BL' }, { name: 'blueberry-sour-raspberry', title: 'blueberry sour raspberry', titleCn: '蓝莓酸覆盆子', shortName: 'BL' }, { name: 'blueberry-storm', title: 'blueberry storm', titleCn: '蓝莓风暴', shortName: 'BL' }, { name: 'blueberry-swirl-ice', title: 'blueberry swirl ice', titleCn: '蓝莓漩涡冰', shortName: 'BL' }, { name: 'blueberry-watermelon', title: 'blueberry watermelon', titleCn: '蓝莓西瓜', shortName: 'BL' }, { name: 'bold-tobacco', title: 'bold tobacco', titleCn: '浓烈烟草', shortName: 'BO' }, { name: 'bomb-blue-razz', title: 'bomb blue razz', titleCn: '蓝覆盆子炸弹', shortName: 'BO' }, { name: 'boss-blueberry-iced', title: 'boss blueberry iced', titleCn: '老板蓝莓冰', shortName: 'BO' }, { name: 'boss-blueberry-lced', title: 'boss blueberry lced', titleCn: '老板蓝莓冷饮', shortName: 'BO' }, { name: 'bright-peppermint', title: 'bright peppermint', titleCn: '清爽薄荷', shortName: 'BR' }, { name: 'bright-spearmint', title: 'bright spearmint', titleCn: '清爽留兰香', shortName: 'BR' }, { name: 'brisky-classic-red', title: 'brisky classic red', titleCn: '经典红色烈酒', shortName: 'BR' }, { name: 'bumpin-blackcurrant-iced', title: 'bumpin blackcurrant iced', titleCn: '黑加仑热烈冰', shortName: 'BU' }, { name: 'burst-ice', title: 'burst ice', titleCn: '爆炸冰', shortName: 'BU' }, { name: 'bussin-banana-iced', title: 'bussin banana iced', titleCn: '香蕉热烈冰', shortName: 'BU' }, { name: 'bussin-banana-iced', title: 'bussin banana iced', titleCn: '香蕉热烈冰(重复)', shortName: 'BU' }, { name: 'california-cherry', title: 'california cherry', titleCn: '加州樱桃', shortName: 'CA' }, { name: 'cantaloupe-mango-banana', title: 'cantaloupe mango banana', titleCn: '香瓜芒果香蕉', shortName: 'CA' }, { name: 'caramel', title: 'caramel', titleCn: '焦糖', shortName: 'CA' }, { name: 'caribbean-spirit', title: 'caribbean spirit', titleCn: '加勒比风情', shortName: 'CA' }, { name: 'caribbean-white', title: 'caribbean white', titleCn: '加勒比白', shortName: 'CA' }, { name: 'cherry', title: 'cherry', titleCn: '樱桃', shortName: 'CH' }, { name: 'cherry-blast-ice', title: 'cherry blast ice', titleCn: '樱桃爆炸冰', shortName: 'CH' }, { name: 'cherry-classic-cola', title: 'cherry classic cola', titleCn: '樱桃经典可乐', shortName: 'CH' }, { name: 'cherry-classic-red', title: 'cherry classic red', titleCn: '樱桃经典红', shortName: 'CH' }, { name: 'cherry-cola-ice', title: 'cherry cola ice', titleCn: '樱桃可乐冰', shortName: 'CH' }, { name: 'cherry-ice', title: 'cherry ice', titleCn: '樱桃冰', shortName: 'CH' }, { name: 'cherry-lemon', title: 'cherry lemon', titleCn: '樱桃柠檬', shortName: 'CH' }, { name: 'cherry-lime-classic', title: 'cherry lime classic', titleCn: '樱桃青柠经典', shortName: 'CH' }, { name: 'cherry-lime-ice', title: 'cherry lime ice', titleCn: '樱桃青柠冰', shortName: 'CH' }, { name: 'cherry-lychee', title: 'cherry lychee', titleCn: '樱桃荔枝', shortName: 'CH' }, { name: 'cherry-peach-lemon', title: 'cherry peach lemon', titleCn: '樱桃桃子柠檬', shortName: 'CH' }, { name: 'cherry-red-classic', title: 'cherry red classic', titleCn: '红樱桃经典', shortName: 'CH' }, { name: 'cherry-strazz', title: 'cherry strazz', titleCn: '樱桃草莓', shortName: 'CH' }, { name: 'cherry-watermelon', title: 'cherry watermelon', titleCn: '樱桃西瓜', shortName: 'CH' }, { name: 'chill', title: 'chill', titleCn: '冰爽', shortName: 'CH' }, { name: 'chilled-classic-red', title: 'chilled classic red', titleCn: '冰镇经典红', shortName: 'CH' }, { name: 'chillin-coffee-iced', title: 'chillin coffee iced', titleCn: '冰镇咖啡', shortName: 'CH' }, { name: 'chilly-jiggle-b', title: 'chilly jiggle b', titleCn: '清凉果冻 B', shortName: 'CH' }, { name: 'churned-peanut', title: 'churned peanut', titleCn: '搅拌花生', shortName: 'CH' }, { name: 'cinnamon', title: 'cinnamon', titleCn: '肉桂', shortName: 'CI' }, { name: 'cinnamon-flame', title: 'cinnamon flame', titleCn: '肉桂火焰', shortName: 'CI' }, { name: 'cinnamon-roll', title: 'cinnamon roll', titleCn: '肉桂卷', shortName: 'CI' }, { name: 'circle-of-life', title: 'circle of life', titleCn: '生命循环', shortName: 'CI' }, { name: 'citrus', title: 'citrus', titleCn: '柑橘', shortName: 'CI' }, { name: 'citrus-burst-ice', title: 'citrus burst ice', titleCn: '柑橘爆发冰', shortName: 'CI' }, { name: 'citrus-chill', title: 'citrus chill', titleCn: '柑橘清凉', shortName: 'CI' }, { name: 'citrus-smash-ice', title: 'citrus smash ice', titleCn: '柑橘冲击冰', shortName: 'CI' }, { name: 'citrus-sunrise', title: 'citrus sunrise', titleCn: '柑橘日出', shortName: 'CI' }, { name: 'citrus-sunrise-(thermal)', title: 'citrus sunrise (thermal)', titleCn: '柑橘日出(热感)', shortName: 'CI' }, { name: 'classic', title: 'classic', titleCn: '经典', shortName: 'CL' }, { name: 'classic-ice', title: 'classic ice', titleCn: '经典冰', shortName: 'CL' }, { name: 'classic-mint-ice', title: 'classic mint ice', titleCn: '经典薄荷冰', shortName: 'CL' }, { name: 'classic-tobacco', title: 'classic tobacco', titleCn: '经典烟草', shortName: 'CL' }, { name: 'classical-tobacco', title: 'classical tobacco', titleCn: '古典烟草', shortName: 'CL' }, { name: 'coconut-ice', title: 'coconut ice', titleCn: '椰子冰', shortName: 'CO' }, { name: 'coconut-water-ice', title: 'coconut water ice', titleCn: '椰子水冰', shortName: 'CO' }, { name: 'coffee', title: 'coffee', titleCn: '咖啡', shortName: 'CO' }, { name: 'coffee-stout', title: 'coffee stout', titleCn: '咖啡烈酒', shortName: 'CO' }, { name: 'cola', title: 'cola', titleCn: '可乐', shortName: 'CO' }, { name: 'cola-&-cherry', title: 'cola & cherry', titleCn: '可乐樱桃', shortName: 'CO' }, { name: 'cola-&-vanilla', title: 'cola & vanilla', titleCn: '可乐香草', shortName: 'CO' }, { name: 'cola-ice', title: 'cola ice', titleCn: '可乐冰', shortName: 'CO' }, { name: 'cool-frost', title: 'cool frost', titleCn: '酷霜', shortName: 'CO' }, { name: 'cool-mint', title: 'cool mint', titleCn: '酷薄荷', shortName: 'CO' }, { name: 'cool-mint-ice', title: 'cool mint ice', titleCn: '酷薄荷冰', shortName: 'CO' }, { name: 'cool-storm', title: 'cool storm', titleCn: '酷风暴', shortName: 'CO' }, { name: 'cool-tropical', title: 'cool tropical', titleCn: '酷热带', shortName: 'CO' }, { name: 'cool-watermelon', title: 'cool watermelon', titleCn: '酷西瓜', shortName: 'CO' }, { name: 'cotton-clouds', title: 'cotton clouds', titleCn: '棉花云', shortName: 'CO' }, { name: 'cranberry-blackcurrant', title: 'cranberry blackcurrant', titleCn: '蔓越莓黑加仑', shortName: 'CR' }, { name: 'cranberry-lemon', title: 'cranberry lemon', titleCn: '蔓越莓柠檬', shortName: 'CR' }, { name: 'cranberry-lemon-ice', title: 'cranberry lemon ice', titleCn: '蔓越莓柠檬冰', shortName: 'CR' }, { name: 'creamy-maple', title: 'creamy maple', titleCn: '奶香枫糖', shortName: 'CR' }, { name: 'creamy-vanilla', title: 'creamy vanilla', titleCn: '奶香香草', shortName: 'CR' }, { name: 'crispy-peppermint', title: 'crispy peppermint', titleCn: '脆薄荷', shortName: 'CR' }, { name: 'cuban-tobacco', title: 'cuban tobacco', titleCn: '古巴烟草', shortName: 'CU' }, { name: 'cucumber-lime', title: 'cucumber lime', titleCn: '黄瓜青柠', shortName: 'CU' }, { name: 'dark-blackcurrant', title: 'dark blackcurrant', titleCn: '深黑加仑', shortName: 'DA' }, { name: 'dark-forest', title: 'dark forest', titleCn: '深林', shortName: 'DA' }, { name: 'deep-freeze', title: 'deep freeze', titleCn: '极冻', shortName: 'DE' }, { name: 'dope-double-kiwi-iced', title: 'dope double kiwi iced', titleCn: '双奇异果冰', shortName: 'DO' }, { name: 'dope-double-kiwi-lced', title: 'dope double kiwi lced', titleCn: '双奇异果冷饮', shortName: 'DO' }, { name: 'double-apple', title: 'double apple', titleCn: '双苹果', shortName: 'DO' }, { name: 'double-apple-ice', title: 'double apple ice', titleCn: '双苹果冰', shortName: 'DO' }, { name: 'double-berry-twist-ice', title: 'double berry twist ice', titleCn: '双浆果扭曲冰', shortName: 'DO' }, { name: 'double-ice', title: 'double ice', titleCn: '双冰', shortName: 'DO' }, { name: 'double-mango', title: 'double mango', titleCn: '双芒果', shortName: 'DO' }, { name: 'double-mint', title: 'double mint', titleCn: '双薄荷', shortName: 'DO' }, { name: 'double-mocha', title: 'double mocha', titleCn: '双摩卡', shortName: 'DO' }, { name: 'double-shot-espresso', title: 'double shot espresso', titleCn: '双份浓缩咖啡', shortName: 'DO' }, { name: 'dragon-berry-mango-ice', title: 'dragon berry mango ice', titleCn: '龙莓芒果冰', shortName: 'DR' }, { name: 'dragon-fruit', title: 'dragon fruit', titleCn: '龙果', shortName: 'DR' }, { name: 'dragon-fruit-lychee-ice', title: 'dragon fruit lychee ice', titleCn: '龙果荔枝冰', shortName: 'DR' }, { name: 'dragon-fruit-strawberry-ice', title: 'dragon fruit strawberry ice', titleCn: '龙果草莓冰', shortName: 'DR' }, { name: 'dragon-fruit-strawnana', title: 'dragon fruit strawnana', titleCn: '龙果香蕉', shortName: 'DR' }, { name: 'dragon-melon-ice', title: 'dragon melon ice', titleCn: '龙瓜冰', shortName: 'DR' }, { name: 'dragonfruit-lychee', title: 'dragonfruit lychee', titleCn: '龙果荔枝', shortName: 'DR' }, { name: 'dreamy-dragonfruit-lychee-iced', title: 'dreamy dragonfruit lychee iced', titleCn: '梦幻龙果荔枝冰', shortName: 'DR' }, { name: 'dub-dub', title: 'dub dub', titleCn: '双重', shortName: 'DU' }, { name: 'durian', title: 'durian', titleCn: '榴莲', shortName: 'DU' }, { name: 'electric-fruit-blast', title: 'electric fruit blast', titleCn: '电果爆炸', shortName: 'EL' }, { name: 'electric-orange', title: 'electric orange', titleCn: '电橙', shortName: 'EL' }, { name: 'energy-drink', title: 'energy drink', titleCn: '能量饮料', shortName: 'EN' }, { name: 'epic-apple', title: 'epic apple', titleCn: '极致苹果', shortName: 'EP' }, { name: 'epic-apple-peach', title: 'epic apple peach', titleCn: '极致苹果桃', shortName: 'EP' }, { name: 'epic-banana', title: 'epic banana', titleCn: '极致香蕉', shortName: 'EP' }, { name: 'epic-berry-swirl', title: 'epic berry swirl', titleCn: '极致浆果旋风', shortName: 'EP' }, { name: 'epic-blue-razz', title: 'epic blue razz', titleCn: '极致蓝覆盆子', shortName: 'EP' }, { name: 'epic-fruit-bomb', title: 'epic fruit bomb', titleCn: '极致水果炸弹', shortName: 'EP' }, { name: 'epic-grape', title: 'epic grape', titleCn: '极致葡萄', shortName: 'EP' }, { name: 'epic-honeydew-blackcurrant', title: 'epic honeydew blackcurrant', titleCn: '极致蜜瓜黑加仑', shortName: 'EP' }, { name: 'epic-kiwi-mango', title: 'epic kiwi mango', titleCn: '极致奇异果芒果', shortName: 'EP' }, { name: 'epic-peach-mango', title: 'epic peach mango', titleCn: '极致桃芒果', shortName: 'EP' }, { name: 'epic-peppermint', title: 'epic peppermint', titleCn: '极致薄荷', shortName: 'EP' }, { name: 'epic-sour-berries', title: 'epic sour berries', titleCn: '极致酸浆果', shortName: 'EP' }, { name: 'epic-strawberry', title: 'epic strawberry', titleCn: '极致草莓', shortName: 'EP' }, { name: 'epic-strawberry-watermelon', title: 'epic strawberry watermelon', titleCn: '极致草莓西瓜', shortName: 'EP' }, { name: 'epic-watermelon-kiwi', title: 'epic watermelon kiwi', titleCn: '极致西瓜奇异果', shortName: 'EP' }, { name: 'exotic-mango', title: 'exotic mango', titleCn: '异国芒果', shortName: 'EX' }, { name: 'extreme-chill-mint', title: 'extreme chill mint', titleCn: '极寒薄荷', shortName: 'EX' }, { name: 'extreme-cinnamon', title: 'extreme cinnamon', titleCn: '极寒肉桂', shortName: 'EX' }, { name: 'extreme-mint', title: 'extreme mint', titleCn: '极寒薄荷', shortName: 'EX' }, { name: 'extreme-mint-iced', title: 'extreme mint iced', titleCn: '极寒薄荷冰', shortName: 'EX' }, { name: 'famous-fruit-ko-iced', title: 'famous fruit ko iced', titleCn: '知名水果 KO 冰', shortName: 'FA' }, { name: 'famous-fruit-ko-lced', title: 'famous fruit ko lced', titleCn: '知名水果 KO 冷饮', shortName: 'FA' }, { name: 'fizzy', title: 'fizzy', titleCn: '汽水', shortName: 'FI' }, { name: 'flavourless', title: 'flavourless', titleCn: '无味', shortName: 'FL' }, { name: 'flippin-fruit-flash', title: 'flippin fruit flash', titleCn: '翻转水果闪电', shortName: 'FL' }, { name: 'flippin-fruit-flash-(rainbow-burst)', title: 'flippin fruit flash (rainbow burst)', titleCn: '翻转水果闪电(彩虹爆发)', shortName: 'FL' }, { name: 'forest-fruits', title: 'forest fruits', titleCn: '森林水果', shortName: 'FO' }, { name: 'fragrant-grapefruit', title: 'fragrant grapefruit', titleCn: '香气葡萄柚', shortName: 'FR' }, { name: 'freeze', title: 'freeze', titleCn: '冰冻', shortName: 'FR' }, { name: 'freeze-mint', title: 'freeze mint', titleCn: '冰薄荷', shortName: 'FR' }, { name: 'freeze-mint-salty', title: 'freeze mint salty', titleCn: '冰薄荷咸味', shortName: 'FR' }, { name: 'freezing-peppermint', title: 'freezing peppermint', titleCn: '冰爽薄荷', shortName: 'FR' }, { name: 'freezy-berry-peachy', title: 'freezy berry peachy', titleCn: '冰冻浆果桃', shortName: 'FR' }, { name: 'fresh-fruit', title: 'fresh fruit', titleCn: '新鲜水果', shortName: 'FR' }, { name: 'fresh-mint', title: 'fresh mint', titleCn: '新鲜薄荷', shortName: 'FR' }, { name: 'fresh-mint-ice', title: 'fresh mint ice', titleCn: '新鲜薄荷冰', shortName: 'FR' }, { name: 'froot-b', title: 'froot b', titleCn: '水果 B', shortName: 'FR' }, { name: 'frost', title: 'frost', titleCn: '霜冻', shortName: 'FR' }, { name: 'frost-mint', title: 'frost mint', titleCn: '霜薄荷', shortName: 'FR' }, { name: 'frosted-strawberries', title: 'frosted strawberries', titleCn: '霜冻草莓', shortName: 'FR' }, { name: 'frosty-grapefruit', title: 'frosty grapefruit', titleCn: '冰爽葡萄柚', shortName: 'FR' }, { name: 'frozen-classical-ice', title: 'frozen classical ice', titleCn: '冷冻经典冰', shortName: 'FR' }, { name: 'frozen-cloudberry', title: 'frozen cloudberry', titleCn: '冷冻云莓', shortName: 'FR' }, { name: 'frozen-mint', title: 'frozen mint', titleCn: '冷冻薄荷', shortName: 'FR' }, { name: 'frozen-pineapple', title: 'frozen pineapple', titleCn: '冷冻菠萝', shortName: 'FR' }, { name: 'frozen-strawberry', title: 'frozen strawberry', titleCn: '冷冻草莓', shortName: 'FR' }, { name: 'frozen-strawberrygb(gummy-bear)', title: 'frozen strawberrygb(gummy bear)', titleCn: '冷冻草莓软糖', shortName: 'FR' }, { name: 'grapefruit-grape-gb(gummy-bear)', title: 'grapefruit grape gb(gummy bear)', titleCn: '葡萄柚葡萄软糖', shortName: 'GR' }, { name: 'fruit-flash-ice', title: 'fruit flash ice', titleCn: '水果闪电冰', shortName: 'FR' }, { name: 'fruity-explosion', title: 'fruity explosion', titleCn: '水果爆炸', shortName: 'FR' }, { name: 'fuji-apple-ice', title: 'fuji apple ice', titleCn: '富士苹果冰', shortName: 'FU' }, { name: 'fuji-ice', title: 'fuji ice', titleCn: '富士冰', shortName: 'FU' }, { name: 'fuji-melon-ice', title: 'fuji melon ice', titleCn: '富士瓜冰', shortName: 'FU' }, { name: 'full-charge', title: 'full charge', titleCn: '满电', shortName: 'FU' }, { name: 'gb', title: 'gb', titleCn: '软糖', shortName: 'GB' }, { name: 'gb(gummy-bear)', title: 'gb(gummy bear)', titleCn: '软糖(Gummy Bear)', shortName: 'GB' }, { name: 'gentle-mint', title: 'gentle mint', titleCn: '温和薄荷', shortName: 'GE' }, { name: 'ghost-cola-&-vanilla', title: 'ghost cola & vanilla', titleCn: '幽灵可乐香草', shortName: 'GH' }, { name: 'ghost-cola-ice', title: 'ghost cola ice', titleCn: '幽灵可乐冰', shortName: 'GH' }, { name: 'ghost-mango', title: 'ghost mango', titleCn: '幽灵芒果', shortName: 'GH' }, { name: 'ghost-original', title: 'ghost original', titleCn: '幽灵原味', shortName: 'GH' }, { name: 'ghost-watermelon-ice', title: 'ghost watermelon ice', titleCn: '幽灵西瓜冰', shortName: 'GH' }, { name: 'gnarly-green-d-(green-dew)', title: 'gnarly green d (green dew)', titleCn: '狂野绿 D(绿色露水)', shortName: 'GN' }, { name: 'gold-edition', title: 'gold edition', titleCn: '金版', shortName: 'GO' }, { name: 'grape', title: 'grape', titleCn: '葡萄', shortName: 'GR' }, { name: 'grape-cherry', title: 'grape cherry', titleCn: '葡萄樱桃', shortName: 'GR' }, { name: 'grape-fury-ice', title: 'grape fury ice', titleCn: '葡萄狂怒冰', shortName: 'GR' }, { name: 'grape-honeydew-ice', title: 'grape honeydew ice', titleCn: '葡萄蜜瓜冰', shortName: 'GR' }, { name: 'grape-ice', title: 'grape ice', titleCn: '葡萄冰', shortName: 'GR' }, { name: 'grape-pomegranate-ice', title: 'grape pomegranate ice', titleCn: '葡萄石榴冰', shortName: 'GR' }, { name: 'grapefruit-grape', title: 'grapefruit grape', titleCn: '葡萄柚葡萄', shortName: 'GR' }, { name: 'grapefruit-ice', title: 'grapefruit ice', titleCn: '葡萄柚冰', shortName: 'GR' }, { name: 'grapes', title: 'grapes', titleCn: '葡萄', shortName: 'GR' }, { name: 'grapplin-grape-sour-apple-iced', title: 'grapplin grape sour apple iced', titleCn: '葡萄酸苹果冰', shortName: 'GR' }, { name: 'green-apple', title: 'green apple', titleCn: '青苹果', shortName: 'GR' }, { name: 'green-apple-ice', title: 'green apple ice', titleCn: '青苹果冰', shortName: 'GR' }, { name: 'green-grape-ice', title: 'green grape ice', titleCn: '青葡萄冰', shortName: 'GR' }, { name: 'green-mango-ice', title: 'green mango ice', titleCn: '青芒果冰', shortName: 'GR' }, { name: 'green-mint', title: 'green mint', titleCn: '青薄荷', shortName: 'GR' }, { name: 'green-spearmint', title: 'green spearmint', titleCn: '青留兰香', shortName: 'GR' }, { name: 'green-tea', title: 'green tea', titleCn: '绿茶', shortName: 'GR' }, { name: 'groovy-grape', title: 'groovy grape', titleCn: '活力葡萄', shortName: 'GR' }, { name: 'groovy-grape-passionfruit-iced', title: 'groovy grape passionfruit iced', titleCn: '活力葡萄激情果冰', shortName: 'GR' }, { name: 'guava-ice', title: 'guava ice', titleCn: '番石榴冰', shortName: 'GU' }, { name: 'guava-ice-t', title: 'guava ice t', titleCn: '番石榴冰 T', shortName: 'GU' }, { name: 'guava-mango-peach', title: 'guava mango peach', titleCn: '番石榴芒果桃', shortName: 'GU' }, { name: 'gusto-green-apple', title: 'gusto green apple', titleCn: '绿苹果狂热', shortName: 'GU' }, { name: 'hakuna', title: 'hakuna', titleCn: '哈库纳', shortName: 'HA' }, { name: 'harambae', title: 'harambae', titleCn: '哈兰贝', shortName: 'HA' }, { name: 'harmony', title: 'harmony', titleCn: '和谐', shortName: 'HA' }, { name: 'haven', title: 'haven', titleCn: '避风港', shortName: 'HA' }, { name: 'haven-iced', title: 'haven iced', titleCn: '避风港冰', shortName: 'HA' }, { name: 'hawaiian-blue', title: 'hawaiian blue', titleCn: '夏威夷蓝', shortName: 'HA' }, { name: 'hawaiian-mist-ice', title: 'hawaiian mist ice', titleCn: '夏威夷薄雾冰', shortName: 'HA' }, { name: 'hawaiian-storm', title: 'hawaiian storm', titleCn: '夏威夷风暴', shortName: 'HA' }, { name: 'hip-honeydew-mango-iced', title: 'hip honeydew mango iced', titleCn: '蜜瓜芒果冰', shortName: 'HI' }, { name: 'hokkaido-milk', title: 'hokkaido milk', titleCn: '北海道牛奶', shortName: 'HO' }, { name: 'honeydew-blackcurrant', title: 'honeydew blackcurrant', titleCn: '蜜瓜黑加仑', shortName: 'HO' }, { name: 'honeydew-mango-ice', title: 'honeydew mango ice', titleCn: '蜜瓜芒果冰', shortName: 'HO' }, { name: 'hype', title: 'hype', titleCn: '狂热', shortName: 'HY' }, { name: 'ice-blast', title: 'ice blast', titleCn: '冰爆', shortName: 'IC' }, { name: 'ice-cool', title: 'ice cool', titleCn: '冰凉', shortName: 'IC' }, { name: 'ice-cream', title: 'ice cream', titleCn: '冰淇淋', shortName: 'IC' }, { name: 'ice-mint', title: 'ice mint', titleCn: '冰薄荷', shortName: 'IC' }, { name: 'ice-wintergreen', title: 'ice wintergreen', titleCn: '冰冬青', shortName: 'IC' }, { name: 'iced-americano', title: 'iced americano', titleCn: '冰美式', shortName: 'IC' }, { name: 'icy-berries', title: 'icy berries', titleCn: '冰爽浆果', shortName: 'IC' }, { name: 'icy-blackcurrant', title: 'icy blackcurrant', titleCn: '冰爽黑加仑', shortName: 'IC' }, { name: 'icy-cherry', title: 'icy cherry', titleCn: '冰爽樱桃', shortName: 'IC' }, { name: 'icy-mint', title: 'icy mint', titleCn: '冰爽薄荷', shortName: 'IC' }, { name: 'icy-pink-clouds', title: 'icy pink clouds', titleCn: '冰粉云', shortName: 'IC' }, { name: 'intense-blue-razz', title: 'intense blue razz', titleCn: '强烈蓝覆盆子', shortName: 'IN' }, { name: 'intense-blueberry-lemon', title: 'intense blueberry lemon', titleCn: '强烈蓝莓柠檬', shortName: 'IN' }, { name: 'intense-flavourless', title: 'intense flavourless', titleCn: '强烈无味', shortName: 'IN' }, { name: 'intense-fruity-explosion', title: 'intense fruity explosion', titleCn: '强烈水果爆炸', shortName: 'IN' }, { name: 'intense-juicy-peach', title: 'intense juicy peach', titleCn: '强烈多汁桃', shortName: 'IN' }, { name: 'intense-red-apple', title: 'intense red apple', titleCn: '强烈红苹果', shortName: 'IN' }, { name: 'intense-ripe-mango', title: 'intense ripe mango', titleCn: '强烈熟芒果', shortName: 'IN' }, { name: 'intense-strawberry-watermelon', title: 'intense strawberry watermelon', titleCn: '强烈草莓西瓜', shortName: 'IN' }, { name: 'intense-white-grape', title: 'intense white grape', titleCn: '强烈白葡萄', shortName: 'IN' }, { name: 'intense-white-mint', title: 'intense white mint', titleCn: '强烈白薄荷', shortName: 'IN' }, { name: 'jasmine-tea', title: 'jasmine tea', titleCn: '茉莉茶', shortName: 'JA' }, { name: 'jiggly-b', title: 'jiggly b', titleCn: '果冻 B', shortName: 'JI' }, { name: 'jiggly-sting', title: 'jiggly sting', titleCn: '果冻刺', shortName: 'JI' }, { name: 'juicy-mango', title: 'juicy mango', titleCn: '多汁芒果', shortName: 'JU' }, { name: 'juicy-peach', title: 'juicy peach', titleCn: '多汁桃', shortName: 'JU' }, { name: 'juicy-peach-ice', title: 'juicy peach ice', titleCn: '多汁桃冰', shortName: 'JU' }, { name: 'jungle-secrets', title: 'jungle secrets', titleCn: '丛林秘密', shortName: 'JU' }, { name: 'kanzi', title: 'kanzi', titleCn: '甘之', shortName: 'KA' }, { name: 'kewl-kiwi-passionfruit-iced', title: 'kewl kiwi passionfruit iced', titleCn: '酷奇奇', shortName: 'KE' }, { name: 'kiwi-berry-ice', title: 'kiwi berry ice', titleCn: '奇异果浆果冰', shortName: 'KI' }, { name: 'kiwi-dragon-berry', title: 'kiwi dragon berry', titleCn: '奇异果龙莓', shortName: 'KI' }, { name: 'kiwi-green-t', title: 'kiwi green t', titleCn: '奇异果绿茶', shortName: 'KI' }, { name: 'kiwi-guava-ice', title: 'kiwi guava ice', titleCn: '奇异果番石榴冰', shortName: 'KI' }, { name: 'kiwi-guava-passionfruit-ice', title: 'kiwi guava passionfruit ice', titleCn: '奇异果番石榴激情果冰', shortName: 'KI' }, { name: 'kiwi-passion-fruit-guava', title: 'kiwi passion fruit guava', titleCn: '奇异果激情果番石榴', shortName: 'KI' }, { name: 'kyoho-grape', title: 'kyoho grape', titleCn: '巨峰葡萄', shortName: 'KY' }, { name: 'kyoho-grape-ice', title: 'kyoho grape ice', titleCn: '巨峰葡萄冰', shortName: 'KY' }, { name: 'lemon', title: 'lemon', titleCn: '柠檬', shortName: 'LE' }, { name: 'lemon-berry', title: 'lemon berry', titleCn: '柠檬浆果', shortName: 'LE' }, { name: 'lemon-blue-razz-ice', title: 'lemon blue razz ice', titleCn: '柠檬蓝覆盆子冰', shortName: 'LE' }, { name: 'lemon-lime-cranberry', title: 'lemon lime cranberry', titleCn: '柠檬青柠蔓越莓', shortName: 'LE' }, { name: 'lemon-lime-ice', title: 'lemon lime ice', titleCn: '柠檬青柠冰', shortName: 'LE' }, { name: 'lemon-sprite', title: 'lemon sprite', titleCn: '柠檬汽水', shortName: 'LE' }, { name: 'lemon-spritz', title: 'lemon spritz', titleCn: '柠檬气泡', shortName: 'LE' }, { name: 'lemon-squeeze-ice', title: 'lemon squeeze ice', titleCn: '柠檬榨汁冰', shortName: 'LE' }, { name: 'lemon-squeeze-iced', title: 'lemon squeeze iced', titleCn: '柠檬榨汁冷饮', shortName: 'LE' }, { name: 'lemon-t', title: 'lemon t', titleCn: '柠檬 T', shortName: 'LE' }, { name: 'lemon-tea-ice', title: 'lemon tea ice', titleCn: '柠檬茶冰', shortName: 'LE' }, { name: 'lemon-twist-ice', title: 'lemon twist ice', titleCn: '柠檬扭转冰', shortName: 'LE' }, { name: 'lemur', title: 'lemur', titleCn: '狐猴', shortName: 'LE' }, { name: 'lime-berry-orange-ice', title: 'lime berry orange ice', titleCn: '青柠浆果橙冰', shortName: 'LI' }, { name: 'lime-flame', title: 'lime flame', titleCn: '青柠火焰', shortName: 'LI' }, { name: 'liquorice', title: 'liquorice', titleCn: '甘草', shortName: 'LI' }, { name: 'lit-lychee-watermelon-iced', title: 'lit lychee watermelon iced', titleCn: '荔枝西瓜冰', shortName: 'LI' }, { name: 'loco-cocoa-latte-iced', title: 'loco cocoa latte iced', titleCn: '可可拿铁冷饮', shortName: 'LO' }, { name: 'lofty-liquorice', title: 'lofty liquorice', titleCn: '高挑甘草', shortName: 'LO' }, { name: 'lush-ice', title: 'lush ice', titleCn: '冰爽浓郁', shortName: 'LU' }, { name: 'lychee-ice', title: 'lychee ice', titleCn: '荔枝冰', shortName: 'LY' }, { name: 'lychee-mango-ice', title: 'lychee mango ice', titleCn: '荔枝芒果冰', shortName: 'LY' }, { name: 'lychee-mango-melon', title: 'lychee mango melon', titleCn: '荔枝芒果瓜', shortName: 'LY' }, { name: 'lychee-melon-ice', title: 'lychee melon ice', titleCn: '荔枝瓜冰', shortName: 'LY' }, { name: 'lychee-watermelon-strawberry', title: 'lychee watermelon strawberry', titleCn: '荔枝西瓜草莓', shortName: 'LY' }, { name: 'mad-mango-peach', title: 'mad mango peach', titleCn: '疯狂芒果桃', shortName: 'MA' }, { name: 'mangabeys', title: 'mangabeys', titleCn: '长臂猿', shortName: 'MA' }, { name: 'mango', title: 'mango', titleCn: '芒果', shortName: 'MA' }, { name: 'mango-berry', title: 'mango berry', titleCn: '芒果浆果', shortName: 'MA' }, { name: 'mango-blueberry', title: 'mango blueberry', titleCn: '芒果蓝莓', shortName: 'MA' }, { name: 'mango-dragon-fruit-lemon-ice', title: 'mango dragon fruit lemon ice', titleCn: '芒果龙果柠檬冰', shortName: 'MA' }, { name: 'mango-flame', title: 'mango flame', titleCn: '芒果火焰', shortName: 'MA' }, { name: 'mango-honeydew-ice', title: 'mango honeydew ice', titleCn: '芒果蜜瓜冰', shortName: 'MA' }, { name: 'mango-ice', title: 'mango ice', titleCn: '芒果冰', shortName: 'MA' }, { name: 'mango-madness', title: 'mango madness', titleCn: '芒果狂热', shortName: 'MA' }, { name: 'mango-nectar-ice', title: 'mango nectar ice', titleCn: '芒果花蜜冰', shortName: 'MA' }, { name: 'mango-on-ice', title: 'mango on ice', titleCn: '芒果冰镇', shortName: 'MA' }, { name: 'mango-melon', title: 'mango melon', titleCn: '芒果瓜', shortName: 'MA' }, { name: 'mango-peach', title: 'mango peach', titleCn: '芒果桃', shortName: 'MA' }, { name: 'mango-peach-apricot-ice', title: 'mango peach apricot ice', titleCn: '芒果桃杏冰', shortName: 'MA' }, { name: 'mango-peach-orange', title: 'mango peach orange', titleCn: '芒果桃橙', shortName: 'MA' }, { name: 'mango-peach-tings', title: 'mango peach tings', titleCn: '芒果桃滋味', shortName: 'MA' }, { name: 'mango-peach-watermelon', title: 'mango peach watermelon', titleCn: '芒果桃西瓜', shortName: 'MA' }, { name: 'mango-pineapple', title: 'mango pineapple', titleCn: '芒果菠萝', shortName: 'MA' }, { name: 'mango-pineapple-guava-ice', title: 'mango pineapple guava ice', titleCn: '芒果菠萝番石榴冰', shortName: 'MA' }, { name: 'mango-pineapple-ice', title: 'mango pineapple ice', titleCn: '芒果菠萝冰', shortName: 'MA' }, { name: 'mango-squared', title: 'mango squared', titleCn: '芒果平方', shortName: 'MA' }, { name: 'matata', title: 'matata', titleCn: '马塔塔', shortName: 'MA' }, { name: 'max-freeze', title: 'max freeze', titleCn: '极冻', shortName: 'MA' }, { name: 'max-polar-mint', title: 'max polar mint', titleCn: '极地薄荷', shortName: 'MA' }, { name: 'max-polarmint', title: 'max polarmint', titleCn: '极地薄荷', shortName: 'MA' }, { name: 'mclaren-sweet-papaya', title: 'mclaren sweet papaya', titleCn: '迈凯轮甜木瓜', shortName: 'MC' }, { name: 'mega-mixed-berries', title: 'mega mixed berries', titleCn: '超级混合浆果', shortName: 'ME' }, { name: 'melon-&-mint', title: 'melon & mint', titleCn: '瓜与薄荷', shortName: 'ME' }, { name: 'melon-ice', title: 'melon ice', titleCn: '瓜冰', shortName: 'ME' }, { name: 'menthol', title: 'menthol', titleCn: '薄荷', shortName: 'ME' }, { name: 'menthol-ice', title: 'menthol ice', titleCn: '薄荷冰', shortName: 'ME' }, { name: 'mexican-mango-ice', title: 'mexican mango ice', titleCn: '墨西哥芒果冰', shortName: 'ME' }, { name: 'miami-mint', title: 'miami mint', titleCn: '迈阿密薄荷', shortName: 'MI' }, { name: 'mint', title: 'mint', titleCn: '薄荷', shortName: 'MI' }, { name: 'mint-energy', title: 'mint energy', titleCn: '薄荷 能量', shortName: 'MI' }, { name: 'mint-tobacco', title: 'mint tobacco', titleCn: '薄荷烟草', shortName: 'MI' }, { name: 'mirage', title: 'mirage', titleCn: '海市蜃楼', shortName: 'MI' }, { name: 'mix-berries', title: 'mix berries', titleCn: '混合浆果', shortName: 'MI' }, { name: 'mixed-barries', title: 'mixed barries', titleCn: '混合浆果', shortName: 'MI' }, { name: 'mixed-berry', title: 'mixed berry', titleCn: '混合浆果', shortName: 'MI' }, { name: 'mixed-fruit', title: 'mixed fruit', titleCn: '混合水果', shortName: 'MI' }, { name: 'mocha-ice', title: 'mocha ice', titleCn: '摩卡冰', shortName: 'MO' }, { name: 'morocco-mint', title: 'morocco mint', titleCn: '摩洛哥薄荷', shortName: 'MO' }, { name: 'morocco-mint-(thermal)', title: 'morocco mint (thermal)', titleCn: '摩洛哥薄荷(热感)', shortName: 'MO' }, { name: 'mung-beans', title: 'mung beans', titleCn: '绿豆', shortName: 'MU' }, { name: 'nasty-tropic', title: 'nasty tropic', titleCn: '恶搞热带', shortName: 'NA' }, { name: 'nectarine-ice', title: 'nectarine ice', titleCn: '油桃冰', shortName: 'NE' }, { name: 'night-rider', title: 'night rider', titleCn: '夜骑', shortName: 'NI' }, { name: 'nirvana', title: 'nirvana', titleCn: '宁静蓝莓', shortName: 'NI' }, { name: 'north-american-style(root-beer)', title: 'north american style(root beer)', titleCn: '北美风格(根啤)', shortName: 'NO' }, { name: 'northern-blue-razz', title: 'northern blue razz', titleCn: '北方蓝覆盆子', shortName: 'NO' }, { name: 'nutty-virginia', title: 'nutty virginia', titleCn: '坚果弗吉尼亚', shortName: 'NU' }, { name: 'orange', title: 'orange', titleCn: '橙子', shortName: 'OR' }, { name: 'orange-citrus', title: 'orange citrus', titleCn: '橙子柑橘', shortName: 'OR' }, { name: 'orange-fizz-ice', title: 'orange fizz ice', titleCn: '橙子汽水冰', shortName: 'OR' }, { name: 'orange-ft', title: 'orange ft', titleCn: '橙子 FT', shortName: 'OR' }, { name: 'orange-mango-guava', title: 'orange mango guava', titleCn: '橙子芒果番石榴', shortName: 'OR' }, { name: 'orange-mango-pineapple-ice', title: 'orange mango pineapple ice', titleCn: '橙子芒果菠萝冰', shortName: 'OR' }, { name: 'orange-p', title: 'orange p', titleCn: '橙子 P', shortName: 'OR' }, { name: 'orange-p(fanta)', title: 'orange p(fanta)', titleCn: '橙子 P(芬达)', shortName: 'OR' }, { name: 'orange-spark', title: 'orange spark', titleCn: '橙色火花', shortName: 'OR' }, { name: 'orange-tangerine', title: 'orange tangerine', titleCn: '橙子柑橘', shortName: 'OR' }, { name: 'original', title: 'original', titleCn: '原味', shortName: 'OR' }, { name: 'packin-peach-berry', title: 'packin peach berry', titleCn: '装满桃浆果', shortName: 'PA' }, { name: 'packin-peach-berry-(popn-peach-berry)', title: 'packin peach berry (popn peach berry)', titleCn: '装满桃浆果(Pop’n 桃浆果)', shortName: 'PA' }, { name: 'papio', title: 'papio', titleCn: 'Papio', shortName: 'PA' }, { name: 'paradise', title: 'paradise', titleCn: '天堂', shortName: 'PA' }, { name: 'paradise-iced', title: 'paradise iced', titleCn: '天堂冰', shortName: 'PA' }, { name: 'passion', title: 'passion', titleCn: '百香果', shortName: 'PA' }, { name: 'passion-fruit', title: 'passion fruit', titleCn: '百香果冰', shortName: 'PA' }, { name: 'passion-fruit-mango', title: 'passion fruit mango', titleCn: '百香果芒果', shortName: 'PA' }, { name: 'passion-fruit-mango-lime', title: 'passion fruit mango lime', titleCn: '百香果芒果青柠', shortName: 'PA' }, { name: 'passion-guava-grapefruit', title: 'passion guava grapefruit', titleCn: '百香果番石榴葡萄柚', shortName: 'PA' }, { name: 'patas-pipe', title: 'patas pipe', titleCn: '帕塔烟斗', shortName: 'PA' }, { name: 'peach', title: 'peach', titleCn: '桃子', shortName: 'PE' }, { name: 'peach-&-mint', title: 'peach & mint', titleCn: '桃子薄荷', shortName: 'PE' }, { name: 'peach-bellini', title: 'peach bellini', titleCn: '桃子贝里尼', shortName: 'PE' }, { name: 'peach-berry', title: 'peach berry', titleCn: '桃子浆果', shortName: 'PE' }, { name: 'peach-berry-ice', title: 'peach berry ice', titleCn: '桃子浆果冰', shortName: 'PE' }, { name: 'peach-berry-lime-ice', title: 'peach berry lime ice', titleCn: '桃子浆果青柠冰', shortName: 'PE' }, { name: 'peach-blossom', title: 'peach blossom', titleCn: '桃花', shortName: 'PE' }, { name: 'peach-blue-raspberry', title: 'peach blue raspberry', titleCn: '桃子蓝莓覆盆子', shortName: 'PE' }, { name: 'peach-blue-razz-ice', title: 'peach blue razz ice', titleCn: '桃子蓝覆盆子冰', shortName: 'PE' }, { name: 'peach-blue-razz-mango-ice', title: 'peach blue razz mango ice', titleCn: '桃子蓝覆盆子芒果冰', shortName: 'PE' }, { name: 'peach-blue-s', title: 'peach blue s', titleCn: '桃子蓝覆盆子 S', shortName: 'PE' }, { name: 'peach-ice', title: 'peach ice', titleCn: '桃子冰', shortName: 'PE' }, { name: 'peach-lychee-ice', title: 'peach lychee ice', titleCn: '桃荔枝冰', shortName: 'PE' }, { name: 'peach-mango', title: 'peach mango', titleCn: '桃芒果', shortName: 'PE' }, { name: 'peach-mango-ice', title: 'peach mango ice', titleCn: '桃芒果冰', shortName: 'PE' }, { name: 'peach-mango-watermelon', title: 'peach mango watermelon', titleCn: '桃芒果西瓜', shortName: 'PE' }, { name: 'peach-mango-watermelon-ice', title: 'peach mango watermelon ice', titleCn: '桃芒果西瓜冰', shortName: 'PE' }, { name: 'peach-nectarine-ice', title: 'peach nectarine ice', titleCn: '桃子花蜜冰', shortName: 'PE' }, { name: 'peach-passion-ice', title: 'peach passion ice', titleCn: '桃子桃冰', shortName: 'PE' }, { name: 'peach-raspberry', title: 'peach raspberry', titleCn: '桃覆盆子', shortName: 'PE' }, { name: 'peach-strawberry-ice', title: 'peach strawberry ice', titleCn: '桃草莓冰', shortName: 'PE' }, { name: 'peach-strawberry-watermelon', title: 'peach strawberry watermelon', titleCn: '桃草莓西瓜', shortName: 'PE' }, { name: 'peach-watermelon-ice', title: 'peach watermelon ice', titleCn: '桃西瓜冰', shortName: 'PE' }, { name: 'peach-zing', title: 'peach zing', titleCn: '桃子滋味', shortName: 'PE' }, { name: 'peaches-cream', title: 'peaches cream', titleCn: '桃子奶油', shortName: 'PE' }, { name: 'peppered-mint', title: 'peppered mint', titleCn: '胡椒薄荷', shortName: 'PE' }, { name: 'peppermint', title: 'peppermint', titleCn: '薄荷', shortName: 'PE' }, { name: 'peppermint-salty', title: 'peppermint salty', titleCn: '薄荷咸味', shortName: 'PE' }, { name: 'peppermint-storm', title: 'peppermint storm', titleCn: '薄荷风暴', shortName: 'PE' }, { name: 'pina-blend', title: 'pina blend', titleCn: '菠萝混合', shortName: 'PI' }, { name: 'pina-colada-ice', title: 'pina colada ice', titleCn: '菠萝椰子冰', shortName: 'PI' }, { name: 'pineapple', title: 'pineapple', titleCn: '菠萝', shortName: 'PI' }, { name: 'pineapple-blueberry-kiwi-ice', title: 'pineapple blueberry kiwi ice', titleCn: '菠萝蓝莓奇异果冰', shortName: 'PI' }, { name: 'pineapple-citrus', title: 'pineapple citrus', titleCn: '菠萝柑橘', shortName: 'PI' }, { name: 'pineapple-coconut', title: 'pineapple coconut', titleCn: '菠萝椰子', shortName: 'PI' }, { name: 'pineapple-coconut-ice', title: 'pineapple coconut ice', titleCn: '菠萝椰子冰', shortName: 'PI' }, { name: 'pineapple-ice', title: 'pineapple ice', titleCn: '菠萝冰', shortName: 'PI' }, { name: 'pineapple-lemonade', title: 'pineapple lemonade', titleCn: '菠萝柠檬水', shortName: 'PI' }, { name: 'pineapple-orange-cherry', title: 'pineapple orange cherry', titleCn: '菠萝橙樱桃', shortName: 'PI' }, { name: 'pink-lemon', title: 'pink lemon', titleCn: '粉柠檬', shortName: 'PI' }, { name: 'pink-lemon-ice', title: 'pink lemon ice', titleCn: '粉柠檬冰', shortName: 'PI' }, { name: 'pink-lemonade', title: 'pink lemonade', titleCn: '粉红柠檬水', shortName: 'PI' }, { name: 'pink-punch', title: 'pink punch', titleCn: '粉红拳', shortName: 'PI' }, { name: 'polar-chill', title: 'polar chill', titleCn: '极地清凉', shortName: 'PO' }, { name: 'polar-mint-max', title: 'polar mint max', titleCn: '极地薄荷', shortName: 'PO' }, { name: 'pomegranate-ice', title: 'pomegranate ice', titleCn: '石榴冰', shortName: 'PO' }, { name: 'poppin-strawkiwi', title: 'poppin strawkiwi', titleCn: '草莓猕猴', shortName: 'PO' }, { name: 'prism-ice', title: 'prism ice', titleCn: '棱镜冰', shortName: 'PR' }, { name: 'punch', title: 'punch', titleCn: '果汁', shortName: 'PU' }, { name: 'punch-ice', title: 'punch ice', titleCn: '果汁冰', shortName: 'PU' }, { name: 'pure-tobacco', title: 'pure tobacco', titleCn: '纯烟草', shortName: 'PU' }, { name: 'puris', title: 'puris', titleCn: '纯味', shortName: 'PU' }, { name: 'purple-grape', title: 'purple grape', titleCn: '紫葡萄', shortName: 'PU' }, { name: 'quad-berry', title: 'quad berry', titleCn: '四重浆果', shortName: 'QU' }, { name: 'queen-soko', title: 'queen soko', titleCn: '女王索科', shortName: 'QU' }, { name: 'rad-razz-melon-iced', title: 'rad razz melon iced', titleCn: '疯狂覆盆子瓜冰', shortName: 'RA' }, { name: 'ragin-razz-mango-iced', title: 'ragin razz mango iced', titleCn: '狂暴覆盆子芒果冰', shortName: 'RA' }, { name: 'rainbow-candy', title: 'rainbow candy', titleCn: '彩虹糖', shortName: 'RA' }, { name: 'raspberry-blast', title: 'raspberry blast', titleCn: '覆盆子爆炸', shortName: 'RA' }, { name: 'raspberry-buzz-ice', title: 'raspberry buzz ice', titleCn: '覆盆子嗡嗡冰', shortName: 'RA' }, { name: 'raspberry-dragon-fruit-ice', title: 'raspberry dragon fruit ice', titleCn: '覆盆子龙果冰', shortName: 'RA' }, { name: 'raspberry-ice', title: 'raspberry ice', titleCn: '覆盆子冰', shortName: 'RA' }, { name: 'raspberry-lemon', title: 'raspberry lemon', titleCn: '覆盆子柠檬', shortName: 'RA' }, { name: 'raspberry-mango-ice', title: 'raspberry mango ice', titleCn: '覆盆子芒果冰', shortName: 'RA' }, { name: 'raspberry-peach-mango-ice', title: 'raspberry peach mango ice', titleCn: '覆盆子桃芒果冰', shortName: 'RA' }, { name: 'raspberry-pomegranate', title: 'raspberry pomegranate', titleCn: '覆盆子石榴', shortName: 'RA' }, { name: 'raspberry-vanilla', title: 'raspberry vanilla', titleCn: '覆盆子香草', shortName: 'RA' }, { name: 'raspberry-watermelon', title: 'raspberry watermelon', titleCn: '覆盆子西瓜', shortName: 'RA' }, { name: 'raspberry-watermelon-ice', title: 'raspberry watermelon ice', titleCn: '覆盆子西瓜冰', shortName: 'RA' }, { name: 'raspberry-zing', title: 'raspberry zing', titleCn: '覆盆子滋味', shortName: 'RA' }, { name: 'razz-apple-ice', title: 'razz apple ice', titleCn: '覆盆子苹果冰', shortName: 'RA' }, { name: 'razz-currant-ice', title: 'razz currant ice', titleCn: '红苹果冰', shortName: 'RA' }, { name: 'red-apple-ice', title: 'red apple ice', titleCn: '红豆', shortName: 'RE' }, { name: 'red-bean', title: 'red bean', titleCn: '红枣 ', shortName: 'RE' }, { name: 'red-berry-cherry', title: 'red berry cherry', titleCn: '红浆果樱桃', shortName: 'RE' }, { name: 'red-date-yg', title: 'red date yg', titleCn: '红枣 Y', shortName: 'RE' }, { name: 'red-eye-espresso', title: 'red eye espresso', titleCn: '红眼浓缩咖啡', shortName: 'RE' }, { name: 'red-fruits', title: 'red fruits', titleCn: '红色水果', shortName: 'RE' }, { name: 'red-lightning', title: 'red lightning', titleCn: '红色闪电', shortName: 'RE' }, { name: 'red-line', title: 'red line', titleCn: '红线', shortName: 'RE' }, { name: 'red-line-(energy-drink)', title: 'red line (energy drink)', titleCn: '红线(能量饮料)', shortName: 'RE' }, { name: 'red-magic', title: 'red magic', titleCn: '红魔', shortName: 'RE' }, { name: 'rich-tobacco', title: 'rich tobacco', titleCn: '浓烈烟草', shortName: 'RI' }, { name: 'root-beer', title: 'root beer', titleCn: '根啤', shortName: 'RO' }, { name: 'rose-grape', title: 'rose grape', titleCn: '玫瑰葡萄', shortName: 'RO' }, { name: 'rosemary', title: 'rosemary', titleCn: '迷迭香', shortName: 'RO' }, { name: 'royal-violet', title: 'royal violet', titleCn: '皇家紫罗兰', shortName: 'RO' }, { name: 'ruby-berry', title: 'ruby berry', titleCn: '红宝石浆果', shortName: 'RU' }, { name: 's-apple-ice', title: 's apple ice', titleCn: 'S 苹果冰', shortName: 'SA' }, { name: 's-watermelon-peach', title: 's watermelon peach', titleCn: 'S 西瓜桃', shortName: 'SW' }, { name: 'saimiri', title: 'saimiri', titleCn: '卷尾猴', shortName: 'SA' }, { name: 'sakura-grap', title: 'sakura grap', titleCn: '樱花葡萄', shortName: 'SA' }, { name: 'sakura-grape', title: 'sakura grape', titleCn: '樱花葡萄', shortName: 'SA' }, { name: 'salt', title: 'salt', titleCn: '盐', shortName: 'SA' }, { name: 'salted-caramel', title: 'salted caramel', titleCn: '咸焦糖', shortName: 'SA' }, { name: 'salty-liquorice', title: 'salty liquorice', titleCn: '咸甘草', shortName: 'SA' }, { name: 'sanctuary', title: 'sanctuary', titleCn: '避风港', shortName: 'SA' }, { name: 'savage-strawberry-watermelon-iced', title: 'savage strawberry watermelon iced', titleCn: '狂野草莓西瓜冰', shortName: 'SA' }, { name: 'shoku', title: 'shoku', titleCn: 'Shoku', shortName: 'SH' }, { name: 'sic-strawberry-iced', title: 'sic strawberry iced', titleCn: '意大利草莓冰', shortName: 'SI' }, { name: 'simply-spearmint', title: 'simply spearmint', titleCn: '清爽留兰香', shortName: 'SI' }, { name: 'skc', title: 'skc', titleCn: 'SKC', shortName: 'SK' }, { name: 'skc(skittles-candy)', title: 'skc(skittles candy)', titleCn: 'SKC(彩虹糖)', shortName: 'SK' }, { name: 'slammin-sts-(sour-snap)', title: 'slammin sts (sour snap)', titleCn: '热烈 STS(酸糖)', shortName: 'SL' }, { name: 'slammin-sts-iced', title: 'slammin sts iced', titleCn: '热烈 STS 冰', shortName: 'SL' }, { name: 'smooth', title: 'smooth', titleCn: '顺滑', shortName: 'SM' }, { name: 'smooth-mint', title: 'smooth mint', titleCn: '顺滑薄荷', shortName: 'SM' }, { name: 'smooth-strawberry', title: 'smooth strawberry', titleCn: '顺滑草莓', shortName: 'SM' }, { name: 'smooth-tobacco', title: 'smooth tobacco', titleCn: '顺滑烟草', shortName: 'SM' }, { name: 'snazzy-razz', title: 'snazzy razz', titleCn: '炫酷覆盆子', shortName: 'SN' }, { name: 'snazzy-s-storm', title: 'snazzy s storm', titleCn: '炫酷风暴', shortName: 'SN' }, { name: 'snazzy-strawberrry-citrus', title: 'snazzy strawberrry citrus', titleCn: '炫酷草莓柑橘', shortName: 'SN' }, { name: 'snow-pear', title: 'snow pear', titleCn: '酸梨', shortName: 'SN' }, { name: 'sour', title: 'sour', titleCn: '酸', shortName: 'SO' }, { name: 'sour-apple', title: 'sour apple', titleCn: '酸苹果', shortName: 'SO' }, { name: 'sour-blue-razz', title: 'sour blue razz', titleCn: '酸蓝覆盆子', shortName: 'SO' }, { name: 'sour-cherry', title: 'sour cherry', titleCn: '酸樱桃', shortName: 'SO' }, { name: 'sour-lime', title: 'sour lime', titleCn: '酸青柠', shortName: 'SO' }, { name: 'sour-ruby', title: 'sour ruby', titleCn: '酸红宝石', shortName: 'SO' }, { name: 'spearmint', title: 'spearmint', titleCn: '留兰香', shortName: 'SP' }, { name: 'spearmint-blast-ice', title: 'spearmint blast ice', titleCn: '留兰香爆发冰', shortName: 'SP' }, { name: 'star-coffee', title: 'star coffee', titleCn: '星辰咖啡', shortName: 'ST' }, { name: 'straw-kiwi-melon-ice', title: 'straw kiwi melon ice', titleCn: '草莓奇异果瓜冰', shortName: 'ST' }, { name: 'strawanna-ice', title: 'strawanna ice', titleCn: '草莓香蕉冰', shortName: 'ST' }, { name: 'strawberry', title: 'strawberry', titleCn: '草莓', shortName: 'ST' }, { name: 'strawberry-&-watermelon', title: 'strawberry & watermelon', titleCn: '草莓西瓜', shortName: 'ST' }, { name: 'strawberry-apple-grape', title: 'strawberry apple grape', titleCn: '草莓苹果葡萄', shortName: 'ST' }, { name: 'strawberry-apricot-ice', title: 'strawberry apricot ice', titleCn: '草莓杏子冰', shortName: 'ST' }, { name: 'strawberry-banana', title: 'strawberry banana', titleCn: '草莓香蕉', shortName: 'ST' }, { name: 'strawberry-banana-ice', title: 'strawberry banana ice', titleCn: '草莓香蕉冰', shortName: 'ST' }, { name: 'strawberry-banana-mango-ice', title: 'strawberry banana mango ice', titleCn: '草莓香蕉芒果冰', shortName: 'ST' }, { name: 'strawberry-berry', title: 'strawberry berry', titleCn: '草莓浆果', shortName: 'ST' }, { name: 'strawberry-burst-ice', title: 'strawberry burst ice', titleCn: '草莓爆发冰', shortName: 'ST' }, { name: 'strawberry-cherry-lemon', title: 'strawberry cherry lemon', titleCn: '草莓樱桃柠檬', shortName: 'ST' }, { name: 'strawberry-dragon-fruit', title: 'strawberry dragon fruit', titleCn: '草莓龙果', shortName: 'ST' }, { name: 'strawberry-ft', title: 'strawberry ft', titleCn: '草莓 FT', shortName: 'ST' }, { name: 'strawberry-grapefruit', title: 'strawberry grapefruit', titleCn: '草莓葡萄柚', shortName: 'ST' }, { name: 'strawberry-ice', title: 'strawberry ice', titleCn: '草莓冰', shortName: 'ST' }, { name: 'strawberry-jasmine-t', title: 'strawberry jasmine t', titleCn: '草莓茉莉茶', shortName: 'ST' }, { name: 'strawberry-jasmine-tea', title: 'strawberry jasmine tea', titleCn: '草莓茉莉茶', shortName: 'ST' }, { name: 'strawberry-kiwi', title: 'strawberry kiwi', titleCn: '草莓奇异果', shortName: 'ST' }, { name: 'strawberry-kiwi-(solid)', title: 'strawberry kiwi (solid)', titleCn: '草莓奇异果(固体)', shortName: 'ST' }, { name: 'strawberry-kiwi-banana-ice', title: 'strawberry kiwi banana ice', titleCn: '草莓奇异果香蕉冰', shortName: 'ST' }, { name: 'strawberry-kiwi-guava-ice', title: 'strawberry kiwi guava ice', titleCn: '草莓奇异果番石榴冰', shortName: 'ST' }, { name: 'strawberry-kiwi-ice', title: 'strawberry kiwi ice', titleCn: '草莓奇异果冰', shortName: 'ST' }, { name: 'strawberry-lemon', title: 'strawberry lemon', titleCn: '草莓柠檬', shortName: 'ST' }, { name: 'strawberry-lime-ice', title: 'strawberry lime ice', titleCn: '草莓青柠冰', shortName: 'ST' }, { name: 'strawberry-lychee-ice', title: 'strawberry lychee ice', titleCn: '草莓荔枝冰', shortName: 'ST' }, { name: 'strawberry-mango-ice', title: 'strawberry mango ice', titleCn: '草莓芒果冰', shortName: 'ST' }, { name: 'strawberry-mint', title: 'strawberry mint', titleCn: '草莓薄荷', shortName: 'ST' }, { name: 'strawberry-orange', title: 'strawberry orange', titleCn: '草莓橙', shortName: 'ST' }, { name: 'strawberry-peach-mint', title: 'strawberry peach mint', titleCn: '草莓桃薄荷', shortName: 'ST' }, { name: 'strawberry-raspberry', title: 'strawberry raspberry', titleCn: '草莓覆盆子', shortName: 'ST' }, { name: 'strawberry-twist-ice', title: 'strawberry twist ice', titleCn: '草莓扭转冰', shortName: 'ST' }, { name: 'strawberry-watermelon', title: 'strawberry watermelon', titleCn: '草莓西瓜', shortName: 'ST' }, { name: 'strawberry-watermelon-ice', title: 'strawberry watermelon ice', titleCn: '草莓西瓜冰', shortName: 'ST' }, { name: 'strawmelon-peach', title: 'strawmelon peach', titleCn: '草莓桃', shortName: 'ST' }, { name: 'strawmelon-peach-(solid)', title: 'strawmelon peach (solid)', titleCn: '草莓桃(固体)', shortName: 'ST' }, { name: 'strawnana-orange', title: 'strawnana orange', titleCn: '草莓香蕉橙', shortName: 'ST' }, { name: 'summer-grape', title: 'summer grape', titleCn: '夏日葡萄', shortName: 'SU' }, { name: 'summer-grape-(thermal)', title: 'summer grape (thermal)', titleCn: '夏日葡萄(热感)', shortName: 'SU' }, { name: 'super-sour-blueberry-iced', title: 'super sour blueberry iced', titleCn: '超级酸蓝莓冰', shortName: 'SU' }, { name: 'super-spearmint', title: 'super spearmint', titleCn: '超级留兰香', shortName: 'SU' }, { name: 'super-spearmint-iced', title: 'super spearmint iced', titleCn: '超级留兰香冰', shortName: 'SU' }, { name: 'sweet-blackcurrant', title: 'sweet blackcurrant', titleCn: '甜黑加仑', shortName: 'SW' }, { name: 'sweet-mint', title: 'sweet mint', titleCn: '甜薄荷', shortName: 'SW' }, { name: 't-berries', title: 't berries', titleCn: 'T 浆果', shortName: 'TB' }, { name: 'taste-of-gods-x', title: 'taste of gods x', titleCn: '神之味 X', shortName: 'TA' }, { name: 'the-prophet', title: 'the prophet', titleCn: '先知', shortName: 'TH' }, { name: 'tiki-punch-ice', title: 'tiki punch ice', titleCn: 'Tiki 冲击冰', shortName: 'TI' }, { name: 'triple-berry', title: 'triple berry', titleCn: '三重浆果', shortName: 'TR' }, { name: 'triple-berry-ice', title: 'triple berry ice', titleCn: '三重浆果冰', shortName: 'TR' }, { name: 'triple-mango', title: 'triple mango', titleCn: '三重芒果', shortName: 'TR' }, { name: "trippin'-triple-berry", title: "trippin' triple berry", titleCn: '三重浆果旋风', shortName: 'TR' }, { name: 'tropical', title: 'tropical', titleCn: '热带', shortName: 'TR' }, { name: 'tropical-burst-ice', title: 'tropical burst ice', titleCn: '热带爆发冰', shortName: 'TR' }, { name: 'tropical-mango', title: 'tropical mango', titleCn: '热带芒果', shortName: 'TR' }, { name: 'tropical-mango-ice', title: 'tropical mango ice', titleCn: '热带芒果冰', shortName: 'TR' }, { name: 'tropical-orang-ice', title: 'tropical orang ice', titleCn: '热带橙冰', shortName: 'TR' }, { name: 'tropical-prism-blast', title: 'tropical prism blast', titleCn: '热带棱镜爆炸', shortName: 'TR' }, { name: 'tropical-splash', title: 'tropical splash', titleCn: '热带飞溅', shortName: 'TR' }, { name: 'tropical-splash-(solid)', title: 'tropical splash (solid)', titleCn: '热带飞溅(固体)', shortName: 'TR' }, { name: 'tropical-storm-ice', title: 'tropical storm ice', titleCn: '热带风暴冰', shortName: 'TR' }, { name: 'tropical-summer', title: 'tropical summer', titleCn: '热带夏日', shortName: 'TR' }, { name: 'tropika', title: 'tropika', titleCn: '热带果', shortName: 'TR' }, { name: 'twisted-apple', title: 'twisted apple', titleCn: '扭苹果', shortName: 'TW' }, { name: 'twisted-pineapple', title: 'twisted pineapple', titleCn: '扭菠萝', shortName: 'TW' }, { name: 'ultra-fresh-mint', title: 'ultra fresh mint', titleCn: '极新鲜薄荷', shortName: 'UL' }, { name: 'vanilla', title: 'vanilla', titleCn: '香草', shortName: 'VA' }, { name: 'vanilla-classic', title: 'vanilla classic', titleCn: '香草经典', shortName: 'VA' }, { name: 'vanilla-classic-cola', title: 'vanilla classic cola', titleCn: '香草经典可乐', shortName: 'VA' }, { name: 'vanilla-classic-red', title: 'vanilla classic red', titleCn: '香草经典红', shortName: 'VA' }, { name: 'vanilla-tobacco', title: 'vanilla tobacco', titleCn: '香草烟草', shortName: 'VA' }, { name: 'vb-arctic-berry', title: 'vb arctic berry', titleCn: 'VB 北极浆果', shortName: 'VB' }, { name: 'vb-arctic-mint', title: 'vb arctic mint', titleCn: 'VB 北极薄荷', shortName: 'VB' }, { name: 'vb-spearmint-salty', title: 'vb spearmint salty', titleCn: 'VB 留兰香咸味', shortName: 'VB' }, { name: 'vc-delight', title: 'vc delight', titleCn: 'VC 美味', shortName: 'VC' }, { name: 'vintage', title: 'vintage', titleCn: '复古', shortName: 'VI' }, { name: 'violet-licorice', title: 'violet licorice', titleCn: '紫罗兰甘草', shortName: 'VI' }, { name: 'watermelon', title: 'watermelon', titleCn: '西瓜', shortName: 'WA' }, { name: 'watermelon-bbg', title: 'watermelon bbg', titleCn: '西瓜 BBG', shortName: 'WA' }, { name: 'watermelon-bubble-gum', title: 'watermelon bubble gum', titleCn: '西瓜泡泡糖', shortName: 'WA' }, { name: 'watermelon-cantaloupe-honeydew-ice', title: 'watermelon cantaloupe honeydew ice', titleCn: '西瓜香瓜蜜瓜冰', shortName: 'WA' }, { name: 'watermelon-g', title: 'watermelon g', titleCn: '西瓜 G', shortName: 'WA' }, { name: 'watermelon-ice', title: 'watermelon ice', titleCn: '西瓜冰', shortName: 'WA' }, { name: 'watermelon-ice-(solid)', title: 'watermelon ice (solid)', titleCn: '西瓜冰(固体)', shortName: 'WA' }, { name: 'watermelon-lime-ice', title: 'watermelon lime ice', titleCn: '西瓜青柠冰', shortName: 'WA' }, { name: 'watermelon-mango-tango', title: 'watermelon mango tango', titleCn: '西瓜芒果探戈', shortName: 'WA' }, { name: 'watermelona-cg', title: 'watermelona cg', titleCn: '西瓜 CG', shortName: 'WA' }, { name: 'weekend-watermelon', title: 'weekend watermelon', titleCn: '周末西瓜', shortName: 'WE' }, { name: 'weekend-watermelon-iced', title: 'weekend watermelon iced', titleCn: '周末西瓜冰', shortName: 'WE' }, { name: 'white-grape', title: 'white grape', titleCn: '白葡萄', shortName: 'WH' }, { name: 'white-grape-ice', title: 'white grape ice', titleCn: '白葡萄冰', shortName: 'WH' }, { name: 'white-ice', title: 'white ice', titleCn: '白冰', shortName: 'WH' }, { name: 'white-peach-ice', title: 'white peach ice', titleCn: '白桃冰', shortName: 'WH' }, { name: 'white-peach-splash', title: 'white peach splash', titleCn: '白桃飞溅', shortName: 'WH' }, { name: 'white-peach-yaklt', title: 'white peach yaklt', titleCn: '白桃益菌乳', shortName: 'WH' }, { name: 'wicked-white-peach', title: 'wicked white peach', titleCn: '邪恶白桃', shortName: 'WI' }, { name: 'wild-blue-raspberry', title: 'wild blue raspberry', titleCn: '野生蓝覆盆子', shortName: 'WI' }, { name: 'wild-blueberry-ice', title: 'wild blueberry ice', titleCn: '野生蓝莓冰', shortName: 'WI' }, { name: 'wild-cherry-cola', title: 'wild cherry cola', titleCn: '野樱桃可乐', shortName: 'WI' }, { name: 'wild-dragonfruit-lychee', title: 'wild dragonfruit lychee', titleCn: '野生龙果荔枝', shortName: 'WI' }, { name: 'wild-strawberry-banana', title: 'wild strawberry banana', titleCn: '野生草莓香蕉', shortName: 'WI' }, { name: 'wild-strawberry-ice', title: 'wild strawberry ice', titleCn: '野生草莓冰', shortName: 'WI' }, { name: 'wild-strawberry-watermelon', title: 'wild strawberry watermelon', titleCn: '野生草莓西瓜', shortName: 'WI' }, { name: 'wild-white-grape', title: 'wild white grape', titleCn: '野生白葡萄', shortName: 'WI' }, { name: 'wild-white-grape-ice', title: 'wild white grape ice', titleCn: '野生白葡萄冰', shortName: 'WI' }, { name: 'wild-white-grape-iced', title: 'wild white grape iced', titleCn: '野生白葡萄冰(冷饮)', shortName: 'WI' }, { name: 'winter-berry-ice', title: 'winter berry ice', titleCn: '冬季浆果冰', shortName: 'WI' }, { name: 'winter-green', title: 'winter green', titleCn: '冬青', shortName: 'WI' }, { name: 'wintergreen', title: 'wintergreen', titleCn: '冬青薄荷', shortName: 'WI' }, { name: 'wintery-watermelon', title: 'wintery watermelon', titleCn: '冬季西瓜', shortName: 'WI' }, { name: 'woke-watermelon-tropica-iced', title: 'woke watermelon tropica iced', titleCn: '觉醒西瓜热带冰', shortName: 'WO' }, { name: 'wonder', title: 'wonder', titleCn: '奇迹', shortName: 'WO' }, { name: 'x-freeze', title: 'x freeze', titleCn: 'X 冰冻', shortName: 'XF' }, { name: 'zen', title: 'zen', titleCn: '禅', shortName: 'ZE' }, { name: 'zest-flame', title: 'zest flame', titleCn: '清新火焰', shortName: 'ZE' }, { name: 'zesty-elderflower', title: 'zesty elderflower', titleCn: '活力接骨木花', shortName: 'ZE' }, { name: 'zingy-eucalyptus', title: 'zingy eucalyptus', titleCn: '清爽桉树', shortName: 'ZI' }, ]; // Total flavors: 655 // 强度数据 const strengthsData = [ { name: '1.5mg', title: '1.5mg', titleCn: '1.5毫克', shortName: '1.5' }, { name: '2mg', title: '2mg', titleCn: '2毫克', shortName: '2MG' }, { name: '3mg', title: '3mg', titleCn: '3毫克', shortName: '3MG' }, { name: '3.5mg', title: '3.5mg', titleCn: '3.5毫克', shortName: '3.5' }, { name: '4mg', title: '4mg', titleCn: '4毫克', shortName: '4MG' }, { name: '5,2 mg', title: '5,2 mg', titleCn: '5,2毫克', shortName: '5,2' }, { name: '5.6mg', title: '5.6mg', titleCn: '5.6毫克', shortName: '5.6' }, { name: '6mg', title: '6mg', titleCn: '6毫克', shortName: '6MG' }, { name: '6.5mg', title: '6.5mg', titleCn: '6.5毫克', shortName: '6.5' }, { name: '8mg', title: '8mg', titleCn: '8毫克', shortName: '8MG' }, { name: '9mg', title: '9mg', titleCn: '9毫克', shortName: '9MG' }, { name: '10mg', title: '10mg', titleCn: '10毫克', shortName: '10M' }, { name: '10,4 mg', title: '10,4 mg', titleCn: '10,4 毫克', shortName: '10,' }, { name: '10,9mg', title: '10,9mg', titleCn: '10,9毫克', shortName: '10,' }, { name: '11mg', title: '11mg', titleCn: '11毫克', shortName: '11M' }, { name: '12mg', title: '12mg', titleCn: '12毫克', shortName: '12M' }, { name: '12.5mg', title: '12.5mg', titleCn: '12.5毫克', shortName: '12.' }, { name: '13.5mg', title: '13.5mg', titleCn: '13.5毫克', shortName: '13.' }, { name: '14mg', title: '14mg', titleCn: '14毫克', shortName: '14M' }, { name: '15mg', title: '15mg', titleCn: '15毫克', shortName: '15M' }, { name: '16mg', title: '16mg', titleCn: '16毫克', shortName: '16M' }, { name: '16.5mg', title: '16.5mg', titleCn: '16.5毫克', shortName: '16.' }, { name: '16.6mg', title: '16.6mg', titleCn: '16.6毫克', shortName: '16.' }, { name: '17mg', title: '17mg', titleCn: '17毫克', shortName: '17M' }, { name: '18mg', title: '18mg', titleCn: '18毫克', shortName: '18M' }, { name: '20mg', title: '20mg', titleCn: '20毫克', shortName: '20M' }, { name: '30mg', title: '30mg', titleCn: '30毫克', shortName: '30M' }, { name: 'extra-strong', title: 'extra strong', titleCn: '超强', shortName: 'EXT' }, { name: 'low', title: 'low', titleCn: '低', shortName: 'LOW' }, { name: 'max', title: 'max', titleCn: '最大', shortName: 'MAX' }, { name: 'medium', title: 'medium', titleCn: '中等', shortName: 'MED' }, { name: 'normal', title: 'normal', titleCn: '普通', shortName: 'NOR' }, { name: 'strong', title: 'strong', titleCn: '强', shortName: 'STR' }, { name: 'super-strong', title: 'super strong', titleCn: '特强', shortName: 'SUP' }, { name: 'ultra-strong', title: 'ultra strong', titleCn: '极强', shortName: 'ULT' }, { name: 'xx-strong', title: 'xx strong', titleCn: '超超强', shortName: 'XXS' }, { name: 'x-intense', title: 'x intense', titleCn: '强', shortName: 'XIN' }, ]; // Total strengths: 37 // 品牌数据 const brandsData = [ { name: 'yoone', title: 'yoone', titleCn: '', shortName: 'YO' }, { name: 'zyn', title: 'zyn', titleCn: '', shortName: 'ZY' }, { name: 'on!', title: 'on!', titleCn: '', shortName: 'ON' }, { name: 'alibarbar', title: 'alibarbar', titleCn: '', shortName: 'AL' }, { name: 'iget-pro', title: 'iget pro', titleCn: '', shortName: 'IG' }, { name: 'jux', title: 'jux', titleCn: '', shortName: 'JU' }, { name: 'velo', title: 'velo', titleCn: '', shortName: 'VE' }, { name: 'white-fox', title: 'white fox', titleCn: '', shortName: 'WH' }, { name: 'zolt', title: 'zolt', titleCn: '', shortName: 'ZO' }, { name: '77', title: '77', titleCn: '', shortName: '77' }, { name: 'xqs', title: 'xqs', titleCn: '', shortName: 'XQ' }, { name: 'zex', title: 'zex', titleCn: '', shortName: 'ZE' }, { name: 'zonnic', title: 'zonnic', titleCn: '', shortName: 'ZO' }, { name: 'lucy', title: 'Lucy', titleCn: '', shortName: 'LU' }, { name: 'egp', title: 'EGP', titleCn: '', shortName: 'EG' }, { name: 'bridge', title: 'Bridge', titleCn: '', shortName: 'BR' }, { name: 'sesh', title: 'Sesh', titleCn: '', shortName: 'SE' }, { name: 'pablo', title: 'Pablo', titleCn: '', shortName: 'PA' }, { name: 'elfbar', title: 'elfbar', titleCn: '', shortName: 'EL' }, { name: 'chacha', title: 'chacha', titleCn: '', shortName: 'CH' }, { name: 'yoone-wave', title: 'yoone wave', titleCn: '', shortName: 'YO' }, { name: 'yoone-e-liquid', title: 'yoone e-liquid', titleCn: '', shortName: 'YO' }, { name: 'geek-bar', title: 'geek bar', titleCn: '', shortName: 'GE' }, { name: 'iget-bar', title: 'iget bar', titleCn: '', shortName: 'IG' }, { name: 'twelve-monkeys', title: 'twelve monkeys', titleCn: '', shortName: 'TW' }, { name: 'z-pods', title: 'z pods', titleCn: '', shortName: 'ZP' }, { name: 'yoone-y-pods', title: 'yoone y-pods', titleCn: '', shortName: 'YO' }, { name: 'allo-e-liquid', title: 'allo e-liquid', titleCn: '', shortName: 'AL' }, { name: 'allo-ultra', title: 'allo ultra', titleCn: '', shortName: 'AL' }, { name: 'base-x', title: 'base x', titleCn: '', shortName: 'BA' }, { name: 'breeze-pro', title: 'breeze pro', titleCn: '', shortName: 'BR' }, { name: 'deu', title: 'deu', titleCn: '', shortName: 'DE' }, { name: 'evo', title: 'evo', titleCn: '', shortName: 'EV' }, { name: 'elf-bar', title: 'elf bar', titleCn: '', shortName: 'EL' }, { name: 'feed', title: 'feed', titleCn: '', shortName: 'FE' }, { name: 'flavour-beast', title: 'flavour beast', titleCn: '', shortName: 'FL' }, { name: 'fog-formulas', title: 'fog formulas', titleCn: '', shortName: 'FO' }, { name: 'fruitii', title: 'fruitii', titleCn: '', shortName: 'FR' }, { name: 'gcore', title: 'gcore', titleCn: '', shortName: 'GC' }, { name: 'gr1nds', title: 'gr1nds', titleCn: '', shortName: 'GR' }, { name: 'hqd', title: 'hqd', titleCn: '', shortName: 'HQ' }, { name: 'illusions', title: 'illusions', titleCn: '', shortName: 'IL' }, { name: 'kraze', title: 'kraze', titleCn: '', shortName: 'KR' }, { name: 'level-x', title: 'level x', titleCn: '', shortName: 'LE' }, { name: 'lfgo-energy', title: 'lfgo energy', titleCn: '', shortName: 'LF' }, { name: 'lost-mary', title: 'lost mary', titleCn: '', shortName: 'LO' }, { name: 'mr-fog', title: 'mr fog', titleCn: '', shortName: 'MR' }, { name: 'nicorette', title: 'nicorette', titleCn: '', shortName: 'NI' }, { name: 'oxbar', title: 'oxbar', titleCn: '', shortName: 'OX' }, { name: 'rabeats', title: 'rabeats', titleCn: '', shortName: 'RA' }, { name: 'yoone-vapengin', title: 'yoone vapengin', titleCn: '', shortName: 'YO' }, { name: 'sesh', title: 'sesh', titleCn: '', shortName: 'SE' }, { name: 'spin', title: 'spin', titleCn: '', shortName: 'SP' }, { name: 'stlth', title: 'stlth', titleCn: '', shortName: 'ST' }, { name: 'tornado', title: 'tornado', titleCn: '', shortName: 'TO' }, { name: 'uwell', title: 'uwell', titleCn: '', shortName: 'UW' }, { name: 'vanza', title: 'vanza', titleCn: '', shortName: 'VA' }, { name: 'vapgo', title: 'vapgo', titleCn: '', shortName: 'VA' }, { name: 'vase', title: 'vase', titleCn: '', shortName: 'VA' }, { name: 'vice-boost', title: 'vice boost', titleCn: '', shortName: 'VI' }, { name: 'vozol-star', title: 'vozol star', titleCn: '', shortName: 'VO' }, { name: 'zpods', title: 'zpods', titleCn: '', shortName: 'ZP' }, ]; // Total brands: 62