diff --git a/app.py b/app.py new file mode 100644 index 0000000..73d5e3d --- /dev/null +++ b/app.py @@ -0,0 +1,187 @@ +from flask import Flask, render_template, request, jsonify, session +from pymongo import MongoClient +import random +import string + +app = Flask(__name__) + +MONGO_URI_RO = 'mongodb://localhost:27017/hardware' +app.secret_key = 'test' +# mongoimport --db hardware --collection product_thinkmate --file db.json --jsonArray + + +def init_mongo(): + client = MongoClient(MONGO_URI_RO) + return client['hardware'] + +@app.route('/', methods=['GET']) +def home(): + hardware = init_mongo() + categories = list(hardware['product_thinkmate'].find({})) + return render_template('base_website.html', categories=categories) + +@app.route('/index', methods=['POST']) +def index(): + hardware = init_mongo() + categories = list(hardware['product_thinkmate'].find({})) + return render_template('index.html', categories=categories) + +@app.route('/servers', methods=['POST']) +def servers(): + hardware = init_mongo() + servers = list(hardware['product_thinkmate'].find({'type': 'server'})) + return render_template('servers.html', servers=servers) + +@app.route('/servers/', methods=['POST']) +def category(category): + hardware = init_mongo() + server_category = hardware['product_thinkmate'].find_one({'type': 'server', 'category': category}) + server_details = server_category.get('server_details', '') + server_highlights_detail = server_category.get('server_highlights_detail', '') + products = server_category.get('products', '') + details_list = [phrase.strip() for phrase in server_details.split('||')] + return render_template('category.html', server_category=server_category, + details_list=details_list, server_highlights_detail=server_highlights_detail, + products=products) + +@app.route('/product//', methods=['POST']) +def product(category, product_name): + session.clear() + product_id = request.args.get('product_id') + hardware = init_mongo() + category_data = hardware['product_thinkmate'].find_one({'category': category}) + saved_selections = session.get('config_selections', {}).get(product_name, {}) + product = None + config_data = None + if category_data and 'products' in category_data: + for item in category_data['products']: + if item.get('product_name') == product_name: + product = item + config_data = item.get('product_data', {}).get('config', [])[0] + break + return render_template('product.html', product=product, + category_data=category_data, config_data=config_data, + saved_selections=saved_selections) + +@app.route('/configurator///', methods=['POST']) +def config(category, product_name, config_category): + product_id = request.args.get('product_id') + hardware = init_mongo() + category_data = hardware['product_thinkmate'].find_one({'category': category}) + saved_selections = session.get('config_selections', {}).get(product_name, {}) + product = None + config_data = None + if category_data and 'products' in category_data: + for item in category_data['products']: + if item.get('product_name') == product_name: + product = item + config_data = item.get('product_data', {}).get('config', []) + for config in config_data: + if config.get('category', {}).get('name') == config_category: + config_data = config + break + break + return render_template('config.html', product=product, category_data=category_data, + config_data=config_data, config_category=config_category, + saved_selections=saved_selections) + +@app.route('/save_config_selection', methods=['POST']) +def save_config_selection(): + data = request.form + product_name = data.get('product_name') + category = data.get('category') + max_quantity_str = data.get('max_quantity', None) + try: + max_quantity = int(max_quantity_str) if max_quantity_str and max_quantity_str.isdigit() else None + except ValueError: + max_quantity = None + + sub_category = data.get('sub_category') + config_choice_type = data.get('config_choice_type') + new_category_data = {"max_quantity": max_quantity} + config_keys = [key for key in data.keys() if key.startswith('config-')] + + if config_choice_type != 'radio' and max_quantity and len(config_keys) > max_quantity: + return jsonify({ + 'message': f'Cannot select more than {max_quantity} options for {category}.', + 'status': 'ko' + }) + + if config_keys: + if config_choice_type == 'radio': + for key, value in data.items(): + if key.startswith('config-'): + new_category_data["selection"] = value + break + else: + new_category_data["subcategories"] = {} + for key, value in data.items(): + if key.startswith('config-'): + parts = key.split('-') + subcategory = parts[3] if len(parts) >= 4 else category + new_category_data["subcategories"].setdefault(subcategory, []).append(value) + else: + if config_choice_type == 'radio': + new_category_data["selection"] = None + else: + new_category_data["subcategories"] = {sub_category or category: []} + + config_selections = session.get('config_selections', {}) + config_selections.setdefault(product_name, {})[category] = new_category_data + + # Cleanup logic + if config_choice_type != 'radio': + subcats = config_selections[product_name][category].get("subcategories", {}) + subcats = {k: v for k, v in subcats.items() if v} + if not subcats: + config_selections[product_name].pop(category, None) + elif not config_selections[product_name][category].get("selection"): + config_selections[product_name].pop(category, None) + + if not config_selections[product_name]: + config_selections.pop(product_name) + + session['config_selections'] = config_selections + return jsonify(config_selections.get(product_name, {})) + +@app.route('/show_order', methods=['POST']) +def show_order(): + config_selection = session.get('config_selections', {}) + return render_template('order.html', config_selection=config_selection, + no_order_message='No orders found in the session.') + +def sanitize_keys(data): + if isinstance(data, dict): + return {k.replace('.', '_'): sanitize_keys(v) for k, v in data.items()} + elif isinstance(data, list): + return [sanitize_keys(i) for i in data] + return data + +@app.route('/confirm_order', methods=['POST']) +def confirm_order(): + order = sanitize_keys(session.get('config_selections', {})) + hardware = init_mongo() + if not order: + return 'No orders found in the session.' + if 'order' not in hardware.list_collection_names(): + hardware.create_collection('order') + order_id = ''.join(random.choices(string.ascii_letters + string.digits, k=5)) + details = [] + for product_name, categories in order.items(): + for category_name, category_data in categories.items(): + details.append({ + "category": category_name, + "selection": category_data.get("selection"), + "subcategories": category_data.get("subcategories", {}) + }) + hardware['order'].insert_one({ + 'order_id': order_id, + 'product_name': product_name, + 'details': details, + 'status': 'confirmed' + }) + session.clear() + return ' Order confirmed successfully!' + +if __name__ == '__main__': + app.run(debug=True) diff --git a/db.json b/db.json new file mode 100644 index 0000000..d884092 --- /dev/null +++ b/db.json @@ -0,0 +1,71159 @@ +[ + { + "_id": { + "$oid": "68227c5cc7f68cda6b4ca50d" + }, + "name": "GPX", + "category": "GPU Servers", + "description": "GPU-Optimized Servers ideal for highly parallel computing workloads and HPC.", + "url": "https://www.thinkmate.com/systems/servers/gpx", + "nav_image": "https://www.thinkmate.com/wwwinc/static/menu/server-gpx.png", + "category_image": "https://www.thinkmate.com/cdn/landing-assets/servers/server_gpx.png", + "server_title": "Accelerate your most demanding AI workloads", + "server_details": "With a wide variety of form factors and configurations available, Felcloud GPX GPU-optimized servers are the perfect solution for data center computing. Felcloud offers a wide variety of servers optimized for GPU accelerated computing, including NVIDIA GPU servers. || Felcloud's GPX servers are the perfect solution for high-performance computing in artificial intelligence. Our GPX servers are designed to accelerate machine learning and deep learning applications, and are built with the latest technologies from NVIDIA and other leading manufacturers. || We also offer custom servers tailored to your specific requirements, such as unique GPU configurations or form factors. Our team of experts can help you design the perfect server for your needs. || Our GPU-accelerated servers are designed with a rackmount form factor, making them easy to install and organize in data centers. With 24/7 technical support available, you can rest assured that your server will be up and running smoothly. || No matter what your needs are, our GPU-accelerated servers are designed to provide the power, reliability, and scalability you need for high-performance computing and machine learning. Browse our selection today and find the perfect NVIDIA GPU server for your needs. If you have any questions, our team of experts is available to assist you.", + "server_highlights": "GPX GPU-Optimized Server Highlights:", + "server_highlights_detail": [ + "GPX servers from Felcloud are powered by the latest NVIDIA GPUs, including the NVIDIA A100, NVIDIA T4, and more.", + "Our GPX servers support various high-speed interconnects, including InfiniBand, 100/200/400 Gigabit Ethernet, and NVLink.", + "Choose from a variety of CPU options, including Intel Xeon and AMD EPYC processors.", + "Our GPX servers come in a range of form factors to meet your specific needs, including 1U, 2U, and 4U rackmount, and tower configurations.", + "Up to 10GPUs per system for density and space-saving in data centers" + ], + "server_section_image": "https://www.thinkmate.com/cdn/landing-assets/systems/gpu/gpx.png", + "products": [ + { + "product_name": "QH12-12E9-2GPU", + "image_url": "https://www.thinkmate.com/thumb?g=20/18320-0094.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "2PCIe 5.0 x16", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$9,925.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18320-0094.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 2 GPUs - 8x 3.5\" Hybrid + 4x 3.5\" SAS/SATA - 2x M.2 NVMe - 1x AIOM - 1200W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/18277-0069.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9554P Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9684X Processor 96-core 2.55GHz 1152MB Cache (400W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9555P Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9655P Processor 96-core 2.6GHz 384MB Cache (400W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9475F Processor 48-core 3.65GHz 256MB Cache (400W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9575F Processor 64-core 3.3GHz 256MB Cache (400W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "128GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG08 Series (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=14/19286-0045.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 10/25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 5, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-MCIO-1240M5 - MCIO (x8 to x8), STR+Ptab, 40cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1335M5R - MCIO x8 (RA to STR),35CM,32AWG,RoHS", + "Supermicro CBL-MCIO-1245M5R - MCIO x8 (RA to STR),45cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1245M5-Z - MCIO x8 (STR to STR),45cm,30AWG,RoHS", + "Supermicro CBL-GNZ4-1227M5YRR16 - GENZ 4C STR to 2 MCIO x8 RA/RA 27/16cm", + "Supermicro CBL-MCIO-1226M5 - MCIO (x8 STR to x8 STR),26CM,85OHM,RoHS", + "Supermicro CBL-PWEX-1136YB-25 - MicroHi(2x4 to 2x2Y),PH3.0,25/25cm,YRB,8.5A/p,18AWG", + "Supermicro MCP-240-21908-0N - Riser Bracket(4-slot) for RSC-H2-6888G5L in CSE-HS219/HS829", + "Supermicro MCP-240-21108-0N - Riser Bracket(2-slot) for RSC-H-68G5", + "Supermicro MCP-120-82927-0N - Middle riser support bracket", + "Supermicro RSC-H2-6888G5L - 2U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 2x PCIe 5.0 X8", + "Supermicro RSC-H-68G5 - 1U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 1x PCIe 5.0 X8" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QH12-12E9-2GPU", + "description": "The GPX QH12-12E9-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications.The GPX QH12-12E9-2GPU provides up to eight hybrid NVMe/SAS/SATA drives, four SAS/SATA drives, and six PCIe Gen5 slots. This GPU-accelerated AMD EPYC server provides high performance optimization to support graphics-intensive business use cases, or as a part or a larger HPC, cloud, or data center deployment. The GPX QH12-12E9-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications. The GPX QH12-12E9-2GPU provides up to eight hybrid NVMe/SAS/SATA drives, four SAS/SATA drives, and six PCIe Gen5 slots. This GPU-accelerated AMD EPYC server provides high performance optimization to support graphics-intensive business use cases, or as a part or a larger HPC, cloud, or data center deployment.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Via AIOM", + "Power": "1200W Redundant Titanium Level power supplies", + "External Bays": "12x 3.5\" hot-swap NVMe/SATA/SAS drive bays" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QH12-22E9-2GPU", + "image_url": "https://www.thinkmate.com/thumb?g=18/18305-0032.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "83.5\" NVMe Hot-Swap", + "3PCIe 5.0 x16", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$11,258.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/18305-0032.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 2 GPUs - 8x 3.5\" SATA + 4x 3.5\" NVMe - 2x M.2 NVMe - 1x AIOM - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)", + "AMD EPYC™ 9684X Processor 96-core 2.55GHz 1152MB Cache (400W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9475F Processor 48-core 3.65GHz 256MB Cache (400W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9565 Processor 72-core 3.15GHz 384MB Cache (400W)", + "AMD EPYC™ 9575F Processor 64-core 3.3GHz 256MB Cache (400W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9825 Processor 144-core 2.2GHz 384MB Cache (390W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18273-0085.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "96GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG08 Series (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=04/18040-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper-based GPUs", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 10/25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-MCIO-1245M5 - MCIO x8 (STR to STR),45cm,85OHM,RoHS", + "Supermicro CBL-MCIO-1222AM5 - MCIOx8 (STR to STR),22cm,LNRV,30AWG", + "Supermico CBL-MCIO-1226AM5 - MCIOx8 (STR to STR),26cm,LNRV,30AWG", + "Supermicro CBL-GNZ4-1227M5YRR16 - GENZ 4C STR to 2 MCIO x8 RA/RA 27/16cm", + "Supermicro CBL-MCIO-1226M5R - MCIO x8 (STR to RA),26CM,85OHM", + "Supermicro CBL-MCIO-1250M5-Z - MCIO x8 (STR to STR),50cm,30AWG", + "Supermicro CBL-MCIO-1233M5R - MCIO x8 (STR to RA),33cm,85OHM", + "Supermicro CBL-PWEX-1136YB-25 - MicroHi(2x4 to 2x2Y),PH3.0,25/25cm,YRB,8.5A/p,18AWG", + "Supermicro CBL-PWEX-1136-40 - MicroHi ,(2s2 to 2s4) P3.0, 40cm, 10A/pin,16AW G, cable", + "Supermicro MCP-240-21908-0N - Riser Bracket(4-slot) for RSC-H2-6888G5L in CSE-HS219/HS829", + "Supermicro MCP-240-21108-0N - Riser Bracket(2-slot) for RSC-H-68G5", + "Supermicro MCP-120-82927-0N - Middle riser support bracket", + "Supermicro RSC-H2-6888G5L - 2U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 2x PCIe 5.0 X8", + "Supermicro RSC-H-68G5 - 1U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 1x PCIe 5.0 X8" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QH12-22E9-2GPU", + "description": "The Thinkmate GPX QH12-22E9-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications.The GPX QH12-22E9-2GPU provides up to twelve 2.5 or 3.5 hot swappable drives for SATA/NVMe storage and five PCIe Gen5 slots. This GPU-accelerated AMD EPYC server provides high performance optimization to support graphics-intensive business use cases, or as a part or a larger HPC, cloud, or data center deployment. The Thinkmate GPX QH12-22E9-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications. The GPX QH12-22E9-2GPU provides up to twelve 2.5 or 3.5 hot swappable drives for SATA/NVMe storage and five PCIe Gen5 slots. This GPU-accelerated AMD EPYC server provides high performance optimization to support graphics-intensive business use cases, or as a part or a larger HPC, cloud, or data center deployment.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Via Slim-AIOM", + "Power": "1U 1000W/1600W Redundant single output power supply", + "External Bays": "12x 3.5\" hot-swap NVMe/SATA/SAS drive bays" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QH8-12E4-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=03/19208-0097.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "42.5\" SATA/SAS Hot-Swap", + "2PCIe 5.0 x16 LP", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$11,664.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/19208-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9005 Series - 2U - 4x Hybrid + 4x SAS/SATA - 8 GPUs, Gen 5 Switch- 3000W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-R Series PCIe 5.0 NVMe 2.0 Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.84TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "7.68TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "15.36TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "30.72TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-V Series PCIe 5.0 NVMe 2.0 Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.2TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "6.4TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "12.8TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=22/16375-0030.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Radeon GPU", + "config": [ + "AMD Instinct™ MI100 Accelerator - 32GB HBM2 - PCIe 4.0 x16 - Passive Cooling", + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper-based GPUs", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 5000 Ada Generation - 32GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)", + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QH8-12E4-8GPU", + "description": "", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2x 10Gb/s BASE-T LAN ports (Broadcom BCM57416)1x 10/100/1000 management LAN", + "Power": "Dual 3000W (240V) 80 PLUS Titanium redundant power supplyRedundancy depends on configurationC19 Power cord required", + "External Bays": "8x 2.5-inch hot-swap drives" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QH8-22E4-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=14/18479-0072.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "42.5\" SATA/SAS Hot-Swap", + "2PCIe 5.0 x16 LP", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$15,118.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/18479-0072.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9005 Series - 2U - 4x Hybrid + 4x SAS/SATA - 8 GPUs, Gen 5 Switch - 3000W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-R Series PCIe 5.0 NVMe 2.0 Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.84TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "7.68TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "15.36TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "30.72TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-V Series PCIe 5.0 NVMe 2.0 Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.2TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "6.4TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "12.8TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=30/19017-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper-based GPU", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A2000 - 12GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4x mDP)", + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 2000 Ada Generation - 16GB GDDR6 ECC - PCIe 4.0 x8 - Active Cooling (4x mDP)", + "NVIDIA RTX 4000 SFF Ada Generation - 20GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4x mDP)", + "NVIDIA RTX 4000 Ada Generation - 20GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)", + "NVIDIA RTX 4500 Ada Generation - 24GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)", + "NVIDIA RTX 5000 Ada Generation - 32GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)", + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QH8-22E4-8GPU", + "description": "", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9005 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2x 10Gb/s BASE-T LAN ports (Broadcom BCM57416)1 x 10/100/1000 management LAN", + "Power": "Redundant (1+1) 3000W AC-DC Power SupplyC19 Power cord requiredRedundancy depends on system load", + "External Bays": "4x 2.5-inch hot-swap hybrid SAS3/SATA3/NVMe drives4x 2.5-inch hot-swap SAS3/SATA3 drives" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QH16-24E9-10GPU", + "image_url": "https://www.thinkmate.com/thumb?g=21/18322-0043.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "82.5\" SATA/SAS Hot-Swap", + "11PCIe 5.0 x16", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$29,444.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/18322-0043.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 4U - 8x Hybrid + 2x SATA - 10 GPUs - 2000W Redundant Power 3+1" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)", + "AMD EPYC™ 9684X Processor 96-core 2.55GHz 1152MB Cache (400W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9475F Processor 48-core 3.65GHz 256MB Cache (400W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9565 Processor 72-core 3.15GHz 384MB Cache (400W)", + "AMD EPYC™ 9575F Processor 64-core 3.3GHz 256MB Cache (400W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9825 Processor 144-core 2.2GHz 384MB Cache (390W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/18274-0026.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "96GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 16, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "NeKioxia CM7-R Series PCIe 5.0 NVMe 2.0 Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.84TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "7.68TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "15.36TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "30.72TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=18/17829-0014.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Radeon GPUs", + "config": [ + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper based GPUs", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 5, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40", + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=12/16669-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=14/16014-0003.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QH16-24E9-10GPU", + "description": "The GPX QH16-24E9-10GPU GPU server is a 4U, 10-GPU system designed to support highly parallel workloads. This AMD EPYC server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications.With support for 10 full-width GPUs, AMD EPYC 9004 series processors, 3TB of DRAM, 8 hybrid NVMe/SAS/SATA drives and 8 SAS/SATA drives, the GPX QH16-24E9-10GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX QH16-24E9-10GPU GPU server is a 4U, 10-GPU system designed to support highly parallel workloads. This AMD EPYC server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications. With support for 10 full-width GPUs, AMD EPYC 9004 series processors, 3TB of DRAM, 8 hybrid NVMe/SAS/SATA drives and 8 SAS/SATA drives, the GPX QH16-24E9-10GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "4U", + "Ethernet": "2x 10GbE BaseT", + "Power": "4x 2000W Redundant Power Supplies, Titanium Level", + "External Bays": "8 front hot-swap 2.5\" NVMe drive bays2 front hot-swap 2.5\" SATA drive bays" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QH24-24E4-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=15/18307-0007.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "202.5\" SATA/SAS Hot-Swap", + "9PCIe 5.0 x16", + "Dual 10 Gigabit Ethernet", + "GPU-Optimized" + ], + "price": "$21,165.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/18307-0007.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 4U 8GPU Server - 24x 2.5\" Hot-swap - Dual 10 Gigabit Ethernet - 2000W (3+1) Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)", + "AMD EPYC™ 9684X Processor 96-core 2.55GHz 1152MB Cache (400W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9475F Processor 48-core 3.65GHz 256MB Cache (400W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9565 Processor 72-core 3.15GHz 384MB Cache (400W)", + "AMD EPYC™ 9575F Processor 64-core 3.3GHz 256MB Cache (400W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9825 Processor 144-core 2.2GHz 384MB Cache (390W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/18274-0026.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "96GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "NeKioxia CM7-R Series PCIe 5.0 NVMe 2.0 Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.84TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "7.68TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "15.36TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "30.72TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=30/19017-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Radeon GPUs", + "config": [ + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper based GPUs", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=06/19295-0099.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "AMD Instinct MI210 Bridge Connector Attaches 2x Instinct MI210 Cards", + "AMD Instinct MI210 Bridge Connector Attaches 4x Instinct MI210 Cards", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40", + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QH24-24E4-8GPU", + "description": "The GPX QH24-24E4-8GPU GPU server is a 4U, 8-GPU system designed to support highly parallel workloads. This AMD EPYC server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications.With support for 8 full-width GPUs, AMD EPYC 9004 series processors, 1.5TB of DRAM, 8 hybrid NVMe/SAS/SATA drives and 16 SAS/SATA drives, the GPX QH24-24E4-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX QH24-24E4-8GPU GPU server is a 4U, 8-GPU system designed to support highly parallel workloads. This AMD EPYC server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications. With support for 8 full-width GPUs, AMD EPYC 9004 series processors, 1.5TB of DRAM, 8 hybrid NVMe/SAS/SATA drives and 16 SAS/SATA drives, the GPX QH24-24E4-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "4U", + "Ethernet": "2x 10GbE BaseT", + "Power": "4x 2000W Redundant Power Supplies, Titanium Level", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays (4x 2.5\" NVMe dedicated)" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QH14-28E4-8HGX", + "image_url": "https://www.thinkmate.com/thumb?g=27/18447-0086.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "142.5\" SATA/SAS/NVMe Hot-Swap", + "2PCIe 5.0 x16", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$300,129.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=27/18447-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 8U 8GPU Server - 16x 2.5\" Hot-swap - Optional Dual 10 Gigabit Ethernet - 3000W (3+3) Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/18290-0003.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)", + "AMD EPYC™ 9684X Processor 96-core 2.55GHz 1152MB Cache (400W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18275-0079.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "(Optional) Additional AC-DC 3000W, Titanium efficiency Power Supply - PWS-3K06G-2R" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 16, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=17/18050-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "NVIDIA HGX™ H100 - 8x NVIDIA H100 SXM5 GPUs - 640GB HBM3 Memory - 4th Generation NVLink", + "NVIDIA HGX™ H200 - 8x NVIDIA H200 SXM5 GPUs - 1128GB HBM3e Memory - 5th Generation NVLink" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=11/13809-0096.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "Supermicro Dual-Port 10 Gigabit Ethernet Adapter AOC-STGS-i2T Intel X550-AT2 (2x RJ45)", + "Supermicro Dual-Port 10 Gigabit Ethernet Adapter AOC-STGC-i2T Intel X710-AT2 (2x RJ45)", + "Supermicro Dual-Port 100 Gigabit Ethernet Adapter AOC-S100GC-i2C Intel E810-CAM2 (2x QSFP28)" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-MCIO-1255M5 - MCIO x8 (STR to STR),55CM,30AWG", + "Supermicro CBL-PWEX-1142-40 - MicroHi,(2x4 to 2x4),PH3.0,40CM,8A/pin,18AWG,RoHS", + "Supermicro AOM-DP801-SW-P - NIC adaptor board with PLX switch for Delta-Next GPU system,RoHS", + "Supermicro AOM-DP801-PCIE-P - NIC Riser board(After Mid-Plane) for Delta-Next GPU System,RoHS" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Supermicro 1-Year Onsite NBD Service", + "Supermicro 2-Year Onsite NBD Service", + "Supermicro 3-Year Onsite NBD Service", + "Supermicro 4-Year Onsite NBD Service", + "Supermicro 5-Year Onsite NBD Service" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH8-22S4-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=15/19138-0017.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "3TBDDR5 ECC RDIMM", + "42.5\" SATA/SAS Hot-Swap", + "2PCIe 5.0 x16 LP", + "Redundant Power", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$12,829.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/19138-0017.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 2U GPU Server - 4x Hybrid + 4x SAS/SATA - 8 DW GPUs - 3000W Redundant Power" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)", + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)" + ] + }, + { + "name": "IoT Optimized / Long Life", + "config": [ + "Intel Xeon Silver 4410T Processor 10-Core 2.7GHz 26.25 MB Cache (150W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5411N Processor 24-Core 1.9GHz 45 MB Cache (165W)", + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "Specialized for IMDB & Analytics", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)" + ] + }, + { + "name": "5th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-R Series PCIe 5.0 NVMe 2.0 Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.84TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "7.68TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "15.36TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "30.72TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-V Series PCIe 5.0 NVMe 2.0 Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.2TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "6.4TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "12.8TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere-based GPU", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper-based GPU", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40", + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XT24-24X4-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=06/18413-0030.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4 TBDDR5 ECC RDIMM", + "202.5\" SATA/SAS Hot-Swap", + "8PCIe 5.0 x16", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$21,954.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/18413-0030.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 4U GPU Server - 24x 2.5\" Hot-swap - 1x AIOM - 2700W 2+2 Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/17775-0002.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "General Purpose 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)", + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)" + ] + }, + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Storage & HCI Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "High Perfomance Computing Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Storage & HCI Optimized 5th Generation Intel Xeon Scalable Processor", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18273-0085.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=02/16704-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper-based GPUs", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 5, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40", + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/8987-0071.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3008 SAS3/SATA 8-Port Host Bus Adapter - PCIe 3.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3108 SAS3/SATA 8-Port RAID Controller - 2GB Cache - PCIe 3.0 x8 (16 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=17/18390-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX XT24-24X4-8GPU", + "description": "The GPX XT24-24X4-8GPU GPU server is a 4U, 8-GPU system designed\r\nto support highly parallel workloads. Users can expect strong performance from\r\nthis system in virtualization, visual computing, HPC, and AI applications.With support for 8 full-width NVIDIA H100 GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XT24-24X4-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX XT24-24X4-8GPU GPU server is a 4U, 8-GPU system designed\r\nto support highly parallel workloads. Users can expect strong performance from\r\nthis system in virtualization, visual computing, HPC, and AI applications. With support for 8 full-width NVIDIA H100 GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XT24-24X4-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "4U", + "Ethernet": "2x 10GbE BaseT with Intel X710-AT2", + "Power": "2700W Redundant Power Supplies with PMBus", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays (4x 2.5\" NVMe hybrid; 4x 2.5\" NVMe dedicated)" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "XH12-24S4-10GPU", + "image_url": "https://www.thinkmate.com/thumb?g=10/18571-0017.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4TBDDR5 ECC RDIMM", + "123.5\" SATA/SAS/NVMe Hot-Swap", + "2PCIe 5.0 x16 LP", + "Redundant Power", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$16,325.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/18571-0017.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 4U GPU Server - 12x 3.5\" Hybrid - Dual 10 Gigabit Ethernet - 3000W 3+1 Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "General Purpose 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)", + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)" + ] + }, + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Storage & HCI Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "High Perfomance Computing Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Storage & HCI Optimized 5th Generation Intel Xeon Scalable Processor", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "2TB SAS3 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-R Series PCIe 5.0 NVMe 2.0 Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.84TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "7.68TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "15.36TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "30.72TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-V Series PCIe 5.0 NVMe 2.0 Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.2TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "6.4TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "12.8TB Kioxia CM7-V Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=14/19286-0045.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ada Lovelace-based GPUs", + "config": [ + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA Tesla - Hopper-based GPU", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=01/16353-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/15200-0044.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX XH12-24S4-10GPU", + "description": "The GPX XH12-24S4-10GPU GPU server is a 4U, 10-GPU system designed to support highly parallel workloads. This 4th generation Intel Xeon Scalable server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications.With support for 10 full-width NVIDIA A100 GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XH12-24S4-10GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX XH12-24S4-10GPU GPU server is a 4U, 10-GPU system designed to support highly parallel workloads. This 4th generation Intel Xeon Scalable server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications. With support for 10 full-width NVIDIA A100 GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XH12-24S4-10GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "4U", + "Ethernet": "Two 10Gb/s BASE-T LAN ports (Intel X710-AT2)Dedicated Management LAN port", + "External Bays": "12x 3.5\"/2.5\" hot-swappable hybrid baysUp to 12x Gen5 NVMe (2x from CPU_0, 2x from CPU_1, 4x from PEX89144_0, 4x from PEX89144_1)Up to 12x 3.5\"/2.5\" SAS/SATA" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "XH20-28S4-8HGX", + "image_url": "https://www.thinkmate.com/thumb?g=12/18417-0024.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4 TBDDR5 ECC RDIMM", + "162.5\" NVMe Hot-Swap", + "4PCIe 5.0 x16", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$296,362.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/18417-0024.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 8U NVIDIA HGX™ H100/H200 8-GPU - 16x NVMe + 3x SATA - 3000W (3+3) Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/18503-0031.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4516Y+ Processor 24-Core 2.2GHz 45MB Cache (185W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8571N Processor 52-Core 2.4GHz 300MB Cache (300W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8581V Processor 60-Core 2.0GHz 300MB Cache (270W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18275-0079.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "(Optional) Additional AC-DC 3000W, Titanium efficiency Power Supply - PWS-3K06G-2R" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 16, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=17/18050-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "NVIDIA HGX™ H100 - 8x NVIDIA H100 SXM5 GPUs - 640GB HBM3 Memory - 4th Generation NVLink", + "NVIDIA HGX™ H200 - 8x NVIDIA H200 SXM5 GPUs - 1128GB HBM3e Memory - 5th Generation NVLink" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=00/15872-0087.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "Supermicro Dual-Port 10 Gigabit Ethernet Adapter AOC-STGS-i2T Intel X550-AT2 (2x RJ45)", + "Supermicro Dual-Port 10 Gigabit Ethernet Adapter AOC-STGC-i2T Intel X710-AT2 (2x RJ45)", + "Supermicro Dual-Port 100 Gigabit Ethernet Adapter AOC-S100GC-i2C Intel E810-CAM2 (2x QSFP28)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-PWEX-1142B-40 - MicroHi(2x4 to 2x4), PH3.0, 40cm, 8.5A/p, 18AWG, RoHS", + "Supermicro CBL-MCIO-1255M5 - MCIO x8 (STR to STR),55CM,30AWG", + "Supermicro AOM-DP801-SW-P - NIC adaptor board with PLX switch for Delta-Next GPU system,RoHS", + "Supermicro AOM-DP801-PCIE-P - NIC Riser board(After Mid-Plane) for Delta-Next GPU System,RoHS" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Supermicro 1-Year Onsite NBD Service", + "Supermicro 2-Year Onsite NBD Service", + "Supermicro 3-Year Onsite NBD Service", + "Supermicro 4-Year Onsite NBD Service", + "Supermicro 5-Year Onsite NBD Service" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XN4-21S3-4GPU", + "image_url": "https://www.thinkmate.com/thumb?g=16/16810-0064.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "22.5\" NVMe Hot-Swap", + "4PCIe 4.0 x16", + "Dual 10 Gigabit Ethernet", + "Optane", + "GPU-Optimized" + ], + "price": "$10,332.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=16/16810-0064.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U GPU Server - 2x 2.5\" Hot-swap NVMe + 2x 2.5\" Fixed SATA - Dual 10-GbE - 2000W (1+1)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/18226-0099.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives (1.3x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=29/16898-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX XN4-21S3-4GPU", + "description": "The GPX XN4-2123-4GPU GPU-accelerated server is a 1U, 4 GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications.With support for 4 full width GPUs, 3rd Gen Intel Xeon Scalable\r\nProcessors, 4TB of DRAM, two SAS and two SATA drives, the GPX XN4-21S3-4GPU is the\r\nideal general-purpose GPU-accelerated server for highly parallel computing. The GPX XN4-2123-4GPU GPU-accelerated server is a 1U, 4 GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications. With support for 4 full width GPUs, 3rd Gen Intel Xeon Scalable\r\nProcessors, 4TB of DRAM, two SAS and two SATA drives, the GPX XN4-21S3-4GPU is the\r\nideal general-purpose GPU-accelerated server for highly parallel computing.", + "use_cases": [ + "AI / ML / DL", + "Big Data Analytics", + "High-Performance Computing", + "Media Rendering", + "Scientific Virtualization" + ], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "2x 10GbE BaseT ports - Intel X540", + "Power": "2200W (1+1) Redundant High efficiency (Titanium level) Power Supplies", + "External Bays": "2x 2.5\" hot-swap NVMe" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Government", + "Healthcare & Life Sciences", + "Media & Entertainment", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "XH8-22S3-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=07/17360-0054.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "3 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "8PCIe 4.0 x16", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$9,276.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/17360-0054.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621 Chipset - 2U GPU Server - 8x 2.5\" SATA/SAS - Dual-Port 10 Gigabit Ethernet - 3200W Redundant Power" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=24/17201-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere-based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 5000 Ada Generation - 32GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)", + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX XH8-22S3-8GPU", + "description": "The GPX XH8-22S3-8GPU GPU server is a 2U, 8-GPU system designed to support highly parallel workloads. This 4th generation Intel Xeon Scalable server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications.With support for 8 full-width NVIDIA A100 GPUs, Intel Xeon Scalable processors, and 3TB of DRAM, the GPX XH8-22S3-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX XH8-22S3-8GPU GPU server is a 2U, 8-GPU system designed to support highly parallel workloads. This 4th generation Intel Xeon Scalable server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications. With support for 8 full-width NVIDIA A100 GPUs, Intel Xeon Scalable processors, and 3TB of DRAM, the GPX XH8-22S3-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2x 10Gb/s BASE-T LAN ports (Intel X710-AT2)Dedicated 10/100/1000 management LAN", + "Power": "3200W 80 Plus Platinum (2+0) Power SupplyC19 power cord required", + "External Bays": "8 x 2.5-inch hot-swap SAS3/SATA3 drive bays:4x 2.5-inch hot-swap SAS3/SATA34x 2.5-inch hot-swap NVMe/SAS3/SATA3" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "XS12-24S3-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=10/16936-0033.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "4 TBDDR4 ECC RDIMM", + "123.5\" SATA/SAS Hot-Swap", + "8PCIe 4.0 x16", + "Redundant Power", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$9,644.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16936-0033.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "4U GPU Server - 12x 3.5\" SATA/SAS - 8x GPUs Dual Root - Dual 10 Gigabit Ethernet - 2200W 2+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/20156-0066.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=24/17201-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Tesla - Ampere-based GPU", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler", + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=16/15200-0044.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX XS12-24S3-8GPU", + "description": "The GPX XS12-24S3-8GPU GPU server is a 4U, 8-GPU system designed\r\nto support highly parallel workloads. Users can expect strong performance from\r\nthis system in virtualization, visual computing, HPC, and AI applications.With support for 8 full-width NVIDIA H100 GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XS12-24S3-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX XS12-24S3-8GPU GPU server is a 4U, 8-GPU system designed\r\nto support highly parallel workloads. Users can expect strong performance from\r\nthis system in virtualization, visual computing, HPC, and AI applications. With support for 8 full-width NVIDIA H100 GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XS12-24S3-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing", + "Media Rendering", + "VDI" + ], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "4U", + "Ethernet": "2 x 10Gb/s BASE-T LAN ports (Intel X550-AT2)Dedicated 1 x 10/100/1000 management LAN port", + "Power": "2200W 80 Plus Platinum (2+1) Redundant Power Supply", + "External Bays": "12x 3.5-inch hot-swap drive baysSupports SATA only" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Media & Entertainment", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "XH24-24X4-10GPU", + "image_url": "https://www.thinkmate.com/thumb?g=18/18411-0098.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4 TBDDR5 ECC RDIMM", + "82.5\" NVMe Hot-Swap", + "12PCIe 5.0 x16", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$22,791.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/18411-0098.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 4U GPU Server - 24x 2.5\" Hot-swap - 1x AIOM - 2700W (2+2) Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/17775-0002.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "General Purpose 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)", + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)" + ] + }, + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Storage & HCI Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "High Perfomance Computing Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Storage & HCI Optimized 5th Generation Intel Xeon Scalable Processor", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18273-0085.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8P-R Series PCIe 5.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CD8P-R Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8P-R Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8P-R Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8P-R Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)", + "30.72TB Kioxia CD8P-R Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8P-V Series PCIe 5.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Kioxia CD8P-V Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8P-V Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8P-V Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8P-V Series PCIe 5.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=02/16704-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper-based GPUs", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 5, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40", + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/8987-0071.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3008 SAS3/SATA 8-Port Host Bus Adapter - PCIe 3.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3108 SAS3/SATA 8-Port RAID Controller - 2GB Cache - PCIe 3.0 x8 (16 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=17/18390-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX XH24-24X4-10GPU", + "description": "The GPX XH24-24X4-8GPU GPU server is a 4U, 10-GPU system designed to support highly parallel workloads. This 4th generation Intel Xeon Scalable server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications.With support for 10 full-width NVIDIA GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XH24-24X4-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX XH24-24X4-8GPU GPU server is a 4U, 10-GPU system designed to support highly parallel workloads. This 4th generation Intel Xeon Scalable server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications. With support for 10 full-width NVIDIA GPUs, Intel Xeon Scalable processors, and 4TB of DRAM, the GPX XH24-24X4-8GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "4U", + "Ethernet": "2x 10GbE BaseT with Intel X710-AT2", + "Power": "2700W Redundant Power Supplies with PMBus", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays (8x 2.5\" NVMe hybrid; 8x 2.5\" NVMe dedicated)" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "XN6-24S3-10GPU", + "image_url": "https://www.thinkmate.com/thumb?g=07/16689-0024.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "4 TBDDR4 ECC RDIMM", + "82.5\" NVMe Hot-Swap", + "12PCIe 4.0 x16", + "NVMe", + "Optane", + "GPU-Optimized" + ], + "price": "$20,323.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16689-0024.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 4U GPU Server - 24x 2.5\" Hot-swap - Dual 1 Gigabit Ethernet - 2000W (3+1) Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/16550-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives (1 DWPD)", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives (1 DWPD)", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives (1.3x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=02/16704-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)", + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A2000 - 12GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4x mDP)", + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 5, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=15/16748-0017.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)" + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/6972-0039.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate System Badge - 1.0\" x 1.0\"", + "Thinkmate System Badge - 1.75\" x 0.4375\"", + "Thinkmate System Badge - 1.25\" x 0.635\"", + "Thinkmate System Badge - 2.1875\" x 0.5625\"", + "Thinkmate System Badge - 1.12598\" x 0.582677\"", + "Thinkmate System Badge - 2.025\" x 0.750\"" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS4-12E2-4GPU", + "image_url": "https://www.thinkmate.com/thumb?g=01/17487-0039.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "1 TBDDR4 ECC RDIMM", + "22.5\" NVMe Hot-Swap", + "5PCIe 4.0 x16", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$5,768.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=01/17487-0039.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 2U GPU Server - 4x 3.5\" SATA - 2x U.2 Gen4 NVMe - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16520-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203P Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303P Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313P Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7443P Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7543P Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643P Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663P Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713P Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=22/16375-0030.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Instinct GPUs", + "config": [ + "AMD Instinct™ MI100 Accelerator - 32GB HBM2 - PCIe 4.0 x16 - Passive Cooling", + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ampere-based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler", + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["Air Freight Charge"] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/6973-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate System Badge - 1.0\" x 1.0\"", + "Thinkmate System Badge - 1.75\" x 0.4375\"", + "Thinkmate System Badge - 1.25\" x 0.635\"", + "Thinkmate System Badge - 2.1875\" x 0.5625\"", + "Thinkmate System Badge - 1.12598\" x 0.582677\"", + "Thinkmate System Badge - 2.025\" x 0.750\"" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QS4-12E2-4GPU", + "description": "The GPX QS4-12E2-4GPU GPU server is a 2U, 4-GPU system designed to support highly parallel workloads. This AMD EPYC server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications.With support for 4 full-width NVIDIA H100 GPUs, AMD EPYC 9004 series processors, and 1TB of DRAM, the GPX QS4-12E2-4GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads.Every Thinkmate GPU server solution comes standard with a 3-year warranty. The GPX QS4-12E2-4GPU GPU server is a 2U, 4-GPU system designed to support highly parallel workloads. This AMD EPYC server leverages high-speed NVMe storage, supplemented by higher-volume drives, to provide balanced on-board data storage and avoid bottlenecks. Users can expect strong performance from this system in HPC and AI applications. With support for 4 full-width NVIDIA H100 GPUs, AMD EPYC 9004 series processors, and 1TB of DRAM, the GPX QS4-12E2-4GPU is an ideal high-performance GPU-accelerated server for highly parallel HPC and AI workloads. Every Thinkmate GPU server solution comes standard with a 3-year warranty.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Power": "1600W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "4x 3.5-inch hot-swap SATA drives (front)2x 2.5-inch hot-swap SATA/SAS/U.2 NVMe drives (rear)" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QT8-22E2-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=30/16293-0088.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "2 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16 LP", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$8,867.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16293-0088.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 2U GPU Gen4 Server - 4x 2.5\" SATA/SAS3 - 4x Hybrid - Dual 10 Gigabit RJ45 - 2+0 2200W Power" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=22/16375-0030.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Instinct GPUs", + "config": [ + "AMD Instinct™ MI100 Accelerator - 32GB HBM2 - PCIe 4.0 x16 - Passive Cooling", + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ampere-based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/15200-0044.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QT8-22E2-8GPU", + "description": "The GPX QT8-22E2-8GPU GPU-accelerated server is a 2U, 8-GPU system designed to\r\nsupport highly parallel workloads. This server provides extreme GPU density,\r\nideal for rack-scale, highly parallel workloads. A mix of NVMe and SATA SSD storage\r\ndevices provides balanced on-board data storage that avoids bottlenecks. Users\r\ncan expect strong performance from this system in HPC and AI applications.With support for 8 full-width GPUs, AMD EPYC 7003 series Processors,\r\n2TB of DRAM, eight hot-swappable NVMe/SAS/SATA drives, and 2 ultra-fast NVMe\r\ndrives, the GPX QT8-12E2-8GPU is the ideal high-performance GPU-accelerated server\r\nfor highly parallel HPC and AI workloads. The GPX QT8-22E2-8GPU GPU-accelerated server is a 2U, 8-GPU system designed to\r\nsupport highly parallel workloads. This server provides extreme GPU density,\r\nideal for rack-scale, highly parallel workloads. A mix of NVMe and SATA SSD storage\r\ndevices provides balanced on-board data storage that avoids bottlenecks. Users\r\ncan expect strong performance from this system in HPC and AI applications. With support for 8 full-width GPUs, AMD EPYC 7003 series Processors,\r\n2TB of DRAM, eight hot-swappable NVMe/SAS/SATA drives, and 2 ultra-fast NVMe\r\ndrives, the GPX QT8-12E2-8GPU is the ideal high-performance GPU-accelerated server\r\nfor highly parallel HPC and AI workloads.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2 Ports 10GbE BASE-T RJ45 (Intel X550)1 Port Ethernet (management) RJ45", + "Power": "2200W 80 Plus Platinum (2+0) Power SupplyC19 power cord required", + "External Bays": "8x 2.5-inch hot-swap drives" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "QT8-24E2-8GPU", + "image_url": "https://www.thinkmate.com/thumb?g=01/16371-0072.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "4 TBDDR4 ECC RDIMM", + "22.5\" NVMe Hot-Swap", + "9PCIe 4.0 x16", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$9,834.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=01/16371-0072.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 4U GPU Server - 8x 2.5\" SATA + 2x 2.5\" NVMe - Dual Ethernet - 2200W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=27/14287-0009.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "2933MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-23400 2933MHz DDR4 ECC RDIMM", + "16GB PC4-23400 2933MHz DDR4 ECC RDIMM", + "32GB PC4-23400 2933MHz DDR4 ECC RDIMM", + "64GB PC4-23400 2933MHz DDR4 ECC RDIMM", + "128GB PC4-23400 2933MHz DDR4 ECC RDIMM" + ] + }, + { + "name": "2666MHz ECC Load-Reduced Registered DIMMs", + "config": [ + "32GB PC4-21300 2666MHz DDR4 ECC LR-DIMM", + "64GB PC4-21300 2666MHz DDR4 ECC LR-DIMM", + "128GB PC4-21300 2666MHz DDR4 ECC LR-DIMM" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=22/16375-0030.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Instinct GPUs", + "config": [ + "AMD Instinct™ MI100 Accelerator - 32GB HBM2 - PCIe 4.0 x16 - Passive Cooling", + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA Tesla - Ampere-based GPU", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A2000 - 12GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4x mDP)", + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=16/15200-0044.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QT8-24E2-8GPU", + "description": "The GPX QT8-24E2-8GPU GPU-accelerated server is a 4U, 8-GPU system designed to\r\nsupport highly parallel workloads. This server provides extreme GPU density,\r\nideal for rack-scale, highly parallel workloads. High-capacity SATA storage\r\ndevices provide plenty of storage for large datasets. Users can expect strong\r\nperformance from this system in HPC and AI applications.With support for 8 full-width GPUs, AMD EPYC 7003 series Processors,\r\nup to 4TB of DRAM, and eight hot-swappable SATA drives, the GPX QT8-24E2-8GPU is\r\nthe ideal high-performance GPU-accelerated server for highly parallel HPC and AI\r\nworkloads. The GPX QT8-24E2-8GPU GPU-accelerated server is a 4U, 8-GPU system designed to\r\nsupport highly parallel workloads. This server provides extreme GPU density,\r\nideal for rack-scale, highly parallel workloads. High-capacity SATA storage\r\ndevices provide plenty of storage for large datasets. Users can expect strong\r\nperformance from this system in HPC and AI applications. With support for 8 full-width GPUs, AMD EPYC 7003 series Processors,\r\nup to 4TB of DRAM, and eight hot-swappable SATA drives, the GPX QT8-24E2-8GPU is\r\nthe ideal high-performance GPU-accelerated server for highly parallel HPC and AI\r\nworkloads.", + "use_cases": [], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "4U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet RJ45 (front)Dedicated Management LAN port", + "Power": "Redundant (3) 2200W AC-DC Power SupplyC19 Power cord required", + "External Bays": "8 x 2.5\" SATA hot-swap bays; 2 x 2.5\" U.2 NVMe hot-swap bays" + }, + "industries": [] + } + }, + { + "product_name": "QN12-24E2-10GPU", + "image_url": "https://www.thinkmate.com/thumb?g=18/17489-0004.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "4 TBDDR4 ECC RDIMM", + "43.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16 LP", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$12,777.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17489-0004.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 4U GPU Server - 12x 3.5\" SATA/SAS3/NVMe - Dual Gigabit Ethernet - 2+1 2200W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "2TB SAS3 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=22/16375-0030.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Instinct GPUs", + "config": [ + "AMD Instinct™ MI100 Accelerator - 32GB HBM2 - PCIe 4.0 x16 - Passive Cooling", + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ampere-based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace-based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Hopper-based GPU", + "config": [ + "NVIDIA H100 NVL GPU Computing Accelerator - 94GB HBM3 - PCIe 5.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 5000 Ada Generation - 32GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)", + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Bridge", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=20/16472-0059.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - RTX A4500/A5000/A5500/A6000", + "NVIDIA NVLink™ Bridge - 2-Slot Spacing - A30 and A40", + "NVIDIA NVLink™ Bridge - 2-Way 2-Slot Spacing - H100 NVL" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9361-16i/9380-8i8e (CVPM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=16/15200-0044.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX QN12-24E2-10GPU", + "description": "The GPX QN12-24E2-10GPU GPU-accelerated server is a 4U, 10-GPU system designed\r\nto support highly parallel workloads. This server provides extreme GPU density,\r\nideal for rack-\tscale, highly parallel workloads. A mix of NVMe and SATA\r\nstorage devices provide balanced on-board data storage that avoids bottlenecks.\r\nUsers can expect strong performance from this system in HPC and AI applications.With support for 10 full-width GPUs, AMD EPYC 7003 series Processors,\r\n4TB of DRAM, and 12 hot-swappable NVMe/SAS/SATA drives, the GPX QN12-24E2-10GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC\r\nand AI workloads. The GPX QN12-24E2-10GPU GPU-accelerated server is a 4U, 10-GPU system designed\r\nto support highly parallel workloads. This server provides extreme GPU density,\r\nideal for rack-\tscale, highly parallel workloads. A mix of NVMe and SATA\r\nstorage devices provide balanced on-board data storage that avoids bottlenecks.\r\nUsers can expect strong performance from this system in HPC and AI applications. With support for 10 full-width GPUs, AMD EPYC 7003 series Processors,\r\n4TB of DRAM, and 12 hot-swappable NVMe/SAS/SATA drives, the GPX QN12-24E2-10GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC\r\nand AI workloads.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "4U", + "Ethernet": "2x 1Gb/s LAN ports (Intel I350-AM2) (front)Dedicated Management LAN port (front)", + "Power": "Redundant (3) 2200W AC-DC Power SupplyC19 Power cord required", + "External Bays": "Supports 12x 3.5-inch HS drives:4 NVMe/SAS/SATA bays4 NVMe bays4 SAS/SATA baysSAS card is required to enable SAS drives" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "PS4-12A1-2GPU", + "image_url": "https://www.thinkmate.com/thumb?g=21/17172-0087.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "43.5\" SATA/SAS Hot-Swap", + "3PCIe 4.0 x8 LP", + "Redundant Power", + "GPU-Optimized", + "2PCIe 4.0 x16 LP" + ], + "price": "$6,379.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/17172-0087.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 2GPU Server - PCIe 4.0 - 4x Hot-Swap 3.5\" SATA - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=14/19286-0045.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ada Lovelace-based GPUs", + "config": [ + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Included Gigabyte Internal CST3180 (ASM1164) SATA HBA - no RAID" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["Air Freight Charge"] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/6973-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate System Badge - 1.0\" x 1.0\"", + "Thinkmate System Badge - 1.75\" x 0.4375\"", + "Thinkmate System Badge - 1.25\" x 0.635\"", + "Thinkmate System Badge - 2.1875\" x 0.5625\"", + "Thinkmate System Badge - 1.12598\" x 0.582677\"", + "Thinkmate System Badge - 2.025\" x 0.750\"" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX PS4-12A1-2GPU", + "description": "The GPX PS4-12A1-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications.With support for 2 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable SAS/SATA drives, the GPX PS4-12A1-2GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads. The GPX PS4-12A1-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications. With support for 2 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable SAS/SATA drives, the GPX PS4-12A1-2GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "1600W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "4 x 3.5-inch hot-swap drives" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "PH4-12A1-4GPU", + "image_url": "https://www.thinkmate.com/thumb?g=11/18568-0052.png|w=200|h=120", + "details": [ + "Ampere Altra", + "2 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "4PCIe 4.0 x16", + "Dual 25 Gigabit Ethernet", + "GPU-Optimized", + "NVMe" + ], + "price": "$7,491.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/18568-0052.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 4GPU Server - 4x Hot-Swap 2.5\" NVMe - 2x 25GbE SFP28 - 2000W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/16949-0027.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/18226-0099.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17908-0053.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=02/16704-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17963-0039.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "GPX PH4-12A1-4GPU", + "description": "The GPX PH4-12A1-4GPU GPU-accelerated server is a 2U, 4-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications.With support for 4 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable Hybrid NVMe drives, the GPX PH4-12A1-4GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads. The GPX PH4-12A1-4GPU GPU-accelerated server is a 2U, 4-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications. With support for 4 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable Hybrid NVMe drives, the GPX PH4-12A1-4GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2 SFP28 25GbE", + "Power": "2000W Redundant Titanium Level High-efficiency Power Supplies (1+1)", + "External Bays": "4x Hybrid Hot-swap+ 12x SAS/SATA Hot-swap" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + } + } + ], + "type": "server" + }, + { + "_id": { + "$oid": "68227c5cc7f68c825d4ca511" + }, + "name": "ARM", + "category": "Ampere Servers", + "description": "For high-performance data centers and power-constrained edge environments.", + "url": "https://www.thinkmate.com/systems/servers/ampere", + "nav_image": "No image available", + "category_image": "https://www.thinkmate.com/cdn/landing-assets/servers/server_stx.png", + "server_title": "Award-winning Blade Servers, Featuring the Industry's best Ease of Deployment, Ease of Use and Price-Performance Ratio.", + "server_details": "Thinkmate now offers a wide range of server configurations using the Ampere Altra Cloud Native Processor family. || Purpose-built for efficient performance, Thinkmate servers deliver superior performance with superior size, weight, power, and cost (SWaP-C). || Using Ampere Altra processors family with 32 to 128 cores and running at a consistent and predictable frequency of up to 3.0 GHz, these servers are ideal for AI inference across a range of frameworks such as PyTorch.", + "server_highlights_detail": [], + "server_section_image": "https://www.thinkmate.com/cdn/landing-assets/servers/server_stx.png", + "products": [ + { + "product_name": "PS4-12A1-2GPU", + "image_url": "https://www.thinkmate.com/thumb?g=21/17172-0087.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "43.5\" SATA/SAS Hot-Swap", + "3PCIe 4.0 x8 LP", + "Redundant Power", + "GPU-Optimized", + "2PCIe 4.0 x16 LP" + ], + "price": "$6,923.00", + "product_data": { + "title": "GPX PS4-12A1-2GPU", + "description": "The GPX PS4-12A1-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications.With support for 2 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable SAS/SATA drives, the GPX PS4-12A1-2GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads. The GPX PS4-12A1-2GPU GPU-accelerated server is a 2U, 2-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications. With support for 2 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable SAS/SATA drives, the GPX PS4-12A1-2GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "1600W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "4 x 3.5-inch hot-swap drives" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ] + }, + "details_from_page": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/17172-0087.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 2GPU Server - PCIe 4.0 - 4x Hot-Swap 3.5\" SATA - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=14/19286-0045.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ada Lovelace-based GPUs", + "config": [ + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Included Gigabyte Internal CST3180 (ASM1164) SATA HBA - no RAID" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["Air Freight Charge"] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/6973-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate System Badge - 1.0\" x 1.0\"", + "Thinkmate System Badge - 1.75\" x 0.4375\"", + "Thinkmate System Badge - 1.25\" x 0.635\"", + "Thinkmate System Badge - 2.1875\" x 0.5625\"", + "Thinkmate System Badge - 1.12598\" x 0.582677\"", + "Thinkmate System Badge - 2.025\" x 0.750\"" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PH4-12A1-4GPU", + "image_url": "https://www.thinkmate.com/thumb?g=11/18568-0052.png|w=200|h=120", + "details": [ + "Ampere Altra", + "2 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "4PCIe 4.0 x16", + "Dual 25 Gigabit Ethernet", + "GPU-Optimized", + "NVMe" + ], + "price": "$7,491.00", + "product_data": { + "title": "GPX PH4-12A1-4GPU", + "description": "The GPX PH4-12A1-4GPU GPU-accelerated server is a 2U, 4-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications.With support for 4 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable Hybrid NVMe drives, the GPX PH4-12A1-4GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads. The GPX PH4-12A1-4GPU GPU-accelerated server is a 2U, 4-GPU system designed to\r\nsupport highly parallel workloads. Users can expect strong performance from this\r\nsystem in virtualization, visual computing, HPC, and AI applications. With support for 4 full-width GPUs, Ampere Altra ARM series processors, \r\n2TB of DRAM, and four hot-swappable Hybrid NVMe drives, the GPX PH4-12A1-4GPU\r\nis the ideal high-performance GPU-accelerated server for highly parallel HPC and\r\nAI workloads.", + "use_cases": [ + "AI / Deep Learning Training", + "AI Inference", + "High-Performance Computing" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2 SFP28 25GbE", + "Power": "2000W Redundant Titanium Level High-efficiency Power Supplies (1+1)", + "External Bays": "4x Hybrid Hot-swap+ 12x SAS/SATA Hot-swap" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Healthcare & Life Sciences", + "Aerospace / Defense" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/18568-0052.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 4GPU Server - 4x Hot-Swap 2.5\" NVMe - 2x 25GbE SFP28 - 2000W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/16949-0027.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/18226-0099.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17908-0053.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=02/16704-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17963-0039.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PT10-11A1", + "image_url": "https://www.thinkmate.com/thumb?g=27/17204-0050.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "1OCP 2.0 x8", + "Redundant Power", + "NVMe", + "1PCIe 4.0 x16" + ], + "price": "$5,434.00", + "product_data": { + "title": "RAX PT10-11A1", + "description": "The RAX PT10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PT10-11A1 is a single socket, Ampere Altra-based server with six 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4. The RAX PT10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PT10-11A1 is a single socket, Ampere Altra-based server with six 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "650W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "10 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=27/17204-0050.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 1U - 6x 2.5\" SATA + 4x U.2 NVMe - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 650W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PN10-11A1", + "image_url": "https://www.thinkmate.com/thumb?g=26/17367-0086.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "22.5\" SATA Hot-Swap", + "1OCP 2.0 x8", + "Redundant Power", + "NVMe", + "82.5\" NVMe Hot-Swap" + ], + "price": "$5,847.00", + "product_data": { + "title": "RAX PN10-11A1", + "description": "The RAX PN10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PN10-11A1 is a single socket, Ampere Altra-based server with two 2.5 hot-swappable SATA drive bays, eight 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4. The RAX PN10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PN10-11A1 is a single socket, Ampere Altra-based server with two 2.5 hot-swappable SATA drive bays, eight 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "2 x 850W redundant PSUs 80 PLUS Platinum certified", + "External Bays": "10 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/17367-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 1U - 8x U.2 NVMe + 2x 2.5\" SATA - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 1100W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PT8-12A1", + "image_url": "https://www.thinkmate.com/thumb?g=03/17214-0017.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "2M.2", + "4PCIe 4.0 x8 LP", + "Redundant Power", + "2PCIe 4.0 x16 LP", + "82.5\" SATA Hot-Swap" + ], + "price": "$5,614.00", + "product_data": { + "title": "RAX PT8-12A1", + "description": "The RAX PT8-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PT8-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, and six PCIe Gen4 slots. The RAX PT8-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PT8-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, and six PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "800W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "8 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/17214-0017.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 8x 2.5\" SATA - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 800W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PT12-12A1", + "image_url": "https://www.thinkmate.com/thumb?g=12/17215-0008.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "2PCIe 4.0 x8 LP", + "Redundant Power", + "NVMe", + "2PCIe 4.0 x16 LP" + ], + "price": "$6,102.00", + "product_data": { + "title": "RAX PT12-12A1", + "description": "The RAX PT12-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PT12-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and four PCIe Gen4 slots. The RAX PT12-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PT12-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and four PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "800W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "12 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/17215-0008.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 8x 2.5\" SATA + 4x U.2 NVMe - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 800W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["Air Freight Charge"] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PH12-21A1", + "image_url": "https://www.thinkmate.com/thumb?g=10/17875-0070.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "122.5\" NVMe Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "NVMe", + "2PCIe 4.0 x16" + ], + "price": "$9,750.00", + "product_data": { + "title": "RAX PH12-21A1", + "description": "The RAX PH12-21A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PH12-21A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4. The RAX PH12-21A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PH12-21A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "1300W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "6x 2.5\" SATA/NVMe Hybrid + 6x 2.5\" NVMe hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/17875-0070.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 1U - 2x NVMe + 8x SATA - Dual 1 Gigabit Ethernet - 1300W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/20156-0066.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)", + "Gigabyte 3-Piece Rail Kit - 25.9 - 31.5 inches", + "Gigabyte 3-Piece Rail Kit with Cable Management Arm" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PN24-22A1", + "image_url": "https://www.thinkmate.com/thumb?g=22/17368-0048.png|w=200|h=120", + "details": [ + "Ampere Altra", + "8 TBDDR4 ECC RDIMM", + "42.5\" SATA Hot-Swap", + "4PCIe 4.0 x16 LP", + "Redundant Power", + "NVMe", + "242.5\" NVMe Hot-Swap" + ], + "price": "$10,607.00", + "product_data": { + "title": "RAX PN24-22A1", + "description": "The RAX PN24-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PN24-22A1 is a dual socket, Ampere Altra-based server with twenty-four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4. The RAX PN24-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PN24-22A1 is a dual socket, Ampere Altra-based server with twenty-four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "1600W 80 Plus Platinum (1+1) Redundant Power Supply" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/17368-0048.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 24x NVMe - Dual 1 Gigabit Ethernet - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/20156-0066.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["Air Freight Charge"] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PH12-22A1", + "image_url": "https://www.thinkmate.com/thumb?g=29/17369-0030.png|w=200|h=120", + "details": [ + "Ampere Altra", + "8 TBDDR4 ECC RDIMM", + "63.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16 LP", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$10,311.00", + "product_data": { + "title": "RAX PH12-22A1", + "description": "The RAX PH12-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PH12-22A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4. The RAX PH12-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PH12-22A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "2000W 80 Plus Platinum (1+1) Redundant Power Supply" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/17369-0030.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 6x NVMe + 6x SATA - Dual 1 Gigabit Ethernet - 2000W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/20156-0066.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + } + ], + "type": "server" + }, + { + "_id": { + "$oid": "68227c5cc7f68c7e1f4ca50c" + }, + "name": "RAX", + "category": "Rackmount Servers", + "description": "General Purpose Rackmount Servers featuring industry leading performance, efficiency and value.", + "url": "https://www.thinkmate.com/systems/servers/rax", + "nav_image": "https://www.thinkmate.com/wwwinc/static/menu/server-rax.png", + "category_image": "https://www.thinkmate.com/cdn/landing-assets/servers/server_rax.png", + "server_title": "Powerful, Reliable, and Scalable Custom Rackmount Servers for Data Center and Business Computing", + "server_details": "With a wide variety of form factors and configurations available, Felcloud RAX rackmount servers are the perfect solution for data center computing. Felclouds wide variety of custom servers can be tailored to meet all your business computing needs. || Our rackmount servers are designed to fit in a standard 19-inch rack, making them perfect for data center computing. They are built to handle heavy workloads and offer a high level of reliability and uptime. With multiple CPU, RAM, and storage options, our high-performance servers are perfect for enterprise businesses with demanding workloads, regardless of scale or density required. || We also offer custom servers, built to your specific requirements, which can be tailored to meet the unique needs of your business. Whether you need a custom configuration for a specific application or a unique form factor, we can help. || For small and medium-sized businesses, we offer budget-friendly rackmount servers that are designed with a single CPU and limited RAM and storage options. These servers are perfect for hosting websites, email, and other business-critical applications. || No matter what your business needs, our rackmount servers are designed to provide the power, reliability, and scalability you need for data center computing. Browse our selection today and find the perfect server for your needs. If you have any questions, our team of experts is available to assist you with custom servers built to your specific requirements.", + "server_highlights": "RAX Rackmount Server Highlights:", + "server_highlights_detail": [ + "Wide variety of rackmount server options, including custom servers built to your specific requirements", + "1U and 2U form factors available with single and dual-socket architecture options", + "High-performance options for data center computing with support for multiple CPU, RAM and storage configurations", + "Budget-friendly options for small businesses with single CPU and limited RAM and storage configurations", + "Rackmount design for standardized organization and efficient footprint in data centers", + "Technical support available to ensure smooth deployment and operation" + ], + "server_section_image": "https://www.thinkmate.com/cdn/landing-assets/rax/rax.png", + "products": [ + { + "product_name": "XS4-11E3", + "image_url": "https://www.thinkmate.com/thumb?g=04/17518-0084.png|w=200|h=120", + "details": [ + "Intel Xeon E-2300", + "128 GBDDR4 ECC UDIMM", + "1M.2", + "1PCIe 4.0 x8", + "Redundant Power", + "1PCIe 4.0 x16", + "43.5\" SATA/SAS Hot-Swap" + ], + "price": "$1,576.00", + "product_data": { + "title": "RAX XS4-11E3", + "description": "The RAX XS4-11E3 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance to support everyday business use cases, or as a part or a larger data center, cloud, or HPC deployment. The RAX XS4-1123 provides a high-performance Intel Xeon Scalable processor, four hot-swappable drive bays that support SATA/SAS storage, up to two PCIe 4.0 slots, and dual on-board LAN.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "Intel Xeon E-2300", + "Memory Technology": "DDR4 ECC Unbuffered", + "Form Factor": "1U", + "Ethernet": "2 x Intel I210AT + 1 x Mgmt LAN", + "Power": "Single 350W 80 PLUS Gold Power Supply", + "External Bays": "4x 3.5\" Hot-Swap drive bay" + }, + "industries": [ + "Energy", + "Engineering", + "Financial Services", + "Aerospace / Defense" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/17518-0084.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C252 Chipset - 1U - 4x 3.5\" SATA/SAS - 1x M.2 NVMe - Dual 1 Gigabit Ethernet (RJ45) - 350W Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/17057-0033.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Intel Xeon E-2300 Processor Series", + "config": [ + "Quad-Core Intel Xeon E-2314 Processor 2.8GHz 8MB Cache (65W)", + "Quad-Core Intel Xeon E-2334 Processor 3.4GHz 8MB Cache (65W)", + "Six-Core Intel Xeon E-2336 Processor 2.9GHz 12MB Cache (65W)", + "Eight-Core Intel Xeon E-2378 Processor 2.6GHz 16MB Cache (65W)" + ] + }, + { + "name": "Intel Xeon E-2300 Processor Series with Intel UHD P750 Graphics", + "config": [ + "Quad-Core Intel Xeon E-2324G Processor 3.1GHz 8MB Cache (65W)", + "Quad-Core Intel Xeon E-2374G Processor 3.7GHz 8MB Cache (80W)", + "Six-Core Intel Xeon E-2356G Processor 3.2GHz 12MB Cache (80W)", + "Six-Core Intel Xeon E-2386G Processor 3.5GHz 12MB Cache (95W)", + "Eight-Core Intel Xeon E-2378G Processor 2.8GHz 16MB Cache (80W)", + "Eight-Core Intel Xeon E-2388G Processor 3.2GHz 16MB Cache (95W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/17086-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC UDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC UDIMM" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 25 Gigabit Ethernet Adapter", + "config": [ + "Mellanox ConnectX-5 EN 25 Gigabit Ethernet Adapter - PCIe 3.0 x8 - 2x SFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=05/15770-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "ASUS Trusted Platform Module (TPM-SPI) Nuvoton NPCT750 TCG v2.0" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/19340-0070.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/19016-0001.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["ASUS Standard Friction Rail Kit (Included)"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Client", + "config": [ + "Microsoft Windows 11 Professional for Workstations (DSP)" + ] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH4-11E9", + "image_url": "https://www.thinkmate.com/thumb?g=16/18301-0020.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "43.5\" SATA/SAS/NVMe Hot-Swap", + "2AIOM", + "Redundant Power", + "NVMe", + "2PCIe 5.0 x16" + ], + "price": "$5,601.00", + "product_data": { + "title": "RAX QH4-11E9", + "description": "The Felcloud RAX QH4-11E9 is a 1U rackmount server solution. The RAX QH4-11E4 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QH4-11E9 provides up to four 2.5 or 3.5 hot-swappable drive bays for NVMe/SATA/SAS storage and two PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QH4-11E9 is a 1U rackmount server solution. The RAX QH4-11E4 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QH4-11E9 provides up to four 2.5 or 3.5 hot-swappable drive bays for NVMe/SATA/SAS storage and two PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Via Slim-AIOM", + "Power": "1U 800W/ 860W Redundant Power Supply", + "External Bays": "4x 3.5\" hot-swap NVMe/SATA/SAS drive bays (4x 3.5\" NVMe hybrid; 4x 3.5\" NVMe dedicated)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=16/18301-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 1U - 4x NVMe/SATA - 2x AIOM - 860W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9455P Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9555P Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9655P Processor 96-core 2.6GHz 384MB Cache (400W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9565 Processor 72-core 3.15GHz 384MB Cache (400W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9825 Processor 144-core 2.2GHz 384MB Cache (390W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "128GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT12-11E9", + "image_url": "https://www.thinkmate.com/thumb?g=00/18302-0070.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "102.5\" SATA/SAS/NVMe Hot-Swap", + "2AIOM", + "Redundant Power", + "NVMe", + "2PCIe 5.0 x16" + ], + "price": "$5,910.00", + "product_data": { + "title": "RAX QT12-11E9", + "description": "The Felcloud RAX QT12-11E9 is a 1U rackmount server solution. The RAX QT12-11E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QT12-11E9 provides up to twelve 2.5 hot-swappable drive bays for SATA/SAS storage and two PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QT12-11E9 is a 1U rackmount server solution. The RAX QT12-11E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QT12-11E9 provides up to twelve 2.5 hot-swappable drive bays for SATA/SAS storage and two PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Via Slim-AIOM", + "Power": "1U 800W/ 860W Redundant Power Supply", + "External Bays": "10x 2.5\" hot-swap NVMe/SATA/SAS drive bays (10x 2.5\" NVMe hybrid; 10x 2.5\" NVMe dedicated) U.2 drive support" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/18302-0070.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 1U - 10x NVMe/SATA - 2x AIOM - 860W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9455P Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9555P Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9655P Processor 96-core 2.6GHz 384MB Cache (400W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9565 Processor 72-core 3.15GHz 384MB Cache (400W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9825 Processor 144-core 2.2GHz 384MB Cache (390W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "128GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/16678-0053.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH12-11E4", + "image_url": "https://www.thinkmate.com/thumb?g=12/18470-0037.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "42.5\" SATA/SAS/NVMe Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "2PCIe 5.0 x16", + "82.5\" SATA/SAS Hot-Swap" + ], + "price": "$5,855.00", + "product_data": { + "title": "RAX QH12-11E4", + "description": "The Felcloud RAX QH12-11E4 is a 1U rackmount server solution. The RAX QH12-11E4 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QH12-11E4 provides up to twelve 2.5 hot-swappable drive bays for SATA/SAS/NVMe storage and two PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QH12-11E4 is a 1U rackmount server solution. The RAX QH12-11E4 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QH12-11E4 provides up to twelve 2.5 hot-swappable drive bays for SATA/SAS/NVMe storage and two PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9005 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Single-Port Intel i210-AT Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 800W AC-DC Power Supply, 80 PLUS Platinum", + "External Bays": "4 x 2.5-inch hot-swap SAS3/SATA3/NVMe + 8 x 2.5-inch hot-swap SAS3/SATA3 drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/18470-0037.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9005 Series - 1U - 8x 2.5\" SAS/SATA + 4x 2.5\" Hybrid - 1x M.2 NVMe - Single 1 Gigabit Ethernet RJ45 - 1300W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QN12-11E9", + "image_url": "https://www.thinkmate.com/thumb?g=22/18319-0017.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "122.5\" NVMe Hot-Swap", + "1AIOM", + "Redundant Power", + "NVMe", + "3PCIe 5.0 x16" + ], + "price": "$10,024.00", + "product_data": { + "title": "RAX QN12-11E9", + "description": "The Felcloud RAX QN12-11E9 is a 1U rackmount server solution. The RAX QN12-11E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QN12-11E9 provides up to twelve 2.5 hot-swappable drive bays for NVMe storage and three PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QN12-11E9 is a 1U rackmount server solution. The RAX QN12-11E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QN12-11E9 provides up to twelve 2.5 hot-swappable drive bays for NVMe storage and three PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Via AIOM", + "Power": "1U 800W/1200W Redundant Titanium CRPS w/PMBus power supply", + "External Bays": "8x 2.5\" hot-swap NVMe/SATA/SAS drive bays (Up to 12x 2.5\" hot-swap NVMe/SATA/SAS support with additional parts)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/18319-0017.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 1U - 10x NVMe/SATA/SAS - 1x AIOM - 1000W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/18277-0069.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9455P Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9655P Processor 96-core 2.6GHz 384MB Cache (400W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "128GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X710-AT2 - PCI-E 3.0 x4 - AOC-ATGC-i2TM", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-PWEX-1136-40 - MicroHi ,(2s2 to 2s4) P3.0, 40cm, 10A/pin,16AW G, cable", + "Supermicro CBL-MCIO-1342M5FRFB - MCIO x8 (STR to STR), FFC, Bundled 34+42cm, 30AWG, RoHS", + "Supermicro CBL-MCIO-1345M5FLFB - MCIO x8(STR/LF to STR), 37/45cm,bundle FFC,30#,RoHS", + "Supermicro CBL-MCIO-1361M5FLFB - MCIO x8(STR/LF to STR), 53/61cm,bundle FFC,30#,RoHS", + "Supermicro BPN-NVME5-HS119N-S4R - 1U 4-slot backplane, 4x SAS3/SATA3/NVME5 X13 Hyper-S,HF,RoHS", + "Supermicro MCP-220-00178-0B - 2.5 thin profile drive tray, Orange tab (for hotswap NVMe drive)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH12-12E9", + "image_url": "https://www.thinkmate.com/thumb?g=12/18303-0019.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "123.5\" SATA/SAS/NVMe Hot-Swap", + "4PCIe 5.0 x16", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$6,456.00", + "product_data": { + "title": "RAX QH12-12E9", + "description": "The Felcloud RAX QH12-12E9 is a 2U rackmount server solution. The RAX QH12-12E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QH12-12E9 provides up to twelve 2.5 or 3.5 hot-swappable drive bays for SATA/SAS/NVMe storage and three PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QH12-12E9 is a 2U rackmount server solution. The RAX QH12-12E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QH12-12E9 provides up to twelve 2.5 or 3.5 hot-swappable drive bays for SATA/SAS/NVMe storage and three PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Via Slim-AIOM", + "Power": "1200W Redundant Titanium Level power supplies", + "External Bays": "12x 3.5\" hot-swap NVMe/SATA/SAS drive bays (4x 2.5\" NVMe hybrid) (12 SATA by default)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/18303-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 12x NVMe/SAS/SATA - 2x AIOM - 1200W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9554P Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9455P Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9555P Processor 64-core 3.2GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "128GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "2TB SAS3 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/17876-0089.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Instinct GPUs", + "config": [ + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling", + "NVIDIA L40 ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ada Lovelace)", + "config": [ + "NVIDIA RTX 6000 Ada Generation - 48GB GDDR6 ECC - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT24-12E9", + "image_url": "https://www.thinkmate.com/thumb?g=28/18321-0058.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "242.5\" SATA/SAS Hot-Swap", + "1AIOM", + "Redundant Power", + "3PCIe 5.0 x16", + "2PCIe 5.0 x8" + ], + "price": "$10,739.00", + "product_data": { + "title": "RAX QT24-12E9", + "description": "The Felcloud RAX QT24-12E9 is a 2U rackmount server solution. The RAX QT24-12E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QT24-12E9 provides up to twenty four SAS/SATA drives, and five PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QT24-12E9 is a 2U rackmount server solution. The RAX QT24-12E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QT24-12E9 provides up to twenty four SAS/SATA drives, and five PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Via AIOM", + "Power": "1600W Redundant Titanium Level power supplies", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18321-0058.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 24x NVMe/SAS/SATA - 1x AIOM - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/18277-0069.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9554P Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9455P Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9555P Processor 64-core 3.2GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "128GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 10/25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16007-0024.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-SAST-1296F-100 - Slimline x8 (LE) to 2x Slimline x4 (STR),FFC,96/96CM", + "Supermicro CBL-MCIO-1335M5R - MCIO x8 (RA to STR),35CM,32AWG,RoHS", + "Supermicro CBL-MCIO-1245M5R - MCIO x8 (RA to STR),45cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1245M5-Z - MCIO x8 (STR to STR),45cm,30AWG,RoHS", + "Supermicro CBL-GNZ4-1227M5YRR16 - GENZ 4C STR to 2 MCIO x8 RA/RA 27/16cm", + "Supermicro CBL-PWEX-1136YB-25 - MicroHi(2x4 to 2x2Y),PH3.0,25/25cm,YRB,8.5A/p,18AWG", + "Supermicro CBL-CDAT-1062 - PicoBlade 1.25, 1x4 to 1x4,SB,45cm,3x 26AWG,RoHS", + "Supermicro CBL-SAST-1264F-100 - Slimline SAS x8 (STR) to 2x Slimline SAS x4 (STR) SFF-8654, FFC, 64/64 cm", + "Supermicro CBL-SAST-1276F-100 - Cable Slimline x8 (LE) to 2x Slimline x4 (STR)", + "Supermicro MCP-240-21908-0N - Riser Bracket(4-slot) for RSC-H2-6888G5L in CSE-HS219/HS829", + "Supermicro MCP-240-21108-0N - Riser Bracket(2-slot) for RSC-H-68G5", + "Supermicro MCP-120-82927-0N - Middle riser support bracket", + "Supermicro RSC-H2-6888G5L - 2U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 2x PCIe 5.0 X8", + "Supermicro RSC-H-68G5 - 1U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 1x PCIe 5.0 X8" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QN24-12E9", + "image_url": "https://www.thinkmate.com/thumb?g=28/18321-0058.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "242.5\" NVMe Hot-Swap", + "1AIOM", + "Redundant Power", + "NVMe", + "1PCIe 5.0 x16" + ], + "price": "$10,359.00", + "product_data": { + "title": "RAX QN24-12E9", + "description": "The Felcloud RAX QN24-12E9 is a 2U rackmount server solution. The RAX QN24-12E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QN24-12E9 provides up to twenty four NVMe drives, and one PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QN24-12E9 is a 2U rackmount server solution. The RAX QN24-12E9 features a single-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QN24-12E9 provides up to twenty four NVMe drives, and one PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Via AIOM", + "Power": "1600W Redundant Titanium Level power supplies", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18321-0058.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 24x NVMe/SAS/SATA - 1x AIOM - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/18277-0069.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9554P Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9455P Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9555P Processor 64-core 3.2GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "128GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16007-0024.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-MCIO-1330M5 - MCIO (x8 to x8), STR, 30cm,G5,32AWG, RoHS,RoHS", + "Supermicro CBL-MCIO-1255M5 - MCIO x8 (STR to STR),55CM,30AWG", + "Supermicro CBL-MCIO-1221M5 - [NR] MCIO x8 (STR to STR),21cm,30#,G5,85Ohm,RoHS", + "Supermicro CBL-MCIO-1260M5 - MCIO (x8 to x8) STR,60CM,85 OHM", + "Supermicro CBL-MCIO-1245M5-Z - MCIO x8 (STR to STR),45cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1250M5-Z - MCIO x8 (STR to STR),50cm,30AWG", + "Supermicro CBL-MCIO-1218M5-1 - MCIO x8 (STR to STR),18CM,85OHM,RoHS", + "Supermicro CBL-GNZ4-1265M5Y-X - GENZ 4C to 2 MCIO x8,STR,65/65cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1326M5 - MCIO (x8 to x8) STR,26CM,85 OHM", + "Supermicro CBL-MCIO-1340M5R - MCIO x8 (STR to RA),40CM,32AWG,HF,RoHS", + "Supermicro MCP-240-21908-0N - Riser Bracket(4-slot) for RSC-H2-6888G5L in CSE-HS219/HS829", + "Supermicro RSC-H-6G5L - 1U LHS Hyper riser card with one PCIe 5.0 X16 slot" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH4-21E4", + "image_url": "https://www.thinkmate.com/thumb?g=06/19608-0089.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "43.5\" SATA/SAS/NVMe Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "NVMe", + "2PCIe 5.0 x16" + ], + "price": "$8,193.00", + "product_data": { + "title": "RAX QH4-21E4", + "description": "The Felcloud RAX QH4-21E4 is a 1U rackmount server solution. The RAX QS4-21E4 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QH4-21E4 provides up to four 2.5 or 3.5 hot-swappable drive bays that support NVMe/SATA storage and two PCIe Gen5 slots. This AMD EPYC server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QH4-21E4 is a 1U rackmount server solution. The RAX QS4-21E4 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QH4-21E4 provides up to four 2.5 or 3.5 hot-swappable drive bays that support NVMe/SATA storage and two PCIe Gen5 slots. This AMD EPYC server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9005 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply80 PLUS Titanium", + "External Bays": "4 x 3.5-inch hot-swap SAS3/SATA3/NVMe drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/19608-0089.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9005 Series - 1U - 4x 3.5\" Hybrid - 2x M.2 NVMe - Dual 1 Gigabit Ethernet (RJ45) - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "2TB SAS3 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH8-21E4", + "image_url": "https://www.thinkmate.com/thumb?g=25/19614-0035.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "42.5\" SATA/SAS/NVMe Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "NVMe", + "2PCIe 5.0 x16" + ], + "price": "$8,128.00", + "product_data": { + "title": "RAX QH8-21E4", + "description": "The Felcloud RAX QH8-21E4 is a 1U rackmount server solution. The RAX QH8-21E4 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QH8-21E4 supports 4x SAS/SATA 3.5-inch drives and 4x hybrid NVMe/SATA 2.5-inch drives and two PCIe Gen5 slots. This AMD EPYC server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QH8-21E4 is a 1U rackmount server solution. The RAX QH8-21E4 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QH8-21E4 supports 4x SAS/SATA 3.5-inch drives and 4x hybrid NVMe/SATA 2.5-inch drives and two PCIe Gen5 slots. This AMD EPYC server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply80 PLUS Platinum", + "External Bays": "Supports 4x 3.5-inch hot-swap NVMe Gen5/SAS4/SATA3 drivesSupports 4x 2.5-inch NVMe Gen5/SAS4/SATA3 hot-swap 9.5mm SSDs" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/19614-0035.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9005 - 1U - 4x 3.5\" Hybrid + 4x 2.5\" Hybrid - 2x M.2 - Dual GbE (RJ45) - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "2TB SAS3 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=17/15083-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT12-21E9", + "image_url": "https://www.thinkmate.com/thumb?g=28/18304-0051.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "2M.2", + "1AIOM", + "Redundant Power", + "3PCIe 5.0 x16", + "122.5\" SATA/SAS Hot-Swap" + ], + "price": "$9,919.00", + "product_data": { + "title": "RAX QT12-21E9", + "description": "The Felcloud RAX QT12-21E9 is a 1U rackmount server solution. The RAX QT12-21E9 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QT12-21E9 provides up to twelve 2.5 hot-swappable drive bays that support SATA/SAS storage and two PCIe Gen5 slots. This AMD EPYC server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QT12-21E9 is a 1U rackmount server solution. The RAX QT12-21E9 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QT12-21E9 provides up to twelve 2.5 hot-swappable drive bays that support SATA/SAS storage and two PCIe Gen5 slots. This AMD EPYC server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Via Slim-AIOM", + "Power": "1U 800W/1200W Redundant Titanium CRPS w/PMBus power supply", + "External Bays": "8x 2.5\" hot-swap NVMe/SATA/SAS drive bays (Up to 12x 2.5\" hot-swap NVMe/SATA/SAS support with additional parts)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18304-0051.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 1U - 12x Hot-swap - 1x AIOM - 1200W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "96GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16667-0025.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAD Controllers", + "config": [ + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-SAST-1262LP-100 - Slimline x8 (STR) to SlimLineLP x4 STR,98CM,100Ohm,RoHS", + "Supermicro CBL-SAST-1273LP-100 - Slimline x8 (STR) to 2x SlimLLP x4 STR,69/83CM,100Ohm,R", + "Supermicro CBL-PWEX-1136-40 - MicroHi ,(2s2 to 2s4) P3.0, 40cm, 10A/pin,16AW G, cable", + "Supermicro CBL-CDAT-1062Y-45 - Picoblade 1.25 (1x4 to 2x 1x4),45cm,26AWG", + "Supermicro BPN-NVME5-HS119N-S4R - 1U 4-slot backplane, 4x SAS3/SATA3/NVME5 X13 Hyper-S,HF,RoHS", + "Supermicro MCP-220-00178-0B - 2.5 thin profile drive tray, Orange tab (for hotswap NVMe drive)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QN12-21E9", + "image_url": "https://www.thinkmate.com/thumb?g=28/18304-0051.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "122.5\" NVMe Hot-Swap", + "1AIOM", + "Redundant Power", + "NVMe", + "3PCIe 5.0 x16" + ], + "price": "$9,789.00", + "product_data": { + "title": "RAX QN12-21E9", + "description": "The Felcloud RAX QN12-21E9 is a 1U rackmount server solution. The RAX QN12-21E9 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QN12-21E9 provides up to twelve 2.5 hot-swappable drive bays for NVMe storage and three PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QN12-21E9 is a 1U rackmount server solution. The RAX QN12-21E9 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QN12-21E9 provides up to twelve 2.5 hot-swappable drive bays for NVMe storage and three PCIe Gen5 slots. This AMD EPYC server provides general purpose performance optimization to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Via Slim-AIOM", + "Power": "1U 800W/1200W Redundant Titanium CRPS w/PMBus power supply", + "External Bays": "8x 2.5\" hot-swap NVMe/SATA/SAS drive bays (Up to 12x 2.5\" hot-swap NVMe/SATA/SAS support with additional parts)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18304-0051.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 1U - 12x Hot-swap - 1x AIOM - 1200W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "96GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-PWEX-1136-40 - MicroHi ,(2s2 to 2s4) P3.0, 40cm, 10A/pin,16AW G, cable", + "Supermicro CBL-MCIO-1242M5REL - MCIO x8 (RE to LE),42cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1356M5FHB - 2 MCIO x8 (FL to STR),FFC 1/2W,56/43cm bundle,30AWG,RoHS", + "Supermicro CBL-MCIO-1359M5FRF - MCIO x8 (FR to STR), FFC,59cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1343M5FRF - MCIO x8 (FR to STR), FFC,43cm,30AWG,RoHS", + "Supermicro CBL-MCIO-1352M5FRF - MCIO x8 (FR to STR), FFC,52cm,30AWG,RoHS", + "Supermicro CBL-CDAT-1062Y-45 - Picoblade 1.25 (1x4 to 2x 1x4),45cm,26AWG", + "Supermicro BPN-NVME5-HS119N-S4R - 1U 4-slot backplane, 4x SAS3/SATA3/NVME5 X13 Hyper-S,HF,RoHS", + "Supermicro MCP-220-00178-0B - 2.5 thin profile drive tray, Orange tab (for hotswap NVMe drive)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS12-22E4", + "image_url": "https://www.thinkmate.com/thumb?g=00/18252-0040.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "22.5\" SATA Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "4PCIe 5.0 x16", + "2PCIe 5.0 x8" + ], + "price": "$8,861.00", + "product_data": { + "title": "RAX QS12-22E4", + "description": "The RAX QS12-22E4 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases, or can function as a part of a larger HPC, cloud, or data center deployment.The RAX QS12-22E4 is a dual socket, AMD EPYC-based server with twelve 3.5 and two 2.5 hot-swappable SATA drive bays, and two PCIe Gen5 slots. The RAX QS12-22E4 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases, or can function as a part of a larger HPC, cloud, or data center deployment. The RAX QS12-22E4 is a dual socket, AMD EPYC-based server with twelve 3.5 and two 2.5 hot-swappable SATA drive bays, and two PCIe Gen5 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply", + "External Bays": "12x 3.5-inch hot-swap SAS3/SATA3 drives2x 2.5-inch hot-swap SAS3/SATA3 drives (rear)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ] + } + }, + { + "product_name": "QE12-22E4", + "image_url": "https://www.thinkmate.com/thumb?g=28/18255-0056.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "123.5\" SATA/SAS Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "6PCIe 5.0 x16", + "22.5\" SATA Hot-Swap" + ], + "price": "$9,277.00", + "product_data": { + "title": "RAX QE12-22E4", + "description": "The Felcloud RAX QE12-22E4 is a 2U rackmount server solution. The RAX QE12-22E4 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QE12-22E4 provides up to twelve 2.5 or 3.5 hot-swappable drives for SATA/SAS storage and six PCIe Gen5 slots. This AMD EPYC server provides high-capacity processing to support data-intensive business use cases or can function as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QE12-22E4 is a 2U rackmount server solution. The RAX QE12-22E4 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QE12-22E4 provides up to twelve 2.5 or 3.5 hot-swappable drives for SATA/SAS storage and six PCIe Gen5 slots. This AMD EPYC server provides high-capacity processing to support data-intensive business use cases or can function as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply80 PLUS Platinum", + "External Bays": "12x 3.5-inch hot-swap SAS/SATA drives (front)2x 2.5-inch hot-swap SAS/SATA drives (rear)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ] + } + }, + { + "product_name": "QT16-22E4", + "image_url": "https://www.thinkmate.com/thumb?g=02/18260-0076.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "2M.2", + "2OCP 3.0 x16", + "Redundant Power", + "4PCIe 5.0 x16", + "162.5\" SATA/SAS Hot-Swap" + ], + "price": "$8,811.00", + "product_data": { + "title": "RAX QT16-22E4", + "description": "The RAX QT16-22E4 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high-capacity onboard storage to support data-intensive use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX QT16-22E4 is a dual socket, AMD EPYC-based server with sixteen 2.5 hot-swappable SATA drive bays, and four PCIe Gen5 slots. The RAX QT16-22E4 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high-capacity onboard storage to support data-intensive use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX QT16-22E4 is a dual socket, AMD EPYC-based server with sixteen 2.5 hot-swappable SATA drive bays, and four PCIe Gen5 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply", + "External Bays": "16x 2.5-inch hot-swap SAS3/SATA3 drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/18260-0076.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 16x 2.5\" SAS/SATA - 2x M.2 NVMe - Dual GbE (RJ45) - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 16, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT24-22E9", + "image_url": "https://www.thinkmate.com/thumb?g=07/18306-0074.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "242.5\" SATA/SAS Hot-Swap", + "1AIOM", + "Redundant Power", + "3PCIe 5.0 x16", + "2PCIe 5.0 x8" + ], + "price": "$11,491.00", + "product_data": { + "title": "RAX QT24-22E9", + "description": "The Felcloud RAX QT24-22E9 is a 2U rackmount server solution. The RAX QT24-22E9 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads.The RAX QT24-22E9 provides up to twenty-four hot-swappable drives for SATA/SAS storage, and five PCIe Gen5 slots. This AMD EPYC server provides high-capacity processing to support data-intensive business use cases or can function as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX QT24-22E9 is a 2U rackmount server solution. The RAX QT24-22E9 features a dual-socket motherboard based on AMD EPYC™ 9004 Series processors designed to support a variety of workloads. The RAX QT24-22E9 provides up to twenty-four hot-swappable drives for SATA/SAS storage, and five PCIe Gen5 slots. This AMD EPYC server provides high-capacity processing to support data-intensive business use cases or can function as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Via Slim-AIOM", + "Power": "1U 1000W/1600W Redundant single output power supply", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/18306-0074.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 24x Hot-swap - 1x AIOM - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)", + "AMD EPYC™ 9684X Processor 96-core 2.55GHz 1152MB Cache (400W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9475F Processor 48-core 3.65GHz 256MB Cache (400W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9565 Processor 72-core 3.15GHz 384MB Cache (400W)", + "AMD EPYC™ 9575F Processor 64-core 3.3GHz 256MB Cache (400W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9825 Processor 144-core 2.2GHz 384MB Cache (390W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "96GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16667-0025.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-SAST-1296F-100 - Slimline x8 (LE) to 2x Slimline x4 (STR),FFC,96/96CM", + "Supermicro CBL-MCIO-1222AM5 - MCIOx8 (STR to STR),22cm,LNRV,30AWG", + "Supermico CBL-MCIO-1226AM5 - MCIOx8 (STR to STR),26cm,LNRV,30AWG", + "Supermicro CBL-GNZ4-1227M5YRR16 - GENZ 4C STR to 2 MCIO x8 RA/RA 27/16cm", + "Supermicro CBL-MCIO-1226M5R - MCIO x8 (STR to RA),26CM,85OHM", + "Supermicro CBL-MCIO-1233M5R - MCIO x8 (STR to RA),33cm,85OHM", + "Supermicro CBL-PWEX-1136YB-25 - MicroHi(2x4 to 2x2Y),PH3.0,25/25cm,YRB,8.5A/p,18AWG", + "Supermicro CBL-PWEX-1136-40 - MicroHi ,(2s2 to 2s4) P3.0, 40cm, 10A/pin,16AW G, cable", + "Supermicro CBL-CDAT-1062 - PicoBlade 1.25, 1x4 to 1x4,SB,45cm,3x 26AWG,RoHS", + "Supermicro CBL-SAST-1264F-100 - Slimline SAS x8 (STR) to 2x Slimline SAS x4 (STR) SFF-8654, FFC, 64/64 cm", + "Supermicro CBL-SAST-1276F-100 - Cable Slimline x8 (LE) to 2x Slimline x4 (STR)", + "Supermicro MCP-240-21908-0N - Riser Bracket(4-slot) for RSC-H2-6888G5L in CSE-HS219/HS829", + "Supermicro MCP-240-21108-0N - Riser Bracket(2-slot) for RSC-H-68G5", + "Supermicro MCP-120-82927-0N - Middle riser support bracket", + "Supermicro RSC-H2-6888G5L - 2U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 2x PCIe 5.0 X8", + "Supermicro RSC-H-68G5 - 1U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 1x PCIe 5.0 X8" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/9945-0023.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH24-22E9", + "image_url": "https://www.thinkmate.com/thumb?g=07/18306-0074.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "1.5 TBDDR5 ECC RDIMM", + "202.5\" NVMe Hot-Swap", + "2PCIe 5.0 x8", + "Redundant Power", + "NVMe", + "1PCIe 5.0 x16" + ], + "price": "$10,933.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/18306-0074.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 24x Hot-swap - 1x AIOM - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)", + "AMD EPYC™ 9684X Processor 96-core 2.55GHz 1152MB Cache (400W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9475F Processor 48-core 3.65GHz 256MB Cache (400W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9565 Processor 72-core 3.15GHz 384MB Cache (400W)", + "AMD EPYC™ 9575F Processor 64-core 3.3GHz 256MB Cache (400W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)", + "AMD EPYC™ 9655 Processor 96-core 2.6GHz 384MB Cache (400W)", + "AMD EPYC™ 9745 Processor 128-core 2.4GHz 256MB Cache (400W)", + "AMD EPYC™ 9825 Processor 144-core 2.2GHz 384MB Cache (390W)", + "AMD EPYC™ 9845 Processor 160-core 2.1GHz 320MB Cache (390W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "128GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "6400MHz ECC Registered DDR5 DIMMs", + "config": [ + "32GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "64GB PC5-51200 6400MHz DDR5 ECC RDIMM", + "96GB PC5-51200 6400MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 20, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (240 Devices)", + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 10/25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-KIT-2125HS-TNR-20N - 20 NVME cable kit for AS -2125HS-TNR", + "Supermicro CBL-SAST-1296F-100 - Slimline x8 (LE) to 2x Slimline x4 (STR),FFC,96/96CM", + "Supermicro CBL-MCIO-1232M5 - MCIO x8 (STR to STR),32cm,85OHM", + "Supermicro CBL-GNZ4-1227M5YRR16 - GENZ 4C STR to 2 MCIO x8 RA/RA 27/16cm", + "Supermicro CBL-MCIO-1233M5R - MCIO x8 (STR to RA),33cm,85OHM", + "Supermicro CBL-PWEX-1136YB-25 - MicroHi(2x4 to 2x2Y),PH3.0,25/25cm,YRB,8.5A/p,18AWG", + "Supermicro CBL-PWEX-1136-40 - MicroHi ,(2s2 to 2s4) P3.0, 40cm, 10A/pin,16AW G, cable", + "Supermicro MCP-240-21108-0N - Riser Bracket(2-slot) for RSC-H-68G5", + "Supermicro MCP-120-82927-0N - Middle riser support bracket", + "Supermicro RSC-H-68G5 - 1U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 1x PCIe 5.0 X8" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH24-22E4-EX", + "image_url": "https://www.thinkmate.com/thumb?g=22/18258-0078.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "202.5\" SATA/SAS Hot-Swap", + "2PCIe 5.0 x8", + "Redundant Power", + "NVMe", + "4PCIe 5.0 x16" + ], + "price": "$9,857.00", + "product_data": { + "title": "RAX QH24-22E4-EX", + "description": "The RAX QH24-22E4-EX rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases, or can function as a part of a larger HPC, cloud, or data center deployment.The RAX QH24-22E4-EX is a dual socket, AMD EPYC-based server with twenty 3.5 SATA/SAS and four 2.5 NVMe hot-swappable drive bays, and two PCIe Gen5 slots. The RAX QH24-22E4-EX rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases, or can function as a part of a larger HPC, cloud, or data center deployment. The RAX QH24-22E4-EX is a dual socket, AMD EPYC-based server with twenty 3.5 SATA/SAS and four 2.5 NVMe hot-swappable drive bays, and two PCIe Gen5 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9004 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 2000W AC-DC Power Supply", + "External Bays": "24x 2.5-inch hot-swap drives (front):4x NVMe/SAS3/SATA3, 20x SAS/SATA4x 2.5-inch hot-swap SAS/SATA drives (rear)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/18258-0078.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9004 Series - 2U - 20x 2.5\" SAS/SATA + 4x 2.5\" Hybrid - Expander - 2x M.2 NVMe - Dual GbE (RJ45) - 2000W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 20, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS4-21S4", + "image_url": "https://www.thinkmate.com/thumb?g=22/18542-0079.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4TBDDR5 ECC RDIMM", + "43.5\" SATA/SAS Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "2PCIe 5.0 x16" + ], + "price": "$7,051.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/18542-0079.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 1U - 4x 3.5\" SAS/SATA - Dual 1 Gigabit Ethernet (RJ45) - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "General Purpose 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)", + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)" + ] + }, + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Storage & HCI Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "High Perfomance Computing Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Storage & HCI Optimized 5th Generation Intel Xeon Scalable Processor", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH4-21X4", + "image_url": "https://www.thinkmate.com/thumb?g=05/18400-0043.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "2 TBDDR5 ECC RDIMM", + "43.5\" SATA/SAS/NVMe Hot-Swap", + "2AIOM", + "Redundant Power", + "NVMe", + "2PCIe 5.0 x16" + ], + "price": "$9,615.00", + "product_data": { + "title": "RAX XH4-21X4", + "description": "The Felcloud RAX XH4-21X4 is a 1U rackmount server solution. The RAX XH4-21X4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads.The RAX XH4-21X4 provides up to four 3.5 hot-swappable and two PCIe Gen4 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX XH4-21X4 is a 1U rackmount server solution. The RAX XH4-21X4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads. The RAX XH4-21X4 provides up to four 3.5 hot-swappable and two PCIe Gen4 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "2x 1GbE BaseT with Intel i350-AM2 (optional)4x 1GbE BaseT or 4x 1GbE SFP with Intel i350-AM4 (optional)2x 10GbE BaseT with Intel X550-AT2 (optional)2x 10GbE SFP+ with Intel X710-BM2 (optional)4x 10GbE SFP+ with Intel XL710-BM1 (optional)4x 10GbE RJ45/SFP+ with Intel X710-TM4 (optional)2x 25GbE SFP28 with Broadcom BCM57414 (optional)4x 25GbE RJ45/SFP28 with Mellanox CX-4 Lx EN Intel X550-AT2 (optional)2x 100GbE QSFP28 with Broadcom BCM57508 (optional)2x 10GbE BaseT with Intel Carlsville X710-AT2 (optional)2x 25GbE SFP28 or 2x 25GbE SFP28 with Intel E810-XXVAM2 (optional)2x 100GbE QSFP28 with Mellanox CX-6 (optional)", + "Power": "800W/860W 1U redundant power supply", + "External Bays": "4x 3.5\" hot-swap NVMe/SATA/SAS drive bays (4x 3.5\" NVMe hybrid)(Storage drives require additional cables from the optional parts list.)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=05/18400-0043.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 1U - 4x 3.5\" NVMe/SAS/SATA - 2x M.2 - 2x AIOM - 860W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/17775-0002.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)", + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)" + ] + }, + { + "name": "IoT Optimized / Long Life", + "config": [ + "Intel Xeon Silver 4410T Processor 10-Core 2.7GHz 26.25 MB Cache (150W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5411N Processor 24-Core 1.9GHz 45 MB Cache (165W)", + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "Specialized for IMDB & Analytics", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)" + ] + }, + { + "name": "5th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4509Y Processor 8-Core 2.6GHz 22.5MB Cache (125W)", + "Intel Xeon Silver 4510 Processor 12-Core 2.4GHz 30MB Cache (150W)", + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Silver 4510T Processor 12-Core 2.0GHz 30MB Cache (115W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X710-AT2 - PCI-E 3.0 x4 - AOC-ATGC-i2TM", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - TAA & FIPS - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH8-21S4", + "image_url": "https://www.thinkmate.com/thumb?g=08/18544-0007.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4TBDDR5 ECC RDIMM", + "43.5\" SATA/SAS/NVMe Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "2PCIe 5.0 x16", + "42.5\" SATA/SAS/NVMe Hot-Swap" + ], + "price": "$7,024.00", + "product_data": { + "title": "RAX XH8-21S4", + "description": "The Felcloud RAX XH8-21S4 is a 1U rackmount server solution. The RAX XH8-21S4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads.The RAX XH8-21S4 provides up to four 2.5 hot-swappable drives, four 2.5\" SATA/SAS/NVMe Hot-swappable drives, and two PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX XH8-21S4 is a 1U rackmount server solution. The RAX XH8-21S4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads. The RAX XH8-21S4 provides up to four 2.5 hot-swappable drives, four 2.5\" SATA/SAS/NVMe Hot-swappable drives, and two PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply", + "External Bays": "4 x 3.5-inch hot-swap NVMe/SAS3/SATA3s drives4 x 2.5-inch hot-swap NVMe/SAS3/SATA3 drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/18544-0007.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 1U - 4x 3.5\" Hybrid + 4x 2.5\" Hybrid - Dual 1 Gigabit Ethernet (RJ45) - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "General Purpose 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)", + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)" + ] + }, + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Storage & HCI Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "High Perfomance Computing Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Storage & HCI Optimized 5th Generation Intel Xeon Scalable Processor", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "2TB SAS3 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH12-21X4", + "image_url": "https://www.thinkmate.com/thumb?g=06/18397-0026.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "2 TBDDR5 ECC RDIMM", + "62.5\" SATA/SAS Hot-Swap", + "2AIOM", + "Redundant Power", + "NVMe", + "2PCIe 5.0 x16" + ], + "price": "$9,121.00" + }, + { + "product_name": "XH8-22X4", + "image_url": "https://www.thinkmate.com/thumb?g=20/18953-0016.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "1.5 TBDDR5 ECC RDIMM", + "43.5\" SATA/SAS Hot-Swap", + "2PCIe 5.0 x8 LP", + "Redundant Power", + "NVMe", + "4PCIe 5.0 x16 LP" + ], + "price": "$5,719.00", + "product_data": { + "title": "RAX XH8-22X4", + "description": "The Felcloud RAX XH8-22X4 is a 2U rackmount server solution. The RAX XH8-22X4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads.The RAX XH8-22X4 provides up to eight 3.5\" SATA/SAS/NVMe hot-swappable drives, and six PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX XH8-22X4 is a 2U rackmount server solution. The RAX XH8-22X4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads. The RAX XH8-22X4 provides up to eight 3.5\" SATA/SAS/NVMe hot-swappable drives, and six PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual LAN with Broadcom BCM5720 1GBase-TSingle LAN with Realtek RTL8211F PHY", + "Power": "1U 1200W/1000W Redundant Titanium Power Supply W/PMbus W76xL336xH40mm", + "External Bays": "8x 3.5\" hot-swap SATA3 drive bays(Configurable option for 8 hot-swap SAS or 4x hot-swap NVMe drive bays. NVMe or SAS support requires additional parts)" + }, + "industries": [], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18953-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 2U - 4x NVMe Hybrid + 4x SAS/SATA - 2x M.2 - Dual 1 Gigabit Ethernet - 1200W 1+1 Redundant", + "Intel C741 Chipset - 2U - 4x NVMe Hybrid + 4x SAS/SATA - 2x M.2 - Dual 10 Gigabit Ethernet - 1200W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)", + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)" + ] + }, + { + "name": "IoT Optimized / Long Life", + "config": [ + "Intel Xeon Silver 4410T Processor 10-Core 2.7GHz 26.25 MB Cache (150W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5411N Processor 24-Core 1.9GHz 45 MB Cache (165W)", + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)", + "Intel Xeon Platinum 8471N Processor 52-Core 1.8GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "Specialized for IMDB & Analytics", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)" + ] + }, + { + "name": "5th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + }, + { + "name": "5600MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "32GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "64GB PC5-41600 5600MHz DDR5 ECC RDIMM", + "96GB PC5-41600 5600MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "3.5\"/2.5\" Boot Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA HDD", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4610 Series Enterprise SATA SSD - 3 DWPD", + "config": [ + "960GB Solidigm SSD D3-S4610 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG08 Series (512e)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG09 Series (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapters", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/12203-0064.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro MCP-220-82616-0N - Dual 2.5\" Hot-swap HDD tray" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH24-22X4", + "image_url": "https://www.thinkmate.com/thumb?g=11/18404-0000.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4 TBDDR5 ECC RDIMM", + "162.5\" NVMe Hot-Swap", + "2PCIe 5.0 x8", + "Redundant Power", + "NVMe", + "1PCIe 5.0 x16" + ], + "price": "$10,439.00", + "product_data": { + "title": "RAX XH24-22X4", + "description": "The Felcloud RAX XH24-22X4 is a 2U rackmount server solution. The RAX XH24-22X4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads.The RAX XH24-22X4 provides up to twenty four 2.5\" SATA/SAS/NVMe hot-swappable drives, and three PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX XH24-22X4 is a 2U rackmount server solution. The RAX XH24-22X4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads. The RAX XH24-22X4 provides up to twenty four 2.5\" SATA/SAS/NVMe hot-swappable drives, and three PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2x 1GbE BaseT with Intel i350-AM2 (optional)4x 1GbE BaseT or 4x 1GbE SFP with Intel i350-AM4 (optional)2x 10GbE BaseT with Intel X550-AT2 (optional)2x 10GbE SFP+ with Intel X710-BM2 (optional)4x 10GbE SFP+ with Intel XL710-BM1 (optional)4x 10GbE RJ45/SFP+ with Intel X710-TM4 (optional)2x 25GbE SFP28 with Broadcom BCM57414 (optional)4x 25GbE RJ45/SFP28 with Mellanox CX-4 Lx EN Intel X550-AT2 (optional)2x 100GbE QSFP28 with Broadcom BCM57508 (optional)", + "Power": "1600W 1U redundant power supply", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays (NVMe, SATA, or SAS support requires additional parts)" + }, + "industries": [], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/18404-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 2U - 24x Hot-Swap - 2x M.2 - 2x AIOM - 1600W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "General Purpose 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)", + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)" + ] + }, + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Storage & HCI Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "High Perfomance Computing Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Storage & HCI Optimized 5th Generation Intel Xeon Scalable Processor", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18272-0065.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 16, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CM7-R Series PCIe 5.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "1.92TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "3.84TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "7.68TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "15.36TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)", + "30.72TB Kioxia CM7-R Series U.3 PCIe 5.0 NVMe 2.0 Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 10/25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28", + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-KIT-221H-TN24R-16N - 16 NVME cable kit for SYS-221H-TN24R", + "Supermicro CBL-MCIO-1222AM5 - MCIOx8 (STR to STR),22cm,LNRV,30AWG", + "Supermico CBL-MCIO-1226AM5 - MCIOx8 (STR to STR),26cm,LNRV,30AWG", + "Supermicro CBL-PWEX-1136YB-25 - MicroHi(2x4 to 2x2Y),PH3.0,25/25cm,YRB,8.5A/p,18AWG", + "Supermicro CBL-SAST-1264F-100 - Slimline SAS x8 (STR) to 2x Slimline SAS x4 (STR) SFF-8654, FFC, 64/64 cm", + "Supermicro MCP-240-21908-0N - Riser Bracket(4-slot) for RSC-H2-6888G5L in CSE-HS219/HS829", + "Supermicro LBL-0968 - Pack of 4 NVMe label for Gen 3, 2.5 inch HDD Tray", + "Supermicro RSC-H2-6888G5L - 2U LHS Hyper Riser card with 1x PCIe 5.0 X16 and 2x PCIe 5.0 X8" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XT24-22S4", + "image_url": "https://www.thinkmate.com/thumb?g=23/18557-0013.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4TBDDR5 ECC RDIMM", + "202.5\" SATA/SAS Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "4PCIe 5.0 x16", + "4PCIe 5.0 x8 LP" + ], + "price": "$8,830.00", + "product_data": { + "title": "RAX XT24-22S4", + "description": "The Felcloud RAX XT24-22S4 is a 2U rackmount server solution. The RAX XT24-22S4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads.The RAX XT24-22S4 provides up to twenty 2.5\" SATA/SAS/hot-swappable drives, and eight PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.Every Felcloud rackmount server solution comes standard with a 3-year warranty. The Felcloud RAX XT24-22S4 is a 2U rackmount server solution. The RAX XT24-22S4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads. The RAX XT24-22S4 provides up to twenty 2.5\" SATA/SAS/hot-swappable drives, and eight PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. Every Felcloud rackmount server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 2000W AC-DC Power Supply", + "External Bays": "4x 2.5-inch hot-swap NVMe/SAS/SATA drives20x 2.5-inch hot-swap SAS/SATA drives2x 2.5-inch rear hot-swap SATA drivesAll SAS/SATA devices are connected to SAS expander" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=23/18557-0013.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 2U - 4x 2.5\" Hybrid + 20x 2.5\" SAS/SATA - Expander - Dual 1 Gigabit Ethernet (RJ45) - 2000W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "General Purpose 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)", + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)" + ] + }, + { + "name": "Performance Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Storage & HCI Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "IMDB & Analytics Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "High Perfomance Computing Optimized 4th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "General Purpose 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Network Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Storage & HCI Optimized 5th Generation Intel Xeon Scalable Processor", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Cloud Optimized 5th Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "3.5\"/2.5\" Boot Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA HDD", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4610 Series Enterprise SATA SSD - 3 DWPD", + "config": [ + "960GB Solidigm SSD D3-S4610 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 100 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS4-11E7", + "image_url": "https://www.thinkmate.com/thumb?g=21/14737-0003.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "1 TBDDR4 ECC RDIMM", + "43.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$3,959.00", + "product_data": { + "title": "RAX QS4-11E7", + "description": "The RAX QS4-11E7 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance optimization to support day-to-day business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX QS4-11E7 is an AMD EPYC-based server, with four 3.5 or 2.5 hot-swappable drive bays and support for PCIe Gen4. The RAX QS4-11E7 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance optimization to support day-to-day business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX QS4-11E7 is an AMD EPYC-based server, with four 3.5 or 2.5 hot-swappable drive bays and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7002 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual 10GBase-T LAN with via Broadcom BCM57416", + "Power": "500W Redundant Power Supplies with PMBus", + "External Bays": "4 Hot-swap 3.5\" SATA3 drive bays" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/14737-0003.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 1U - 4x Hot-Swap 3.5\" SATA/SAS3 - Dual 10 Gigabit Ethernet - 500W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16520-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203P Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303P Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313P Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7443P Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7543P Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643P Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663P Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713P Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=28/17441-0062.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere-based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/6895-0053.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro FAN-0141L4 - 40x40x56mm 20.5k RPM / 17.6k RPM Counter-rotating fan" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QN10-11E7", + "image_url": "https://www.thinkmate.com/thumb?g=22/15656-0032.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "2 TBDDR4 ECC RDIMM", + "102.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "NVMe" + ], + "price": "$5,659.00", + "product_data": { + "title": "RAX QN10-11E7", + "description": "The RAX QN10-11E7 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance with sizable onboard storage to support general business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX QN10-11E7 is an AMD EPYC-based server, with ten 2.5 hot-swappable NVMe drive bays and support for PCIe Gen4. The RAX QN10-11E7 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance with sizable onboard storage to support general business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX QN10-11E7 is an AMD EPYC-based server, with ten 2.5 hot-swappable NVMe drive bays and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual 10GBase-T LAN with via Broadcom BCM57416", + "Power": "700W/750W Redundant Power Supplies with PMBus", + "External Bays": "10 Hot-swap U.2 NVMe drive supportOptional 10 SATA3 drive support via additional SATA cables" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/15656-0032.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 1U - 10x U.2 Gen4 NVMe - Dual 10 Gigabit Ethernet - 750W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16520-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203P Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303P Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313P Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7443P Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7543P Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643P Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663P Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713P Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - Server provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS12-12E7", + "image_url": "https://www.thinkmate.com/thumb?g=15/16876-0022.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "512 GBDDR4 ECC RDIMM", + "2M.2", + "2PCIe 4.0 x8 LP", + "Redundant Power", + "5PCIe 4.0 x16 LP", + "123.5\" SATA/SAS Hot-Swap" + ], + "price": "$3,820.00", + "product_data": { + "title": "RAX QS12-12E7", + "description": "The RAX QS12-12E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high-capacity onboard storage to support data-intensive use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX QS12-12E7 is an AMD EPYC-based server, with twelve 3.5 or 2.5 hot-swappable SAS/SATA drive bays, and seven PCIe Gen4 slots. The RAX QS12-12E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high-capacity onboard storage to support data-intensive use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX QS12-12E7 is an AMD EPYC-based server, with twelve 3.5 or 2.5 hot-swappable SAS/SATA drive bays, and seven PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Broadcom BCM5720 Gigabit Ethernet Controller", + "Power": "920W Redundant high-efficiency power supply", + "External Bays": "12 Hot-swap 3.5\" SATA3 drive bays2 rear Hot-swap 2.5\" SATA3 drive bays" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/16876-0022.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 2U - 12x SAS/SATA - Dual 1 Gigabit LAN - 920W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16520-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7313P Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7443P Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7543P Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643P Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7713P Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "3.5\"/2.5\" Boot Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Series Enterprise SATA SSD - <2 DWPD", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Series Enterprise SATA SSD - 5 DWPD", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 5, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 7, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - Server provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/12203-0064.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro MCP-220-82616-0N - Dual 2.5\" Hot-swap HDD tray" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QN24-12E7", + "image_url": "https://www.thinkmate.com/thumb?g=29/17040-0040.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "2 TBDDR4 ECC RDIMM", + "242.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "NVMe" + ], + "price": "$7,221.00", + "product_data": { + "title": "RAX QN24-12E7", + "description": "The RAX QN24-12E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high-capacity onboard storage to support data-intensive use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX QN24-12E7 is a single slot, AMD EPYC-based server with 24 2.5 hot-swappable SAS/SATA drive bays, and support for PCIe Gen4. The RAX QN24-12E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high-capacity onboard storage to support data-intensive use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX QN24-12E7 is a single slot, AMD EPYC-based server with 24 2.5 hot-swappable SAS/SATA drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Broadcom BCM57416 Controller", + "Power": "1200W Redundant High-efficiency Digital Power Supplies w/ PMBus 1.2", + "External Bays": "24 hot-swap 2.5\" U.2 NVMe drive bays" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/17040-0040.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 2U - 24x 2.5\" NVMe - Dual 10 Gigabit LAN - 1200W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16520-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203P Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303P Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313P Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7443P Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7543P Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643P Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663P Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713P Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS4-21E7", + "image_url": "https://www.thinkmate.com/thumb?g=29/15657-0020.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "4 TBDDR4 ECC RDIMM", + "43.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "NVMe" + ], + "price": "$7,026.00", + "product_data": { + "title": "RAX QS4-21E7", + "description": "The RAX QS4-21E7 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX QS4-21E7 is a dual socket, AMD EPYC-based server with four 2.5 or 3.5 hot-swappable NVMe/SAS/SATA drive bays, and three PCIe Gen4 slots. The RAX QS4-21E7 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX QS4-21E7 is a dual socket, AMD EPYC-based server with four 2.5 or 3.5 hot-swappable NVMe/SAS/SATA drive bays, and three PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual 10GBase-T LAN ports via Intel X710-AT2", + "Power": "1000W (1+1) Redundant Power SuppliesTitanium Level (96%+)(1000W: 200 240Vac / 800W: 100 127Vac)", + "External Bays": "4 Hot-swap 3.5\" SATA3 drive bays" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/15657-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 1U - 4x NVMe/SATA/SAS - Dual 10 Gigabit LAN - 1000W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM983 M.2 PCIe 3.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/15519-0056.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG04 Series (512e)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG04 Series (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)" + ] + }, + { + "name": "Toshiba Enterprise-Class SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/8987-0071.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapter", + "config": [ + "Broadcom S3008 SAS3/SATA 8-Port Host Bus Adapter - PCIe 3.0 x8 (122 Devices)", + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controller", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/16665-0052.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro AOC-SLG4-2H8M2 - 2x PCIe Gen4 Hybrid NVMe/SATA M.2 RAID Carrier" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - Server provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT10-21E7", + "image_url": "https://www.thinkmate.com/thumb?g=04/15609-0076.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "4 TBDDR4 ECC RDIMM", + "122.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "NVMe" + ], + "price": "$8,237.00" + }, + { + "product_name": "QN10-21E2", + "image_url": "https://www.thinkmate.com/thumb?g=13/16290-0093.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "4 TBDDR4 ECC RDIMM", + "102.5\" NVMe Hot-Swap", + "1OCP 3.0 x16", + "Redundant Power", + "NVMe", + "2PCIe 4.0 x16" + ], + "price": "$6,694.00", + "product_data": { + "title": "RAX QN10-21E2", + "description": "The RAX QN10-21E2 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX QN10-21E2 is a dual socket, AMD EPYC-based server with ten 2.5 hot-swappable NVMe drive bays, and two PCIe Gen4 slots. The RAX QN10-21E2 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-performance processing to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX QN10-21E2 is a dual socket, AMD EPYC-based server with ten 2.5 hot-swappable NVMe drive bays, and two PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1200W AC-DC Power Supply", + "External Bays": "10 x U.2 hot-swap NVMe Gen4 drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/16290-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 1U - 10x U.2 Gen4 NVMe - 1x M.2 NVMe - Dual 1 Gigabit Ethernet (RJ45) - 1200W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QH12-22E7", + "image_url": "https://www.thinkmate.com/thumb?g=20/15847-0014.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "4 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "3PCIe 4.0 x16", + "NVMe", + "GPU-Optimized", + "Dual 10 Gigabit Ethernet" + ], + "price": "$7,773.00", + "product_data": { + "title": "RAX QH12-22E7", + "description": "The RAX QH12-22E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases, or can function as a part of a larger HPC, cloud, or data center deployment.The RAX QH12-22E7 is a dual socket, AMD EPYC-based server with twelve 3.5 and two 2.5 hot-swappable NVMe/SAS/SATA drive bays, and four PCIe Gen4 slots. The RAX QH12-22E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases, or can function as a part of a larger HPC, cloud, or data center deployment. The RAX QH12-22E7 is a dual socket, AMD EPYC-based server with twelve 3.5 and two 2.5 hot-swappable NVMe/SAS/SATA drive bays, and four PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual 10GBase-T LAN ports via Intel X710-AT21 RJ45 Dedicated IPMI LAN port", + "Power": "1600W Redundant Power Supplies with PMBus", + "External Bays": "12 hot-swap 3.5\" Drive Bays:-12 SATA3 by default-or 8 SATA3 + 4 NVMe via optional kit-or 12 SAS3 via optional SAS kit" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/15847-0014.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 2U - 8x SAS/SATA + 4x NVMe - Dual 10 Gigabit LAN - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "3.5\"/2.5\" Boot Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA HDD", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4610 Series Enterprise SATA SSD - 3 DWPD", + "config": [ + "960GB Solidigm SSD D3-S4610 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM983 M.2 PCIe 3.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=12/13540-0090.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=22/16375-0030.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "AMD Instinct GPUs", + "config": [ + "AMD Instinct™ MI100 Accelerator - 32GB HBM2 - PCIe 4.0 x16 - Passive Cooling", + "AMD Instinct™ MI210 Accelerator - 64GB HBM2e - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling (w/o CEC)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/8987-0071.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3008 SAS3/SATA 8-Port Host Bus Adapter - PCIe 3.0 x8 (122 Devices)", + "Supermicro AOC-S3616L-L16iT SAS3/SATA 16-Port Host Bus Adapter - PCIe 3.0 x8", + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/16665-0052.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro AOC-SLG4-2H8M2 - 2x PCIe Gen4 Hybrid NVMe/SATA M.2 RAID Carrier" + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - Server provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/13190-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro - MCP-240-82922-0N-OEM - Dual 2.5\" Hot-swap HDD Bay" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/17124-0034.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA Virtual Applications (vApps) Licenses", + "config": [ + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 1 Year", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 3 Years", + "NVIDIA AI Enterprise Essentials - Subscription License - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA vApps Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 1 Year", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 3 Years", + "24X7 Support Services for NVIDIA AI Enterprise Essentials - per GPU - 5 Years" + ] + }, + { + "name": "NVIDIA Virtual PC (vPC) Licenses", + "config": [ + "NVIDIA Virtual Applications (vApps) - Perpetual License - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual Applications (vApps) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA vPC Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual Applications (vApps) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX Virtual Workstation (vWS) Licenses", + "config": [ + "NVIDIA Virtual PC (vPC) - Perpetual License - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 1 Year - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 3 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 4 Years - 1 CCU", + "NVIDIA Virtual PC (vPC) - Subscription License - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA RTX vWS Support, Upgrade, and Maintenance (SUMs)", + "config": [ + "NVIDIA Virtual PC (vPC) - Production SUMS - 5 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise Licenses and Support", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Perpetual License - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 1 Year - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 3 Years - 1 CCU" + ] + }, + { + "name": "NVIDIA AI Enterprise 24X7 Support Services", + "config": [ + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 4 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Subscription License - 5 Years - 1 CCU", + "NVIDIA RTX Virtual Workstation (vWS) - Production SUMS - 5 Years - 1 CCU" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT24-22E2", + "image_url": "https://www.thinkmate.com/thumb?g=08/16753-0017.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "4 TBDDR4 ECC RDIMM", + "262.5\" SATA/SAS Hot-Swap", + "2PCIe 4.0 x8 LP", + "Redundant Power", + "2PCIe 4.0 x16", + "4PCIe 4.0 x8" + ], + "price": "$7,042.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/16753-0017.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 2U - 24x 2.5\" SATA/SAS - Dual 1 Gigabit Ethernet - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "3.5\"/2.5\" Boot Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA HDD", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4610 Series Enterprise SATA SSD - 3 DWPD", + "config": [ + "960GB Solidigm SSD D3-S4610 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QN24-22E7", + "image_url": "https://www.thinkmate.com/thumb?g=21/15848-0078.png|w=200|h=120", + "details": [ + "AMD EPYC 7002", + "4 TBDDR4 ECC RDIMM", + "242.5\" NVMe Hot-Swap", + "1PCIe 4.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "NVMe" + ], + "price": "$9,699.00", + "product_data": { + "title": "RAX QN24-22E7", + "description": "The RAX QN24-22E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases or can function as a part of a larger HPC, cloud, or data center deployment.The RAX QN24-22E7 is a dual socket, AMD EPYC-based server with 24 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4. The RAX QN24-22E7 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-capacity processing to support data-intensive business use cases or can function as a part of a larger HPC, cloud, or data center deployment. The RAX QN24-22E7 is a dual socket, AMD EPYC-based server with 24 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "AMD EPYC 7003 Series", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-port 10GBase-T and Dual-port 10G SFP+ via Intel X710-TM4", + "Power": "1600W Redundant Power Supplies with PMBus", + "External Bays": "24 hot-swap 2.5\" U.2 NVMe drive baysUp to 24 SAS/SATA drives supported via optional SAS kit" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/15848-0078.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 7003 Series - 2U - 24x NVMe - Dual 10 Gigabit LAN - 1600W Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM983 M.2 PCIe 3.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/16665-0052.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro AOC-SLG4-2H8M2 - 2x PCIe Gen4 Hybrid NVMe/SATA M.2 RAID Carrier" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/14509-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Horizontal Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH2-11S3", + "image_url": "https://www.thinkmate.com/thumb?g=21/16703-0097.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "4TBDDR4 ECC RDIMM", + "22.5\" NVMe Hot-Swap", + "1OCP 3.0 x16", + "Redundant Power", + "1PCIe 4.0 x16", + "2PCIe 4.0 x16 LP" + ], + "price": "$4,690.00", + "product_data": { + "title": "RAX XH2-11S3", + "description": "The RAX XH2-11S3 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX XH2-11S3 provides two high-performance Intel Xeon Scalable processors, two hot-swappable drive bays that support NVMe storage, and up to three PCIe 4.0 slots. The RAX XH2-11S3 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX XH2-11S3 provides two high-performance Intel Xeon Scalable processors, two hot-swappable drive bays that support NVMe storage, and up to three PCIe 4.0 slots.", + "use_cases": [], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "No Onboard NIC; choose optional network cardDedicated Management LAN port", + "Power": "Redundant 800W AC-DC Power Supply80 PLUS Platinum", + "External Bays": "2x 2.5-inch hot-swap drive baysSATA/NVMe supportedSAS supported with optional controller card" + }, + "industries": [], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/16703-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U - 2x 2.5\" SATA/SAS3/NVMe - 800W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere-based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L40S ADA GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Gigabyte Rail Kit for 1U 2U Edge Servers - Standard Rack 660 - 840 mm" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS4-11S3-SH", + "image_url": "https://www.thinkmate.com/thumb?g=13/16699-0069.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "1 TBDDR4 ECC RDIMM", + "43.5\" SATA/SAS/NVMe Hot-Swap", + "1PCIe 4.0 x16", + "Redundant Power", + "Optane", + "NVMe" + ], + "price": "$3,371.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/16699-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U - 4x NVMe/SATA - 2x M.2 - Dual Intel 1 Gigabit Ethernet (RJ45) - 500W Power Supply", + "Intel C621A Chipset - 1U - 4x NVMe/SATA - 2x M.2 - Dual Intel 1 Gigabit Ethernet (RJ45) - 400W 1+1 Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6312U Processor 24-Core 2.4GHz 36MB Cache (185W)", + "Intel Xeon Gold 6314U Processor 32-Core 2.3GHz 48MB Cache (205W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/8987-0071.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3008 SAS3/SATA 8-Port Host Bus Adapter - PCIe 3.0 x8 (122 Devices)", + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=05/14514-0087.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Horizontal" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro FAN-0154L4 - 40x40x28 mm, 22.5K RPM, SC813MF Middle Cooling Fan,RoHS/REACH" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/18940-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Supermicro Black USB/COM port tray in slim DVD bay"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS4-11S3-10G", + "image_url": "https://www.thinkmate.com/thumb?g=12/16698-0078.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "1 TBDDR4 ECC RDIMM", + "43.5\" SATA/SAS/NVMe Hot-Swap", + "2PCIe 4.0 x16", + "NVMe", + "Optane", + "Dual 10 Gigabit Ethernet" + ], + "price": "$3,562.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/16698-0078.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U - 4x NVMe/SATA - 1x M.2 - Dual Intel 10 Gigabit Ethernet (RJ45) - 600W Power Supply", + "Intel C621A Chipset - 1U - 4x NVMe/SATA - 1x M.2 - Dual Intel 10 Gigabit Ethernet (RJ45) - 500W 1+1 Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6312U Processor 24-Core 2.4GHz 36MB Cache (185W)", + "Intel Xeon Gold 6314U Processor 32-Core 2.3GHz 48MB Cache (205W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)", + "Intel Xeon Platinum 8351N Processor 36-Core 2.4GHz 54MB Cache (225W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/8987-0071.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3008 SAS3/SATA 8-Port Host Bus Adapter - PCIe 3.0 x8 (122 Devices)", + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/6895-0053.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro FAN-0141L4 - 40x40x56mm 20.5k RPM / 17.6k RPM Counter-rotating fan" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XT10-11S3-10G", + "image_url": "https://www.thinkmate.com/thumb?g=13/16675-0091.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "1 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "NVMe", + "Optane", + "Dual 10 Gigabit Ethernet" + ], + "price": "$3,997.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/16675-0091.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U - 10x 2.5\" SATA (4x 2.5\" NVMe hybrid) - 1x M.2 - Dual 10 Gigabit Ethernet - 750W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6312U Processor 24-Core 2.4GHz 36MB Cache (185W)", + "Intel Xeon Gold 6314U Processor 32-Core 2.3GHz 48MB Cache (205W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)", + "Intel Xeon Platinum 8351N Processor 36-Core 2.4GHz 54MB Cache (225W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/8987-0071.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3008 SAS3/SATA 8-Port Host Bus Adapter - PCIe 3.0 x8 (122 Devices)", + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/6895-0053.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro FAN-0141L4 - 40x40x56mm 20.5k RPM / 17.6k RPM Counter-rotating fan" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS8-12S3-10G", + "image_url": "https://www.thinkmate.com/thumb?g=26/16700-0059.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "1 TBDDR4 ECC RDIMM", + "22.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "NVMe", + "Optane", + "Dual 10 Gigabit Ethernet" + ], + "price": "$3,888.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/16700-0059.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 2U - 8x 3.5\" SATA (2x 2.5\" NVMe dedicated) - 1x M.2 - Dual 10 Gigabit Ethernet - 650W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6312U Processor 24-Core 2.4GHz 36MB Cache (185W)", + "Intel Xeon Gold 6314U Processor 32-Core 2.3GHz 48MB Cache (205W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)", + "Intel Xeon Platinum 8351N Processor 36-Core 2.4GHz 54MB Cache (225W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14514-0087.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Horizontal", + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro CBL-SAST-1154-85 - Slimline x8 (RE) to 2x Oculink x4, 54cm, 85 OHM, RoHS - NVMe cable", + "Supermicro - MCP-220-82619-0N - Rear hot-swap 2x 2.5\" NVMe drive kit" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS4-21X3", + "image_url": "https://www.thinkmate.com/thumb?g=18/16047-0076.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "43.5\" SATA/SAS Hot-Swap", + "2AIOM", + "Redundant Power", + "Optane", + "2PCIe 4.0 x16" + ], + "price": "$5,420.00", + "product_data": { + "title": "RAX XS4-21X3", + "description": "The RAX XS4-21X3 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX XS4-21X3 provides two high-performance Intel Xeon Scalable processors, four hot-swappable SATA/SAS drive bays, and up to two PCIe 4.0 slots. The RAX XS4-21X3 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX XS4-21X3 provides two high-performance Intel Xeon Scalable processors, four hot-swappable SATA/SAS drive bays, and up to two PCIe 4.0 slots.", + "use_cases": [], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Via Slim-AIOM", + "Power": "860W (1+1) Redundant High efficiency (Titanium level 94%) Power Supplies", + "External Bays": "4x 3.5\" hot-swap SATA/SAS drive bays" + }, + "industries": [], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/16047-0076.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U - 4x 3.5\" SAS/SATA - 2x M.2 - 2x AIOM - 860W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=19/15494-0084.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG04 Series (512e)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG04 Series (512e)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG08 Series (512e)" + ] + }, + { + "name": "Toshiba Enterprise-Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG04 Series (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG08 Series (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)" + ] + }, + { + "name": "NVIDIA - Ada Lovelace based GPUs", + "config": [ + "NVIDIA L4 ADA GPU Computing Accelerator - 24GB GDDR6X - PCIe 4.0 x16 - Passive Cooling" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 - Gigabit Ethernet 4x SFP - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH4-21X3", + "image_url": "https://www.thinkmate.com/thumb?g=20/16058-0077.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "4 TBDDR4 ECC RDIMM", + "43.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "Dual 10 Gigabit Ethernet", + "Optane", + "GPU-Optimized" + ], + "price": "$6,192.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/16058-0077.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U - 4x 3.5\" NVMe/SAS/SATA - 2x M.2 - Dual 10 Gigabit Ethernet - 1200W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG08 Series (512e)" + ] + }, + { + "name": "Toshiba Enterprise-Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Toshiba MG04 Series (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=02/16704-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling (w/o CEC)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/16665-0052.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro AOC-SLG4-2H8M2 - 2x PCIe Gen4 Hybrid NVMe/SATA M.2 RAID Carrier" + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16654-0091.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "1U Ultra Riser Dual 10G BaseT Ethernet AOC-URG4N4-i2XT with 1 PCI-E 4.0 x16, and 4 NVMe ports (2x SlimSAS x8)", + "1U Ultra Riser Dual 25GbE SFP28 Ethernet AOC-URG4N4-m2TS with 1 PCIe 4.0 x16 (internal), and 4 NVMe ports (2x SlimSAS x8)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH10-21X3", + "image_url": "https://www.thinkmate.com/thumb?g=21/16046-0097.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "102.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16", + "Redundant Power", + "Optane", + "NVMe" + ], + "price": "$5,316.00", + "product_data": { + "title": "RAX XH10-21X3", + "description": "The RAX XH10-21X3 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance with high storage capacity to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX XH10-21X3 provides two high-performance Intel Xeon Scalable processors, ten 2.5 hot-swappable drive bays that support NVMe storage, and up to two PCIe 4.0 slots. The RAX XH10-21X3 rackmount server is a 1U system designed to support a variety of workloads. This server provides general purpose performance with high storage capacity to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX XH10-21X3 provides two high-performance Intel Xeon Scalable processors, ten 2.5 hot-swappable drive bays that support NVMe storage, and up to two PCIe 4.0 slots.", + "use_cases": [], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Via Slim-AIOM", + "Power": "860W (1+1) Redundant High efficiency (Titanium level 94%) Power Supplies", + "External Bays": "10x 2.5\" hot-swap NVMe/SATA/SAS drive bays (10x 2.5\" NVMe hybrid)" + }, + "industries": [], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/16046-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 1U - 10x 2.5\" NVMe/SATA - 2x M.2 - 2x AIOM - 860W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=00/17956-0024.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A2 GPU Computing Accelerator - 16GB GDDR6 - PCIe 4.0 x8 - Passive Cooler (w/o CEC)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/15999-0069.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 - Gigabit Ethernet 4x SFP - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/14504-0078.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH12-22S3", + "image_url": "https://www.thinkmate.com/thumb?g=23/16059-0088.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "4 TBDDR4 ECC RDIMM", + "122.5\" NVMe Hot-Swap", + "1PCIe 4.0 x16", + "Redundant Power", + "Optane", + "Dual 10 Gigabit Ethernet" + ], + "price": "$6,580.00", + "product_data": { + "title": "RAX XH12-22S3", + "description": "The RAX XH12-22S3 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high storage capacity to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX XH12-22S3 provides two high-performance Intel Xeon Scalable processors, eight 2.5 or 3.5 hot-swappable drive bays, and an additional four 2.5 or 3.5 hot-swappable drive bays that support NVMe storage, and up to eight PCIe 4.0 slots. The RAX XH12-22S3 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance with high storage capacity to support everyday business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX XH12-22S3 provides two high-performance Intel Xeon Scalable processors, eight 2.5 or 3.5 hot-swappable drive bays, and an additional four 2.5 or 3.5 hot-swappable drive bays that support NVMe storage, and up to eight PCIe 4.0 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply", + "External Bays": "12x 3.5-inch hot-swap drive bays (front)8x SAS/SATA4x NVMe/SAS/SATA2x 2.5-inch hot-swap drive bays (rear)SAS/SATA supported" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/16627-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 2U - 8x 3.5\" SATA/SAS3 + 4x U.2 SATA/NVMe - Dual 1 Gigabit Ethernet - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "3.5\"/2.5\" Boot Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA HDD", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4610 Series Enterprise SATA SSD - 3 DWPD", + "config": [ + "960GB Solidigm SSD D3-S4610 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XT24-22S3", + "image_url": "https://www.thinkmate.com/thumb?g=10/16616-0074.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "8TBDDR4 ECC RDIMM", + "242.5\" SATA/SAS Hot-Swap", + "2PCIe 4.0 x8 LP", + "Redundant Power", + "3PCIe 4.0 x16", + "2PCIe 4.0 x8" + ], + "price": "$6,579.00", + "product_data": { + "title": "RAX XT24-22S3", + "description": "The RAX XT24-22S3 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance optimization with extremely high storage capacity to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX XT24 -22S3 provides two high-performance Intel Xeon Scalable processors, 24 2.5 hot-swappable drive bays, and an additional two 2.5 hot-swappable drive bays in the rear, and up to eight PCIe 4.0 slots. The RAX XT24-22S3 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance optimization with extremely high storage capacity to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX XT24 -22S3 provides two high-performance Intel Xeon Scalable processors, 24 2.5 hot-swappable drive bays, and an additional two 2.5 hot-swappable drive bays in the rear, and up to eight PCIe 4.0 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "Redundant 1600W AC-DC Power Supply", + "External Bays": "24x 2.5-inch hot-swap drive bays (front)SAS/SATA2x 2.5-inch hot-swap drive bays (rear)SAS/SATA" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16616-0074.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 2U - 24x 2.5\" SATA/SAS3 - Dual 1 Gigabit Ethernet - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "3.5\"/2.5\" Boot Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA HDD", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4610 Series Enterprise SATA SSD - 3 DWPD", + "config": [ + "960GB Solidigm SSD D3-S4610 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/6973-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate System Badge - 1.0\" x 1.0\"", + "Thinkmate System Badge - 1.75\" x 0.4375\"", + "Thinkmate System Badge - 1.25\" x 0.635\"", + "Thinkmate System Badge - 2.1875\" x 0.5625\"", + "Thinkmate System Badge - 1.12598\" x 0.582677\"", + "Thinkmate System Badge - 2.025\" x 0.750\"" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XH24-22X3", + "image_url": "https://www.thinkmate.com/thumb?g=13/16056-0078.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "4 TBDDR4 ECC RDIMM", + "22.5\" SATA/SAS Hot-Swap", + "4PCIe 4.0 x8", + "Dual 10 Gigabit Ethernet", + "Optane", + "GPU-Optimized" + ], + "price": "$7,043.00", + "product_data": { + "title": "RAX XH24-22X3", + "description": "The RAX XH24-22X3 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance optimization with extremely high storage capacity to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment.The RAX XH24-22X3 provides two high-performance Intel Xeon Scalable processors, 22 2.5 hot-swappable Gen4 NVMe drive bays, two 2.5 hot-swappable SATA/SAS drive bays, and up to four PCIe 4.0 slots. The RAX XH24-22X3 rackmount server is a 2U system designed to support a variety of workloads. This server provides general purpose performance optimization with extremely high storage capacity to support data-intensive business use cases, or as a part of a larger HPC, cloud, or data center deployment. The RAX XH24-22X3 provides two high-performance Intel Xeon Scalable processors, 22 2.5 hot-swappable Gen4 NVMe drive bays, two 2.5 hot-swappable SATA/SAS drive bays, and up to four PCIe 4.0 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "3rd Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "2x 10GbE BaseT with Intel X710-AT2 (optional) OR2x 10GbE BaseT and 2x 10GbE SFP+ with Intel X710-TM4 (optional)No NIC option supported", + "Power": "1600W (1+1) Redundant High efficiency (Titanium level 96%) Power Supplies", + "External Bays": "24x 2.5\" hot-swap NVMe/SATA/SAS drive bays (22x 2.5\" NVMe hybrid)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/16056-0078.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 2U - 22x 2.5\" NVMe/SAS/SATA + 2x SAS/SATA - Dual 10 Gigabit Ethernet - 1600W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 22, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "GPU Accelerator", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=02/16704-0098.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "NVIDIA - Ampere based GPUs", + "config": [ + "NVIDIA A10 GPU Computing Accelerator - 24GB GDDR6 - PCIe 4.0 x16 - Passive Cooler (w/o CEC)", + "NVIDIA A16 GPU Computing Accelerator - 64GB (4x 16GB) GDDR6 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A30 GPU Computing Accelerator - 24GB HBM2 - PCIe 4.0 x16 - Passive Cooler", + "NVIDIA A40 GPU Computing Accelerator - 48GB GDDR6 - PCIe 4.0 x16 - Passive Cooling (w/o CEC)" + ] + }, + { + "name": "NVIDIA RTX Professional Graphics Processors (Ampere)", + "config": [ + "NVIDIA RTX A6000 - 48GB GDDR6 - PCIe 4.0 x16 - Active Cooling (4xDP)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=04/16666-0058.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Host Bus Adapters", + "config": [ + "Broadcom S3808 SAS3/SATA 8-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)", + "Broadcom S3816 SAS3/SATA 16-Port Host Bus Adapter - PCIe 4.0 x8 (122 Devices)" + ] + }, + { + "name": "SAS 12Gb/s RAID Controllers", + "config": [ + "Broadcom S3908 SAS3/SATA 8-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (16 Devices)", + "Broadcom S3916 SAS3/SATA 16-Port RAID Controller - 8GB Cache - PCIe 4.0 x8 (32 Devices)" + ] + }, + { + "name": "NVMe Host Bus Adapters", + "config": [ + "Supermicro AOC-SLG4-2E4T - Dual-Port PCIe x8 Gen-4 Internal NVMe Host Bus Adapter (Retimer) SlimSAS", + "Supermicro AOC-SLG4-4E4T - Quad-Port PCIe x16 Gen-4 Internal NVMe Host Bus Adapter (Retimer) SlimSAS" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/16665-0052.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro AOC-SLG4-2H8M2 - 2x PCIe Gen4 Hybrid NVMe/SATA M.2 RAID Carrier" + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16764-0080.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Module Protection for Broadcom 3908/3916 SAS Controller" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16657-0035.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U Ultra Riser with Dual 10G BaseT Ethernet Adapter AOC-2UR68G4-I2XT with 1x PCIe 4.0 x16, 2x PCIe 4.0 x8", + "2U Ultra Riser Dual 10G SFP+/Dual 10G BaseT Ethernet AOC-2UR68G4-i4XTS with 1x PCIe 4.0 x16, 2x PCIe 4.0 x8" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=25/14506-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Riser Cards", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Supermicro RSC-W2-66G4 - Riser Card, WIO to 2x PCIe x16 Gen4" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XN24-42S3-10G", + "image_url": "https://www.thinkmate.com/thumb?g=04/15987-0018.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "6 TBDDR4 ECC RDIMM", + "242.5\" NVMe Hot-Swap", + "2PCIe 3.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "NVMe" + ], + "price": "$15,637.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15987-0018.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621 - 2U - 24x SATA/SAS/NVMe - 10GbE (RJ45) + 10GbE SFP+ - 2000W 1+1 Redundant Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=01/15973-0077.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5318H Processor 18-Core 2.5GHz 24.75MB Cache (150W)", + "Intel Xeon Gold 5320H Processor 20-Core 2.4GHz 27.5MB Cache (150W)", + "Intel Xeon Gold 6328H Processor 16-Core 2.8GHz 22MB Cache (165W)", + "Intel Xeon Gold 6330H Processor 24-Core 2.0GHz 33MB Cache (150W)", + "Intel Xeon Gold 6348H Processor 24-Core 2.3GHz 33MB Cache (165W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8353H Processor 18-Core 2.5GHz 24.75MB Cache (150W)", + "Intel Xeon Platinum 8354H Processor 18-Core 3.1GHz 24.75MB Cache (205W)", + "Intel Xeon Platinum 8356H Processor 8-Core 3.9GHz 35.75MB Cache (190W)", + "Intel Xeon Platinum 8360H Processor 24-Core 3.0GHz 33MB Cache (225W)", + "Intel Xeon Platinum 8376H Processor 28-Core 2.6GHz 38.5MB Cache (205W)", + "Intel Xeon Platinum 8380H Processor 28-Core 2.9GHz 38.5MB Cache (250W)" + ] + }, + { + "name": "Large-Memory Tier Support (up to 4.5TB)", + "config": [ + "Intel Xeon Gold 6328HL Processor 16-Core 2.8GHz 22MB Cache (165W)", + "Intel Xeon Platinum 8360HL Processor 24-Core 3.0GHz 33MB Cache (225W)", + "Intel Xeon Platinum 8376HL Processor 28-Core 2.6GHz 38.5MB Cache (205W)", + "Intel Xeon Platinum 8380HL Processor 28-Core 2.9GHz 38.5MB Cache (250W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=10/18086-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/14092-0037.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Intel Virtual RAID on CPU (VROC) - Intel Only Module - RAID 0,1,10,5", + "Intel Virtual RAID on CPU (VROC) - Standard Module - RAID 0,1,10", + "Intel Virtual RAID on CPU (VROC) - Premium Module - RAID 0,1,10,5" + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8", + "Broadcom HBA 9500-16i SAS3/SATA 16-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9560-16i SAS3/SATA 16-Port RAID - 8GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/16665-0052.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro AOC-SLG4-2H8M2 - 2x PCIe Gen4 Hybrid NVMe/SATA M.2 RAID Carrier" + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9361-16i/9380-8i8e (CVPM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 50/100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 25 Gigabit Ethernet Adapter", + "config": [ + "Mellanox ConnectX-5 EN 25 Gigabit Ethernet Adapter - PCIe 3.0 x8 - 2x SFP28" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/16001-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 - Gigabit Ethernet 4x SFP - AIOM OCP 3.0 PCIe 2.1 x4", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=10/14505-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Horizontal" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=15/6973-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate System Badge - 1.0\" x 1.0\"", + "Thinkmate System Badge - 1.75\" x 0.4375\"", + "Thinkmate System Badge - 1.25\" x 0.635\"", + "Thinkmate System Badge - 2.1875\" x 0.5625\"", + "Thinkmate System Badge - 1.12598\" x 0.582677\"", + "Thinkmate System Badge - 2.025\" x 0.750\"" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/9945-0023.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PT10-11A1", + "image_url": "https://www.thinkmate.com/thumb?g=27/17204-0050.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "1OCP 2.0 x8", + "Redundant Power", + "NVMe", + "1PCIe 4.0 x16" + ], + "price": "$5,077.00", + "product_data": { + "title": "RAX PT10-11A1", + "description": "The RAX PT10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PT10-11A1 is a single socket, Ampere Altra-based server with six 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4. The RAX PT10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PT10-11A1 is a single socket, Ampere Altra-based server with six 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "650W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "10 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=27/17204-0050.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 1U - 6x 2.5\" SATA + 4x U.2 NVMe - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 650W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PN10-11A1", + "image_url": "https://www.thinkmate.com/thumb?g=26/17367-0086.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "22.5\" SATA Hot-Swap", + "1OCP 2.0 x8", + "Redundant Power", + "NVMe", + "82.5\" NVMe Hot-Swap" + ], + "price": "$5,526.00", + "product_data": { + "title": "RAX PN10-11A1", + "description": "The RAX PN10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PN10-11A1 is a single socket, Ampere Altra-based server with two 2.5 hot-swappable SATA drive bays, eight 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4. The RAX PN10-11A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PN10-11A1 is a single socket, Ampere Altra-based server with two 2.5 hot-swappable SATA drive bays, eight 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "1U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "2 x 850W redundant PSUs 80 PLUS Platinum certified", + "External Bays": "10 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/17367-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 1U - 8x U.2 NVMe + 2x 2.5\" SATA - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 1100W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PT8-12A1", + "image_url": "https://www.thinkmate.com/thumb?g=03/17214-0017.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "2M.2", + "4PCIe 4.0 x8 LP", + "Redundant Power", + "2PCIe 4.0 x16 LP", + "82.5\" SATA Hot-Swap" + ], + "price": "$5,070.00", + "product_data": { + "title": "RAX PT8-12A1", + "description": "The RAX PT8-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PT8-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, and six PCIe Gen4 slots. The RAX PT8-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PT8-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, and six PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "800W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "8 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/17214-0017.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 8x 2.5\" SATA - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 800W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PT12-12A1", + "image_url": "https://www.thinkmate.com/thumb?g=12/17215-0008.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "2PCIe 4.0 x8 LP", + "Redundant Power", + "NVMe", + "2PCIe 4.0 x16 LP" + ], + "price": "$5,558.00", + "product_data": { + "title": "RAX PT12-12A1", + "description": "The RAX PT12-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PT12-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and four PCIe Gen4 slots. The RAX PT12-12A1 rackmount server is a 2U system designed to support a variety of workloads. This server provides high-efficiency processing via an Ampere Altra processor to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PT12-12A1 is a single socket, Ampere Altra-based server with eight 2.5 hot-swappable SATA drive bays, four 2.5 hot-swappable NVMe drive bays, and four PCIe Gen4 slots.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra, Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "800W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "12 x 2.5-inch hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/17215-0008.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 8x 2.5\" SATA + 4x U.2 NVMe - 2x M.2 NVMe - Dual 1 Gigabit Ethernet - 800W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Gigabyte 2-Part Rail Kit for R152 R182 R272 R282 - 33\" Maximum Length" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["Air Freight Charge"] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/2010-0068.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.75\" x 0.4375\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PH12-21A1", + "image_url": "https://www.thinkmate.com/thumb?g=10/17875-0070.png|w=200|h=120", + "details": [ + "Ampere Altra", + "4 TBDDR4 ECC RDIMM", + "122.5\" NVMe Hot-Swap", + "2OCP 3.0 x16", + "Redundant Power", + "NVMe", + "2PCIe 4.0 x16" + ], + "price": "$8,518.00", + "product_data": { + "title": "RAX PH12-21A1", + "description": "The RAX PH12-21A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PH12-21A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4. The RAX PH12-21A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PH12-21A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "1300W 80 Plus Platinum (1+1) Redundant Power Supply", + "External Bays": "6x 2.5\" SATA/NVMe Hybrid + 6x 2.5\" NVMe hot-swap drives" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/17875-0070.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 1U - 2x NVMe + 8x SATA - Dual 1 Gigabit Ethernet - 1300W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/20156-0066.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Mounting Rails", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": [ + "Thinkmate Standard Rail Kit for 1U/2U Servers (Square Hole) (Included)", + "Gigabyte 3-Piece Rail Kit - 25.9 - 31.5 inches", + "Gigabyte 3-Piece Rail Kit with Cable Management Arm" + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PN24-22A1", + "image_url": "https://www.thinkmate.com/thumb?g=22/17368-0048.png|w=200|h=120", + "details": [ + "Ampere Altra", + "8 TBDDR4 ECC RDIMM", + "42.5\" SATA Hot-Swap", + "4PCIe 4.0 x16 LP", + "Redundant Power", + "NVMe", + "242.5\" NVMe Hot-Swap" + ], + "price": "$9,419.00", + "product_data": { + "title": "RAX PN24-22A1", + "description": "The RAX PN24-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PN24-22A1 is a dual socket, Ampere Altra-based server with twenty-four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4. The RAX PN24-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PN24-22A1 is a dual socket, Ampere Altra-based server with twenty-four 2.5 hot-swappable NVMe drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "1600W 80 Plus Platinum (1+1) Redundant Power Supply" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/17368-0048.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 24x NVMe - Dual 1 Gigabit Ethernet - 1600W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/20156-0066.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["Air Freight Charge"] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "PH12-22A1", + "image_url": "https://www.thinkmate.com/thumb?g=29/17369-0030.png|w=200|h=120", + "details": [ + "Ampere Altra", + "8 TBDDR4 ECC RDIMM", + "63.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16 LP", + "Redundant Power", + "GPU-Optimized", + "NVMe" + ], + "price": "$9,123.00", + "product_data": { + "title": "RAX PH12-22A1", + "description": "The RAX PH12-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions.The RAX PH12-22A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4. The RAX PH12-22A1 rackmount server is a 1U system designed to support a variety of workloads. This server provides high-efficiency processing via dual Ampere Altra processors to support business use cases or can function as a part of a larger HPC, cloud, or data center deployment with power and cooling restrictions. The RAX PH12-22A1 is a dual socket, Ampere Altra-based server with twelve 2.5 hot-swappable NVMe/SATA drive bays, and support for PCIe Gen4.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "ARM Ampere Altra Max", + "Memory Technology": "DDR4 ECC Registered", + "Form Factor": "2U", + "Ethernet": "Dual-Port Intel i350 Gigabit Ethernet LANDedicated Management LAN port", + "Power": "2000W 80 Plus Platinum (1+1) Redundant Power Supply" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ], + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/17369-0030.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Ampere Altra ARM - 2U - 6x NVMe + 6x SATA - Dual 1 Gigabit Ethernet - 2000W Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/16946-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Ampere Altra 64-Core Processors", + "config": [ + "Ampere Altra Q64-26 Processor, 64-Core (2.6GHz, 64MB L2, 3200MT/s) 125W", + "Ampere Altra Q64-30 Processor, 64-Core (3.0GHz, 64MB L2, 3200MT/s) 180W" + ] + }, + { + "name": "Ampere Altra 80-Core Processors", + "config": [ + "Ampere Altra Q80-28 Processor, 80-Core (2.8GHz, 80MB L2, 3200MT/s) 185W", + "Ampere Altra Q80-30 Processor, 80-Core (3.0GHz, 80MB L2, 3200MT/s) 210W" + ] + }, + { + "name": "Ampere Altra Max 96-Core Processors", + "config": [ + "Ampere Altra Max M96-28 Processor, 96-Core (2.80GHz, 96MB L2, 3200MT/s) 190W", + "Ampere Altra Max M96-30 Processor, 96-Core (3.0GHz, 96MB L2, 3200MT/s) 220W" + ] + }, + { + "name": "Ampere Altra Max 128-Core Processors", + "config": [ + "Ampere Altra Max M128-26 Processor, 128-Core (2.60GHz, 128MB L2, 3200MT/s) 190W", + "Ampere Altra Max M128-30 Processor, 128-Core (3.0GHz, 128MB L2, 3200MT/s) 250W" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/20156-0066.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (ARM64)", + "Debian Linux 12 (ARM64)", + "Fedora Linux 40 Server Edition (ARM64)", + "openSUSE Leap Linux 15.x (ARM64)", + "Ubuntu Linux 24.04 LTS Server Edition (ARM64)" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/539-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + } + ], + "type": "server" + }, + { + "_id": { + "$oid": "68227c5cc7f68c4bc74ca510" + }, + "name": "BLADE", + "category": "Blade Servers", + "description": "Blade Servers with acoustically enhanced thermal and cooling technologies.", + "url": "https://www.thinkmate.com/systems/supermicro/superblade", + "nav_image": "No image available", + "category_image": "https://www.thinkmate.com/cdn/landing-assets/servers/server_blade.png", + "server_title": "Award-winning Blade Servers, Featuring the Industry's best Ease of Deployment, Ease of Use and Price-Performance Ratio.", + "server_details": "The innovative SuperBlade features enhanced system computing density leveraged from years of rackmount server design experience. Applying an application-optimized engineering philosophy, each SuperBlade module delivers true server functionality including up to two Six-Core Intel Xeon processors, optional InfiniBand mezzanine HCA, optional PCI Express expansion card, and support for up to 6 SATA or SAS2 hard drives. For more computational-intensive applications, the SuperBlade also offers 4-way AMD Opteron™ blades.", + "server_highlights_detail": [], + "server_section_image": "https://www.thinkmate.com/images/shared/smicronew/superblade/superbladebg.jpg", + "products": [ + { + "product_name": "SBE-414E", + "image_url": "https://www.thinkmate.com/thumb?g=23/12673-0060.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "Intel 2nd Gen Xeon Scalable" + ], + "price": "$5,140.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 14, + "category_img": "https://www.thinkmate.com/thumb?g=27/17169-0022.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Dual Socket 3nd Generation Intel Xeon based 14-Blade Modules", + "config": ["ProcessorBlade SBI-420P-4T2N"] + }, + { + "name": "Dual Socket 2nd Generation Intel Xeon based 14-Blade Modules", + "config": ["ProcessorBlade SBI-4429P-T2N (discontinued)"] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=23/12673-0060.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-414E-222 - 2 x 2200W N+1 Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-414E-422 - 4 x 2200W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-414J", + "image_url": "https://www.thinkmate.com/thumb?g=02/17168-0029.png|w=200|h=120", + "details": ["Intel 3rd Gen Xeon Scalable"], + "price": "$6,184.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 14, + "category_img": "https://www.thinkmate.com/thumb?g=27/17169-0022.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Dual Socket 3rd Generation Intel Xeon based 14-Blade Modules", + "config": ["ProcessorBlade SBI-420P-4T2N"] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/17168-0029.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-414J-422 - 4 x 2200W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-200 - Broadcom BCM56770 25GbE Low Latency Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-610J", + "image_url": "https://www.thinkmate.com/thumb?g=06/14300-0058.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "Intel 2nd Gen Xeon Scalable" + ], + "price": "$8,078.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=27/18977-0027.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 4th Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-611E-1T2N", + "ProcessorBlade SBI-611E-1C2N" + ] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-621E-1T3N", + "ProcessorBlade SBI-621E-1C3N" + ] + }, + { + "name": "Single Socket 3rd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-610P-1T2N", + "ProcessorBlade SBI-610P-1C2N" + ] + }, + { + "name": "Dual Socket 3rd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-620P-1T3N", + "ProcessorBlade SBI-620P-1C3N" + ] + }, + { + "name": "Single Socket 2nd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-6119P-T3N (discontinued)", + "ProcessorBlade SBI-6119P-C3N (discontinued)" + ] + }, + { + "name": "Dual Socket 2nd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-6129P-T3N (discontinued)", + "ProcessorBlade SBI-6129P-C3N (discontinued)" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/14300-0058.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-610J-422 - 4x 2200W N+1 Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-610J-622 - 6x 2200W N+1 Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-610J-822 - 8x 2200W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-610J2", + "image_url": "https://www.thinkmate.com/thumb?g=10/18978-0001.png|w=200|h=120", + "details": ["Intel 5th/4th Gen Xeon Scalable"], + "price": "$8,202.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 10, + "category_img": "https://www.thinkmate.com/thumb?g=27/18977-0027.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 4th Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-611E-1T2N", + "ProcessorBlade SBI-611E-1C2N" + ] + }, + { + "name": "Single Socket 4th Generation Intel Xeon based 5-Blade Modules", + "config": ["ProcessorBlade SBI-611E-5T2N"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-621E-1T3N", + "ProcessorBlade SBI-621E-1C3N" + ] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 5-Blade Modules", + "config": ["ProcessorBlade SBI-621E-5T3N"] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/18978-0001.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "2200W Power Suppy Options", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-610J2-422 - 4x 2200W Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-610J2-622 - 6x 2200W Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-610J2-822 - 8x 2200W Redundant" + ] + }, + { + "name": "3000W Power Supply Options", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-610J2-430 - 4x 3000W Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-610J2-630 - 6x 3000W Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-610J2-830 - 8x 3000W Redundant" + ] + } + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-614E", + "image_url": "https://www.thinkmate.com/thumb?g=14/14435-0060.png|w=200|h=120", + "details": ["Intel 2nd Gen Xeon Scalable"], + "price": "$6,972.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 14, + "category_img": "https://www.thinkmate.com/thumb?g=30/14434-0072.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 2nd Generation Intel Xeon based 14-Blade Modules", + "config": [ + "ProcessorBlade SBI-6419P-T3N (discontinued)", + "ProcessorBlade SBI-6419P-C3N (discontinued)" + ] + }, + { + "name": "Single Socket 2nd Generation Intel Xeon based 14-Blade Modules", + "config": [ + "ProcessorBlade SBI-6429P-T3N (discontinued)", + "ProcessorBlade SBI-6429P-C3N (discontinued)" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/14435-0060.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-614E-422 - 4x 2200W N+1 Redundant + 4x cooling fans", + "Supermicro SuperBlade™ Enclosure - SBE-614E-622 - 6x 2200W N+1 Redundant + 2x cooling fans", + "Supermicro SuperBlade™ Enclosure - SBE-614E-822 - 8x 2200W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-820L", + "image_url": "https://www.thinkmate.com/thumb?g=06/14029-0056.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "AMD EPYC 7003", + "Intel 2nd Gen Xeon Scalable" + ], + "price": "$6,885.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 20, + "category_img": "https://www.thinkmate.com/thumb?g=24/19542-0051.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 4th Generation Intel Xeon based 20-Blade Modules", + "config": ["ProcessorBlade SBI-411E-1G"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 20-Blade Modules", + "config": ["ProcessorBlade SBI-421E-1T3N"] + }, + { + "name": "Dual Socket 3rd Generation Intel Xeon based 20-Blade Modules", + "config": [ + "ProcessorBlade SBI-420P-1T3N", + "ProcessorBlade SBI-420P-1C2N", + "ProcessorBlade SBA-4114S-T2N", + "ProcessorBlade SBA-4114S-C2N" + ] + }, + { + "name": "Single Socket 3rd Generation AMD EPYC™ based 20-Blade Modules", + "config": ["GPU Blade Module - SBA-4119SG"] + }, + { + "name": "Quad Socket 2nd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-8149P-T8N (discontinued)", + "ProcessorBlade SBI-8149P-C4N (discontinued)" + ] + }, + { + "name": "Dual Socket 2nd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "TwinBlade Module SBI-4129P-T3N (discontinued)", + "TwinBlade Module SBI-4129P-C2N (discontinued)" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/14029-0056.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-820L-422 - 4 x 2200W N+1 Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-820L-622 - 6 x 2200W N+1 Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-820L-822 - 8 x 2200W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro Optional Cooling Fan Module for SuperBlade 8U Enclosure" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-820J", + "image_url": "https://www.thinkmate.com/thumb?g=19/15646-0022.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "AMD EPYC 7003", + "Intel 2nd Gen Xeon Scalable" + ], + "price": "$8,020.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 20, + "category_img": "https://www.thinkmate.com/thumb?g=24/19542-0051.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 4th Generation Intel Xeon based 20-Blade Modules", + "config": ["ProcessorBlade SBI-411E-1G"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 20-Blade Modules", + "config": ["ProcessorBlade SBI-421E-1T3N"] + }, + { + "name": "Dual Socket 3rd Generation Intel Xeon based 20-Blade Modules", + "config": [ + "ProcessorBlade SBI-420P-1T3N", + "ProcessorBlade SBI-420P-1C2N", + "ProcessorBlade SBA-4114S-T2N", + "ProcessorBlade SBA-4114S-C2N" + ] + }, + { + "name": "Single Socket 3rd Generation AMD EPYC™ based 20-Blade Modules", + "config": ["GPU Blade Module - SBA-4119SG"] + }, + { + "name": "Quad Socket 2nd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "ProcessorBlade SBI-8149P-T8N (discontinued)", + "ProcessorBlade SBI-8149P-C4N (discontinued)" + ] + }, + { + "name": "Dual Socket 2nd Generation Intel Xeon based 10-Blade Modules", + "config": [ + "TwinBlade Module SBI-4129P-T3N (discontinued)", + "TwinBlade Module SBI-4129P-C2N (discontinued)" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15646-0022.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-820J-422 - 4x 2200W N+1 Redundant + 4 cooling fans", + "Supermicro SuperBlade™ Enclosure - SBE-820J-622 - 6x 2200W N+1 Redundant + 2 cooling fans", + "Supermicro SuperBlade™ Enclosure - SBE-820J-822 - 8x 2200W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro Optional Cooling Fan Module for SuperBlade 8U Enclosure" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/9945-0023.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "3 Year Depot Warranty (Return for Repair)", + "3 Year Advanced Parts Replacement Warranty (Zone 0)", + "3 Year Advanced Parts Replacement Warranty (International) (Zone 01)", + "3 Year Advanced Parts Replacement Warranty (International) (Zone 02)", + "3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "3 Year Advanced Parts Replacement Warranty and Onsite Service (International) (Zone 01)", + "3 Year Advanced Parts Replacement Warranty and Onsite Service (International) (Zone 02)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "4 Year Advanced Parts Replacement Warranty (Zone 0)", + "4 Year Advanced Parts Replacement Warranty (International) (Zone 01)", + "4 Year Advanced Parts Replacement Warranty (International) (Zone 02)", + "4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "4 Year Advanced Parts Replacement Warranty and Onsite Service (International) (Zone 01)", + "4 Year Advanced Parts Replacement Warranty and Onsite Service (International) (Zone 02)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "5 Year Advanced Parts Replacement Warranty (Zone 0)", + "5 Year Advanced Parts Replacement Warranty (International) (Zone 01)", + "5 Year Advanced Parts Replacement Warranty (International) (Zone 02)", + "5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "5 Year Advanced Parts Replacement Warranty and Onsite Service (International) (Zone 01)", + "5 Year Advanced Parts Replacement Warranty and Onsite Service (International) (Zone 02)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "SBE-820J2", + "image_url": "https://www.thinkmate.com/thumb?g=16/19553-0079.png|w=200|h=120", + "details": ["Intel 5th/4th Gen Xeon Scalable"], + "price": "$11,990.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 20, + "category_img": "https://www.thinkmate.com/thumb?g=24/19542-0051.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 4th Generation Intel Xeon based 20-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-411E-1G"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 20-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-421E-1T3N"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 5-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-421E-5T3N"] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=16/19553-0079.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-820J2-630 - 6x 3000W N+1 Redundant + 8 cooling fans", + "Supermicro SuperBlade™ Enclosure - SBE-820J2-830 - 8x 3000W N+1 Redundant + 8 cooling fans" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro Optional Cooling Fan Module for SuperBlade 8U Enclosure" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-820H", + "image_url": "https://www.thinkmate.com/thumb?g=28/16712-0036.png|w=200|h=120", + "details": ["Intel 3rd Gen Xeon Scalable", "AMD EPYC 7003"], + "price": "$20,477.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 20, + "category_img": "https://www.thinkmate.com/thumb?g=24/19542-0051.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 4th Generation Intel Xeon based 20-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-411E-1G"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 20-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-421E-1T3N"] + }, + { + "name": "Dual Socket 3rd Generation Intel Xeon based 20-Blade Modules based 20-Blade Modules", + "config": [ + "ProcessorBlade SBI-420P-1T3N", + "ProcessorBlade SBI-420P-1C2N", + "ProcessorBlade SBA-4114S-T2N" + ] + }, + { + "name": "Single Socket 3rd Generation AMD EPYC™ based 20-Blade Modules", + "config": [ + "ProcessorBlade SBA-4114S-C2N", + "GPU Blade Module - SBA-4119SG" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/16712-0036.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-820H-622 - 6 x 2200W N+1 Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-820H-822 - 8 x 2200W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/12324-0054.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Spare Supermicro SuperBlade 2200W Redundant Power Module" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-P10 - Pass-Thru Module" + ] + } + }, + { + "category": { + "name": "High-Speed Interconnect", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/17476-0069.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro SBM-IBS-H4020 - 200G HDR InfiniBand Switch Module - 20 Int + 20 Ext (QSFP56)" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "config": [ + "Supermicro Optional Cooling Fan Module for SuperBlade 8U Enclosure" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + }, + { + "product_name": "SBE-820H2", + "image_url": "https://www.thinkmate.com/thumb?g=11/19555-0044.png|w=200|h=120", + "details": ["Intel 5th/4th Gen Xeon Scalable"], + "price": "$11,255.00", + "product_data": { + "config": [ + { + "category": { + "name": "Nodes", + "max_quantity": 20, + "category_img": "https://www.thinkmate.com/thumb?g=24/19542-0051.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Single Socket 4th Generation Intel Xeon based 20-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-411E-1G"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 20-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-421E-1T3N"] + }, + { + "name": "Dual Socket 4th Generation Intel Xeon based 5-Blade Modules based 20-Blade Modules", + "config": ["ProcessorBlade SBI-421E-5T3N"] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/19555-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SuperBlade™ Enclosure - SBE-820H2-630 - 6 x 3000W N+1 Redundant", + "Supermicro SuperBlade™ Enclosure - SBE-820H2-830 - 8 x 3000W N+1 Redundant" + ] + } + }, + { + "category": { + "name": "Ethernet Switches", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=28/12326-0019.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro MBM-GEM-004 - Broadcom BCM56151 1GbE Switch", + "Supermicro MBM-XEM-002 - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-002+ - Broadcom BCM56846 10GbE Low Latency Switch", + "Supermicro MBM-XEM-100 - Marvell BobCat3 98CX8410 10G Ethernet Switch", + "Supermicro SBM-25G-100 - Marvell BobCat3 98CX8410 25G Ethernet Switch", + "Supermicro SBM-25G-200 - Broadcom BCM56770 25GbE Low Latency Switch" + ] + } + }, + { + "category": { + "name": "High-Speed Interconnect", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/17476-0069.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Supermicro SBM-IBS-H4020 - 200G HDR InfiniBand Switch Module - 20 Int + 20 Ext (QSFP56)" + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/19018-0041.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro Chassis Management Module (MBM-CMM-6)"] + } + }, + { + "category": { + "name": "Power Protection", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/12403-0097.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "APC Smart-UPS SRT 5000VA RM 208V - 3U Rackmount", + "APC Rack PDU, Basic, 1U, 30A, 208V, (4) C19s" + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/3072-0093.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "System Assembly and Testing (Blade Enclosure) (SYSBLDBB)" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=02/1393-0016.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["SuperBlade Three Year Warranty"] + } + } + ] + } + } + ], + "type": "server" + }, + { + "_id": { + "$oid": "68227c5cc7f68c30a04ca50f" + }, + "name": "TWX", + "category": "Pedestal Servers", + "description": "Tower Servers designed for small business.", + "url": "https://www.thinkmate.com/systems/servers/twx", + "nav_image": "No image available", + "category_image": "https://www.thinkmate.com/cdn/landing-assets/servers/server_twx.png", + "server_title": "Great for businesses who don't require dedicated servers", + "server_details": "Tower/Pedestal Servers are a great match for small businesses who don't require dedicated servers or a rack-dense solution. Designed for industry-leading performance and high data availability, the tower server series is optimized for business critical applications such as databases, corporate networking, email and web servers, and NAS.", + "server_highlights_detail": [], + "server_section_image": "https://www.thinkmate.com/cdn/landing-assets/systems/twx/twx.png", + "products": [ + { + "product_name": "QS4-14R7", + "image_url": "https://www.thinkmate.com/thumb?g=23/12994-0039.png|w=200|h=120", + "details": [ + "AMD EPYC 4004", + "128 GBDDR5", + "1M.2", + "1PCIe 4.0 x4", + "1PCIe 5.0 x16", + "43.5\" SATA/SAS Hot-Swap", + "AMD Ryzen 7000" + ], + "price": "$1,653.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=05/18756-0075.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD B650E Chipset - 6x SATA - 1x M.2 NVMe - Dual 1 Gigabit Ethernet (RJ45)", + "AMD B650E Chipset - 6x SATA - 1x M.2 NVMe - Dual 10 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/18746-0052.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "AMD Ryzen™ 7000 Series Server Processors", + "config": [ + "Six-Core AMD Ryzen™ 5 7600 Processor - 3.80GHz 32MB L3 Cache (95W)", + "Eight-Core AMD Ryzen™ 7 7700 Processor - 3.80GHz 32MB L3 Cache (95W)", + "Twelve-Core AMD Ryzen™ 9 7900 Processor - 3.70GHz 64MB L3 Cache (95W)", + "Eight-Core AMD Ryzen™ 7 7800X3D Processor - 4.2GHz 96MB L3 Cache (120W)", + "Six-Core AMD Ryzen™ 5 7600X Processor - 4.70GHz 32MB L3 Cache (105W)", + "Eight-Core AMD Ryzen™ 7 7700X Processor - 4.50GHz 32MB L3 Cache (105W)", + "Twelve-Core AMD Ryzen™ 9 7900X Processor - 4.70GHz 64MB L3 Cache (170W)", + "Sixteen-Core AMD Ryzen™ 9 7950X Processor - 4.50GHz 64MB L3 Cache (170W)" + ] + }, + { + "name": "AMD Ryzen™ 9000 Series Processors", + "config": [ + "Six-Core AMD Ryzen™ 5 9600X Processor - 3.90GHz 32MB L3 Cache (65W)", + "Eight-Core AMD Ryzen™ 7 9700X Processor - 3.80GHz 32MB L3 Cache (65W)", + "Twelve-Core AMD Ryzen™ 9 9900X Processor - 4.40GHz 64MB L3 Cache (120W)", + "Sixteen-Core AMD Ryzen™ 9 9950X Processor - 4.30GHz 64MB L3 Cache (170W)" + ] + }, + { + "name": "AMD EPYC™ 4004 Series Processors", + "config": [ + "AMD EPYC™ 4124P Processor 4-core 3.8GHz 16MB Cache (65W)", + "AMD EPYC™ 4244P Processor 6-core 3.8GHz 32MB Cache (65W)", + "AMD EPYC™ 4344P Processor 8-core 3.8GHz 32MB Cache (65W)", + "AMD EPYC™ 4364P Processor 8-core 4.5GHz 32MB Cache (105W)", + "AMD EPYC™ 4464P Processor 12-core 3.7GHz 64MB Cache (65W)", + "AMD EPYC™ 4564P Processor 16-core 4.5GHz 64MB Cache (170W)", + "AMD EPYC™ 4484PX Processor 12-core 4.4GHz 128MB Cache (120W)", + "AMD EPYC™ 4584PX Processor 16-core 4.2GHz 128MB Cache (120W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=21/19071-0031.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Dynatron A19 3U Aluminum Heatsink with Embedded Heatpipe (AM4/AM5) (170W)" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/17372-0045.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz Unbuffered Non-ECC DDR5 DIMMs", + "config": [ + "Crucial 8GB PC5-38400 4800MHz DDR5 Non-ECC UDIMM", + "Crucial 16GB PC5-38400 4800MHz DDR5 Non-ECC UDIMM", + "Crucial 32GB PC5-38400 4800MHz DDR5 Non-ECC UDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=23/12994-0039.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - ATX - 4x 3.5\" SATA/SAS" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/18170-0012.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 80 PLUS Bronze Certified - 650W Power Supply" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/18121-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS4-14E2", + "image_url": "https://www.thinkmate.com/thumb?g=23/12994-0039.png|w=200|h=120", + "details": [ + "Intel Xeon E-2300", + "128 GBDDR4 ECC UDIMM", + "1M.2", + "1PCIe 4.0 x4", + "1PCIe 4.0 x16", + "43.5\" SATA/SAS Hot-Swap" + ], + "price": "$1,765.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/18129-0024.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C252 Chipset - mATX - 6x SATA3 - 1x M.2 NVMe - Dual Intel 1 Gigabit (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/17057-0033.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Intel Xeon E-2300 Processor Series", + "config": [ + "Quad-Core Intel Xeon E-2314 Processor 2.8GHz 8MB Cache (65W)", + "Quad-Core Intel Xeon E-2334 Processor 3.4GHz 8MB Cache (65W)", + "Six-Core Intel Xeon E-2336 Processor 2.9GHz 12MB Cache (65W)", + "Eight-Core Intel Xeon E-2378 Processor 2.6GHz 16MB Cache (65W)" + ] + }, + { + "name": "Intel Xeon E-2300 Processor Series with Intel UHD P750 Graphics", + "config": [ + "Quad-Core Intel Xeon E-2324G Processor 3.1GHz 8MB Cache (65W)", + "Quad-Core Intel Xeon E-2374G Processor 3.7GHz 8MB Cache (80W)", + "Six-Core Intel Xeon E-2356G Processor 3.2GHz 12MB Cache (80W)", + "Six-Core Intel Xeon E-2386G Processor 3.5GHz 12MB Cache (95W)", + "Eight-Core Intel Xeon E-2378G Processor 2.8GHz 16MB Cache (80W)", + "Eight-Core Intel Xeon E-2388G Processor 3.2GHz 16MB Cache (95W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/17086-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC UDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC UDIMM" + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=23/12994-0039.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - ATX - 4x 3.5\" SATA/SAS" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/18170-0012.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 80 PLUS Bronze Certified - 650W Power Supply" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["19PIN USB 3.0 F TO 9 PIN USBB2.0 MALE"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/18121-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS4-14W3", + "image_url": "https://www.thinkmate.com/thumb?g=23/12994-0039.png|w=200|h=120", + "details": [ + "Intel Xeon W-3300", + "512 GBDDR4 ECC RDIMM", + "1M.2", + "4PCIe 4.0 x16", + "43.5\" SATA/SAS Hot-Swap" + ], + "price": "$3,521.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=23/17966-0076.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 12x SATA3 - 1x M.2 NVMe - Dual Intel 1 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/16992-0056.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel Xeon W-3323 Processor 12-Core 3.5GHz 21MB Cache (220W)", + "Intel Xeon W-3335 Processor 16-Core 3.4GHz 24MB Cache (250W)", + "Intel Xeon W-3345 Processor 24-Core 3.0GHz 36MB Cache (250W)" + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=05/17001-0097.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Supermicro SNK-P0080AP4 Heatsink"] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=23/12994-0039.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - ATX - 4x 3.5\" SATA/SAS" + ] + } + }, + { + "category": { + "name": "Power Supply", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/18170-0012.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 80 PLUS Bronze Certified - 650W Power Supply" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=23/18022-0025.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["19PIN USB 3.0 F TO 9 PIN USBB2.0 MALE"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/18121-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS8-14E2", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "Intel Xeon E-2300", + "128 GBDDR4 ECC UDIMM", + "1M.2", + "1PCIe 4.0 x4", + "1PCIe 4.0 x16", + "83.5\" SATA/SAS Hot-Swap" + ], + "price": "$2,550.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/18129-0024.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C252 Chipset - mATX - 6x SATA3 - 1x M.2 NVMe - Dual Intel 1 Gigabit (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/17057-0033.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Intel Xeon E-2300 Processor Series", + "config": [ + "Quad-Core Intel Xeon E-2314 Processor 2.8GHz 8MB Cache (65W)", + "Quad-Core Intel Xeon E-2334 Processor 3.4GHz 8MB Cache (65W)", + "Six-Core Intel Xeon E-2336 Processor 2.9GHz 12MB Cache (65W)", + "Eight-Core Intel Xeon E-2378 Processor 2.6GHz 16MB Cache (65W)" + ] + }, + { + "name": "Intel Xeon E-2300 Processor Series with Intel UHD P750 Graphics", + "config": [ + "Quad-Core Intel Xeon E-2324G Processor 3.1GHz 8MB Cache (65W)", + "Quad-Core Intel Xeon E-2374G Processor 3.7GHz 8MB Cache (80W)", + "Six-Core Intel Xeon E-2356G Processor 3.2GHz 12MB Cache (80W)", + "Six-Core Intel Xeon E-2386G Processor 3.5GHz 12MB Cache (95W)", + "Eight-Core Intel Xeon E-2378G Processor 2.8GHz 16MB Cache (80W)", + "Eight-Core Intel Xeon E-2388G Processor 3.2GHz 16MB Cache (95W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=13/17086-0069.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "16GB PC4-25600 3200MHz DDR4 ECC UDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC UDIMM" + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "radio", + "config": ["19PIN USB 3.0 F TO 9 PIN USBB2.0 MALE"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS8-14S3", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "83.5\" SATA/SAS Hot-Swap", + "4PCIe 4.0 x16", + "Redundant Power", + "Optane", + "Dual 10 Gigabit Ethernet" + ], + "price": "$3,970.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/18031-0088.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 8x SATA3 - 1x M.2 NVMe - Dual Intel 10 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation Intel Xeon Scalable Processors", + "config": [ + "Intel Xeon Gold 6312U Processor 24-Core 2.4GHz 36MB Cache (185W)", + "Intel Xeon Gold 6314U Processor 32-Core 2.3GHz 48MB Cache (205W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)", + "Intel Xeon Platinum 8351N Processor 36-Core 2.4GHz 54MB Cache (225W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=01/18084-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 2U Aluminum Heatsink with Embedded Heatpipe" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS8-24S3", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "83.5\" SATA/SAS Hot-Swap", + "6PCIe 4.0 x16", + "Redundant Power", + "Optane", + "Dual 10 Gigabit Ethernet" + ], + "price": "$5,249.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/18035-0060.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 12x SATA3 - 2x M.2 NVMe - Dual Intel 1 Gigabit Ethernet (RJ45)", + "Intel C621A Chipset - 12x SATA3 - 2x M.2 NVMe - Dual Intel 1 Gigabit + Dual Intel 10 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=01/18084-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 2U Aluminum Heatsink with Embedded Heatpipe" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS8-24S3.1", + "image_url": "https://www.thinkmate.com/thumb?g=01/16054-0020.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "83.5\" SATA/SAS Hot-Swap", + "2PCIe 4.0 x8", + "Redundant Power", + "Optane", + "4PCIe 4.0 x16" + ], + "price": "$4,688.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=01/16054-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C621A Chipset - 4U/Tower - 8x 3.5\" SATA - Dual 10 Gigabit Ethernet - 1200W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=10/14505-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Horizontal", + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Server Provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS8-14S4", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "2 TBDDR5 ECC RDIMM", + "1M.2", + "4PCIe 5.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "83.5\" SATA/SAS Hot-Swap" + ], + "price": "$4,669.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18642-0003.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 8x SATA3 - 1x M.2 NVMe - Dual Intel 10 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8452Y Processor 36-Core 2.0GHz 67.5 MB Cache (300W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)", + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)", + "Intel Xeon Platinum 8462Y+ Processor 32-Core 2.8GHz 60 MB Cache (300W)", + "Intel Xeon Platinum 8470 Processor 52-Core 2.0GHz 105 MB Cache (350W)", + "Intel Xeon Platinum 8480+ Processor 56-Core 2.0GHz 105 MB Cache (350W)" + ] + }, + { + "name": "IoT Optimized / Long Life", + "config": [ + "Intel Xeon Silver 4410T Processor 10-Core 2.7GHz 26.25 MB Cache (150W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5411N Processor 24-Core 1.9GHz 45 MB Cache (165W)", + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6421N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)", + "Intel Xeon Platinum 8470N Processor 52-Core 1.7GHz 97.5 MB Cache (300W)", + "Intel Xeon Platinum 8471N Processor 52-Core 1.8GHz 97.5 MB Cache (300W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "Specialized for IMDB & Analytics", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)", + "Intel Xeon Platinum 8460H Processor 40-Core 2.2GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8468H Processor 48-Core 2.1GHz 105 MB Cache (330W)", + "Intel Xeon Platinum 8490H Processor 60-Core 1.9GHz 112.5 MB Cache (350W)" + ] + }, + { + "name": "Specialized for High Bandwidth Memory", + "config": [ + "Intel Xeon CPU Max 9462 Processor 32-Core 2.7GHz 75 MB Cache (350W)", + "Intel Xeon CPU Max 9460 Processor 40-Core 2.2GHz 97.5 MB Cache (350W)", + "Intel Xeon CPU Max 9468 Processor 48-Core 2.1GHz 105 MB Cache (350W)" + ] + }, + { + "name": "Single Socket 5th Generation Intel Xeon Scalable General Purpose Processor", + "config": [ + "Intel Xeon Gold 5512U Processor 28-Core 2.1GHz 52.5MB Cache (185W)", + "Intel Xeon Platinum 8558U Processor 48-Core 2.0GHz 260MB Cache (300W)" + ] + }, + { + "name": "5th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)", + "Intel Xeon Platinum 8558 Processor 48-Core 2.1GHz 260MB Cache (330W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8562Y+ Processor 32-Core 2.8GHz 60MB Cache (300W)", + "Intel Xeon Platinum 8568Y+ Processor 48-Core 2.3GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8570 Processor 56-Core 2.1GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8580 Processor 60-Core 2.0GHz 300MB Cache (350W)", + "Intel Xeon Platinum 8592+ Processor 64-Core 1.9GHz 320MB Cache (350W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)", + "Intel Xeon Platinum 8571N Processor 52-Core 2.4GHz 300MB Cache (300W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + }, + { + "name": "Specialized for Cloud/IaaS/Density", + "config": [ + "Intel Xeon Platinum 8558P Processor 48-Core 2.7GHz 260MB Cache (350W)", + "Intel Xeon Platinum 8581V Processor 60-Core 2.0GHz 300MB Cache (270W)", + "Intel Xeon Platinum 8592V Processor 64-Core 2.0GHz 320MB Cache (330W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/18865-0064.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SNK-P0090AP4 - 4U Active High-Performance CPU Heat Sink" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XS8-24S4", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "2 TBDDR5 ECC RDIMM", + "2M.2", + "6PCIe 5.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "83.5\" SATA/SAS Hot-Swap" + ], + "price": "$5,718.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18643-0027.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 12x SATA3 - 2x M.2 NVMe - Dual Intel 1 Gigabit + Dual Intel 10 Gigabit Ethernet (RJ45)", + "Intel C741 Chipset - 12x SATA3 - 2x M.2 NVMe - Dual Intel 1 Gigabit + Dual Broadcom 10 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6430 Processor 32-Core 2.1GHz 60 MB Cache (270W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)", + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)" + ] + }, + { + "name": "IoT Optimized / Long Life", + "config": [ + "Intel Xeon Silver 4410T Processor 10-Core 2.7GHz 26.25 MB Cache (150W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5411N Processor 24-Core 1.9GHz 45 MB Cache (165W)", + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "Specialized for IMDB & Analytics", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6448H Processor 32-Core 2.4GHz 60 MB Cache (250W)", + "Intel Xeon Platinum 8444H Processor 16-Core 2.9GHz 45 MB Cache (270W)", + "Intel Xeon Platinum 8450H Processor 28-Core 2.0GHz 75 MB Cache (250W)", + "Intel Xeon Platinum 8454H Processor 32-Core 2.1GHz 82.5 MB Cache (270W)" + ] + }, + { + "name": "5th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4509Y Processor 8-Core 2.6GHz 22.5MB Cache (125W)", + "Intel Xeon Silver 4510 Processor 12-Core 2.4GHz 30MB Cache (150W)", + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6530 Processor 32-Core 2.1GHz 160MB Cache (270W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)", + "Intel Xeon Gold 6542Y Processor 24-Core 2.9GHz 60MB Cache (250W)", + "Intel Xeon Gold 6544Y Processor 16-Core 3.6GHz 45MB Cache (270W)", + "Intel Xeon Gold 6548Y+ Processor 32-Core 2.5GHz 60MB Cache (250W)", + "Intel Xeon Silver 4510T Processor 12-Core 2.0GHz 30MB Cache (115W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)", + "Intel Xeon Gold 6548N Processor 32-Core 2.8GHz 60MB Cache (250W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 6554S Processor 36-Core 2.2GHz 180MB Cache (270W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=21/18865-0064.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SNK-P0090AP4 - 4U Active High-Performance CPU Heat Sink" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS8-14E3", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "2 TBDDR4 ECC RDIMM", + "83.5\" SATA/SAS Hot-Swap", + "1PCIe 3.0 x16", + "Redundant Power", + "4PCIe 4.0 x16", + "1PCIe 4.0 x8" + ], + "price": "$3,956.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=12/18027-0055.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC 7003 - 8x SATA3 - 2x M.2 NVMe - Dual Intel 1 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16520-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203P Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303P Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313P Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7443P Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7543P Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643P Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663P Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713P Processor 64-core 2.00GHz 256MB Cache (225W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/18063-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 2U Aluminum Heatsink with Embedded Heatpipe" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28", + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS8-24E3", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "2 TBDDR4 ECC RDIMM", + "83.5\" SATA/SAS Hot-Swap", + "2PCIe 4.0 x8", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "3PCIe 4.0 x16" + ], + "price": "$6,095.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/18028-0084.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC 7003 - 8x SATA3 - 1x M.2 NVMe - Dual 10 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7453 Processor 28-core 2.75GHz 128MB Cache (225W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)", + "AMD EPYC™ 7543 Processor 32-core 2.80GHz 256MB Cache (225W)", + "AMD EPYC™ 7643 Processor 48-core 2.30GHz 256MB Cache (225W)", + "AMD EPYC™ 7663 Processor 56-core 2.00GHz 256MB Cache (240W)", + "AMD EPYC™ 7713 Processor 64-core 2.00GHz 256MB Cache (225W)", + "AMD EPYC™ 7763 Processor 64-core 2.45GHz 256MB Cache (280W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 7373X Processor 16-core 3.05GHz 768MB Cache (240W)", + "AMD EPYC™ 7473X Processor 24-core 2.80GHz 768MB Cache (240W)", + "AMD EPYC™ 7573X Processor 32-core 2.80GHz 768MB Cache (280W)", + "AMD EPYC™ 7773X Processor 64-core 2.20GHz 768MB Cache (280W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)", + "AMD EPYC™ 73F3 Processor 16-core 3.50GHz 256MB Cache (240W)", + "AMD EPYC™ 74F3 Processor 24-core 3.20GHz 256MB Cache (240W)", + "AMD EPYC™ 75F3 Processor 32-core 2.95GHz 256MB Cache (280W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/18063-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 2U Aluminum Heatsink with Embedded Heatpipe" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/15269-0092.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=18/8317-0026.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9361/9380 Series (CVM02) (with bracket)", + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 3, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 5, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS8-14E4", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "1M.2", + "4PCIe 5.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "83.5\" SATA/SAS Hot-Swap" + ], + "price": "$7,371.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=17/18425-0053.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC 9004 - 16x SATA3 - 1x M.2 NVMe - Dual 10 Gigabit Ethernet (RJ45)" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/18277-0069.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9354P Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454P Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9554P Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9654P Processor 96-core 2.40GHz 384MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9554 Processor 64-core 3.10GHz 256MB Cache (360W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)", + "AMD EPYC™ 9654 Processor 96-core 2.40GHz 384MB Cache (360W)", + "AMD EPYC™ 9734 Processor 112-core 2.20GHz 256MB Cache (340W)", + "AMD EPYC™ 9754 Processor 128-core 2.25GHz 256MB Cache (360W)" + ] + }, + { + "name": "4th Generation AMD EPYC™ Processors with AMD 3D V-Cache™ Technology", + "config": [ + "AMD EPYC™ 9184X Processor 16-core 3.55GHz 768MB Cache (320W)", + "AMD EPYC™ 9384X Processor 32-core 3.10GHz 768MB Cache (320W)" + ] + }, + { + "name": "Frequency Optimized 4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9174F Processor 16-core 4.10GHz 256MB Cache (320W)", + "AMD EPYC™ 9274F Processor 24-core 4.05GHz 256MB Cache (320W)", + "AMD EPYC™ 9374F Processor 32-core 3.85GHz 256MB Cache (320W)", + "AMD EPYC™ 9474F Processor 48-core 3.60GHz 256MB Cache (360W)" + ] + }, + { + "name": "Single Socket Optimized 5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9355P Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9455P Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9555P Processor 64-core 3.2GHz 256MB Cache (360W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9175F Processor 16-core 4.2GHz 512MB Cache (320W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9275F Processor 24-core 4.1GHz 256MB Cache (320W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9375F Processor 32-core 3.8GHz 256MB Cache (320W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)", + "AMD EPYC™ 9555 Processor 64-core 3.2GHz 256MB Cache (360W)", + "AMD EPYC™ 9645 Processor 96-core 2.3GHz 256MB Cache (320W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/18662-0034.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 2U Aluminum Heatsink with Embedded Heatpipe" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QS8-24E4", + "image_url": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "1M.2", + "4PCIe 5.0 x16", + "Redundant Power", + "Dual 10 Gigabit Ethernet", + "83.5\" SATA/SAS Hot-Swap" + ], + "price": "$7,891.00", + "product_data": { + "config": [ + { + "category": { + "name": "Motherboard", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/20361-0073.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC 9005 - 4x SATA3 - 1x M.2 NVMe - Dual 10 Gigabit Ethernet (RJ45) - PCIe Gen5" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)", + "AMD EPYC™ 9354 Processor 32-core 3.25GHz 256MB Cache (280W)", + "AMD EPYC™ 9454 Processor 48-core 2.75GHz 256MB Cache (290W)", + "AMD EPYC™ 9534 Processor 64-core 2.45GHz 256MB Cache (280W)", + "AMD EPYC™ 9634 Processor 84-core 2.25GHz 384MB Cache (290W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)", + "AMD EPYC™ 9355 Processor 32-core 3.55GHz 256MB Cache (280W)", + "AMD EPYC™ 9365 Processor 36-core 3.4GHz 192MB Cache (300W)", + "AMD EPYC™ 9455 Processor 48-core 3.15GHz 256MB Cache (300W)", + "AMD EPYC™ 9535 Processor 64-core 2.4GHz 256MB Cache (300W)" + ] + } + ] + } + }, + { + "category": { + "name": "Processor Heatsink", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/18662-0034.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate 2U Aluminum Heatsink with Embedded Heatpipe" + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Chassis", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/18515-0085.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate TWX Series Tower Chassis - EATX - 8x 3.5\" SATA/SAS - 1200W Redundant Power" + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Western Digital Enterprise Class SAS Hard Drives", + "config": [ + "4TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "6TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC520 (512e)", + "14TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC560 (512e/4Kn)", + "22TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC570 (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC580 (512e/4Kn)", + "26TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC590 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "4TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X20 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SAS Hard Drives", + "config": [ + "8TB SAS3 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos 7E10 Series (512e/4Kn)", + "18TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class X24 SAS Hard Drives", + "config": [ + "12TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "16TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "20TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn)", + "24TB SAS 3.0 12.0Gb/s 7200RPM - 3.5\" - Seagate Exos X24 Series FastFormat™ (512e/4Kn) ISE" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "5.25\" Bay", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=21/10628-0092.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "LG 24x Super Multi DVD+/-RW with M-DISC (SATA)", + "LG 16x Super Multi Blu-Ray Disc Rewriter with M-DISC (SATA)" + ] + } + }, + { + "category": { + "name": "Video Card", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/115-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["Integrated Video (Included with Motherboard)"] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapters", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 4.0 x16 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200 Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled", + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 1, + "category_img": "https://www.thinkmate.com/thumb?g=13/20262-0094.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["CTM012 - Trusted Platform Module - TPM 2.0 - SPI"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/705-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "8\" EPS 8 Pin Power Extension Cable", + "8pin EPS to 6/6+2pin PCIe Power Adapter" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Accessories", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18098-0083.png|w=80|h=60", + "config_choice_type": "radio", + "config": ["4x 3.5\" SATA/SAS Hot-Swap Module"] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=08/540-0044.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Branding", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=25/2009-0067.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Thinkmate System Badge - 1.0\" x 1.0\""] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + } + ], + "type": "server" + }, + { + "_id": { + "$oid": "68227c5cc7f68c2cd54ca50e" + }, + "name": "HDX", + "category": "High Density Servers", + "description": "2-8 Servers in one for increased compute density and power efficiency.", + "url": "https://www.thinkmate.com/systems/servers/hdx", + "nav_image": "https://www.thinkmate.com/wwwinc/static/menu/server-hdx.png", + "category_image": "https://www.thinkmate.com/cdn/landing-assets/servers/server_hdx.png", + "server_title": "Energy Efficient, High-Density, High-Performance Servers", + "server_details": "Thinkmates high-density, multi-node HDX servers are the ultimate solution for your enterprise data center. In today's fast-paced and data-driven world, having a reliable and efficient server infrastructure is crucial for success. Whether you're dealing with complex cloud computing, virtualization, or big data analytics, our servers provide the performance and scalability you need to keep pace with your growing business needs. || With a focus on high-density design, these servers are equipped with multiple nodes in a single chassis, maximizing your data center space while still delivering top-notch performance. We use the latest technologies, including Intel Xeon Scalable and AMD EPYC processors to ensure that your server can handle even the most demanding applications. || In addition to raw performance, we understand the importance of reliability and availability, which is why our servers are equipped with redundant power and network connections. This ensures that your server infrastructure is always up and running, even in the face of hardware failures. || Overall, our selection of high-level, multi-node servers is designed to meet the needs of the modern enterprise. Whether you're just starting out or looking to upgrade your existing infrastructure, our servers are the perfect choice for businesses of all sizes. Contact us today to learn more and see how we can help you achieve your goals.", + "server_highlights": "HDX High-Density Server Highlights:", + "server_highlights_detail": [ + "Up to 4 server nodes in a single chassis for increased density", + "Cutting-edge technology, including the latest CPU and data storage media options", + "Redundant power and network connections for high availability", + "Scalable design for future growth", + "Energy-efficient cooling solutions", + "Technical support available to ensure smooth operation" + ], + "server_section_image": "https://www.thinkmate.com/cdn/landing-assets/systems/hdx/hdx.png", + "products": [ + { + "product_name": "QN8-52E4", + "image_url": "https://www.thinkmate.com/thumb?g=16/18352-0020.png|w=200|h=120", + "details": [ + "AMD EPYC 9004/9005", + "3 TBDDR5 ECC RDIMM", + "22.5\" SATA Hot-Swap", + "1OCP 3.0 x16", + "Redundant Power", + "1PCIe 5.0 x16 LP", + "22.5\" NVMe Hot-Swap" + ], + "price": "$33,031.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=16/18352-0020.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "AMD EPYC™ 9005 Series - 2U 4-Node - 2x Hot-Swap Hybrid - Dual-Port Ethernet - 3000W Power Supply" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18285-0035.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9124 Processor 16-core 3.00GHz 64MB Cache (200W)", + "AMD EPYC™ 9224 Processor 24-core 2.50GHz 64MB Cache (200W)", + "AMD EPYC™ 9254 Processor 24-core 2.90GHz 128MB Cache (200W)", + "AMD EPYC™ 9334 Processor 32-core 2.70GHz 128MB Cache (210W)" + ] + }, + { + "name": "5th Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 9015 Processor 8-core 3.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9115 Processor 16-core 2.60GHz 64MB Cache (155W)", + "AMD EPYC™ 9135 Processor 16-core 3.65GHz 64MB Cache (200W)", + "AMD EPYC™ 9255 Processor 24-core 3.25GHz 128MB Cache (200W)", + "AMD EPYC™ 9335 Processor 32-core 3.0GHz 128MB Cache (210W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=30/18226-0099.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "512GB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "2.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "4.0TB Kioxia XG8 M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Controller Card", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=08/17939-0002.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "12Gb SAS Host Bus Adapter", + "config": [ + "Broadcom HBA 9500-8i SAS3/SATA 8-Port Tri-Mode Host Bus Adapter - PCIe 4.0 x8" + ] + }, + { + "name": "12Gb SAS RAID Controllers (RAID 0/1/5/6/10/50/60)", + "config": [ + "Broadcom MegaRAID 9540-8i SAS3/SATA 8-Port Controller - PCIe 4.0 x8 (No Cache, 0/1/10 only)", + "Broadcom MegaRAID 9560-8i SAS3/SATA 8-Port RAID - 4GB - PCIe 4.0 x8", + "Broadcom MegaRAID 9580-8i8e SAS3/SATA 8+8-Port RAID - 8GB - PCIe 4.0 x8" + ] + } + ] + } + }, + { + "category": { + "name": "Battery Backup", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=19/16525-0070.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "CacheVault Flash Cache Protection Module for 9460/9480/9560/9580 Series (CVPM05) (with bracket)" + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/18362-0011.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate Server Management Software Package - IPMI and Redfish Compatible" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/15200-0044.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "HDX QN8-52E4", + "description": "The Thinkmate HDX QN8-52E4 high density server is a 2U, 4-node dual-socket system designed to support workloads at a massive scale. This server provides extreme density, ideal for multi-rack scale deployments. A selection of NVMe, SAS, and SATA storage devices provide balanced on-board data storage that avoids bottlenecks. Users can expect strong performance from this system in hyperconverged workloads and scale out data storage.With each node supporting AMD EPYC 9004 series processors, 3TB of DRAM, and 2 drives per node (adding up to 8 hot-swappable NVMe/SAS/SATA drives total), the HDX QN8-52E4 is the ideal high-performance server for highly parallel HPC and AI workloads.Every Thinkmate high density server solution comes standard with a 3-year warranty. The Thinkmate HDX QN8-52E4 high density server is a 2U, 4-node dual-socket system designed to support workloads at a massive scale. This server provides extreme density, ideal for multi-rack scale deployments. A selection of NVMe, SAS, and SATA storage devices provide balanced on-board data storage that avoids bottlenecks. Users can expect strong performance from this system in hyperconverged workloads and scale out data storage. With each node supporting AMD EPYC 9004 series processors, 3TB of DRAM, and 2 drives per node (adding up to 8 hot-swappable NVMe/SAS/SATA drives total), the HDX QN8-52E4 is the ideal high-performance server for highly parallel HPC and AI workloads. Every Thinkmate high density server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Back-Up and Recovery", + "Hyperconverged Infrastructure", + "Scale-Out Object Storage" + ], + "specifications": { + "Supported Processor": "AMD EPYC 9005 Series", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U 4-Node", + "Ethernet": "Intel i350-AM2 Dual-Port Gigabit Ethernet (per node)1 RJ45 Management LAN port (per node)", + "Power": "3000W (2+0) 80 PLUS Platinum Power Supply", + "External Bays": "2x 2.5-inch Hot-Swap Drive Bays (per node)8x 2.5-inch Hot-Swap Drive Bays (total)" + }, + "industries": [ + "Data Center and Cloud", + "Engineering", + "Financial Services", + "Aerospace / Defense" + ] + } + }, + { + "product_name": "XH24-52S4", + "image_url": "https://www.thinkmate.com/thumb?g=04/18559-0071.png|w=200|h=120", + "details": [ + "Intel 5th/4th Gen Xeon Scalable", + "4TBDDR5 ECC RDIMM", + "62.5\" SATA/SAS/NVMe Hot-Swap", + "1OCP 3.0 x16", + "Redundant Power", + "NVMe", + "2PCIe 5.0 x16 LP" + ], + "price": "$24,213.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/18559-0071.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel C741 Chipset - 2U 4-Node - 24x 2.5\" Hybrid - 2600W 1+1 Redundant Power" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=19/18510-0038.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4410Y Processor 12-Core 2.0GHz 30 MB Cache (150W)", + "Intel Xeon Silver 4416+ Processor 20-Core 2.0GHz 37.5 MB Cache (165W)", + "Intel Xeon Gold 5418Y Processor 24-Core 2.0GHz 45 MB Cache (185W)", + "Intel Xeon Gold 5420+ Processor 28-Core 2.0GHz 52.5 MB Cache (205W)", + "Intel Xeon Gold 6438Y+ Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5415+ Processor 8-Core 2.9GHz 22.5 MB Cache (150W)", + "Intel Xeon Gold 6426Y Processor 16-Core 2.5GHz 37.5 MB Cache (185W)", + "Intel Xeon Gold 6442Y Processor 24-Core 2.6GHz 60 MB Cache (225W)", + "Intel Xeon Gold 6448Y Processor 32-Core 2.1GHz 60 MB Cache (225W)" + ] + }, + { + "name": "IoT Optimized / Long Life", + "config": [ + "Intel Xeon Silver 4410T Processor 10-Core 2.7GHz 26.25 MB Cache (150W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5411N Processor 24-Core 1.9GHz 45 MB Cache (165W)", + "Intel Xeon Gold 5418N Processor 24-Core 1.8GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6428N Processor 32-Core 1.8GHz 60 MB Cache (185W)", + "Intel Xeon Gold 6438N Processor 32-Core 2.0GHz 60 MB Cache (205W)" + ] + }, + { + "name": "Specialized for Storage & HCI", + "config": [ + "Intel Xeon Gold 5416S Processor 16-Core 2.0GHz 30 MB Cache (150W)" + ] + }, + { + "name": "Specialized for IMDB & Analytics", + "config": [ + "Intel Xeon Gold 6434H Processor 8-Core 3.7GHz 22.5 MB Cache (195W)", + "Intel Xeon Gold 6416H Processor 18-Core 2.2GHz 45 MB Cache (165W)", + "Intel Xeon Gold 6418H Processor 24-Core 2.1GHz 60 MB Cache (185W)" + ] + }, + { + "name": "5th Generation Intel Xeon Scalable General Purpose Processors", + "config": [ + "Intel Xeon Silver 4514Y Processor 16-Core 2.0GHz 30MB Cache (150W)", + "Intel Xeon Gold 5520+ Processor 28-Core 2.2GHz 52.5MB Cache (205W)", + "Intel Xeon Gold 6538Y+ Processor 32-Core 2.2GHz 60MB Cache (225W)" + ] + }, + { + "name": "Performance Optimized", + "config": [ + "Intel Xeon Gold 5515+ Processor 8-Core 3.2GHz 22.5MB Cache (165W)", + "Intel Xeon Gold 6526Y Processor 16-Core 2.8GHz 37.5MB Cache (195W)", + "Intel Xeon Gold 6534 Processor 8-Core 3.9GHz 22.5MB Cache (195W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 6538N Processor 32-Core 2.1GHz 60MB Cache (205W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/19861-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "4800MHz ECC Registered DDR5 DIMMs", + "config": [ + "16GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "24GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "32GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "48GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "64GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "96GB PC5-38400 4800MHz DDR5 ECC RDIMM", + "128GB PC5-38400 4800MHz DDR5 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=15/9203-0076.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Seagate Exos 7E2000 Enterprise-Class SATA Hard Drive", + "config": [ + "1.0TB SATA 6.0Gb/s 7200RPM - 2.5\" - Seagate Exos 7E2000 Series (512e)" + ] + }, + { + "name": "Micron 5400 PRO Enterprise-Class SATA Solid State Drives", + "config": [ + "240GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "480GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "7.68TB Micron 5400 PRO Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Micron 5400 MAX Enterprise-Class SATA Solid State Drives", + "config": [ + "480GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "960GB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "1.92TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Micron 5400 MAX Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4610 Series Enterprise SATA SSD - 3 DWPD", + "config": [ + "960GB Solidigm SSD D3-S4610 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7500 PRO Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7500 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7500 MAX Series U.3 PCIe 4.0 1x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 PRO Series PCIe 5.0 1x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "7.68TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "15.36TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "30.72TB Micron 9550 PRO Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9550 MAX Series PCIe 5.0 1x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "3.2TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "6.4TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "12.8TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive", + "25.6TB Micron 9550 MAX Series U.2 PCIe 5.0 1x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "SanDisk SN655 Series PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "3.84TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "7.68TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "15.36TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "30.72TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive", + "61.44TB SanDisk Ultrastar DC SN655 Series U.3 PCIe 4.0 NVMe Solid State Drive" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter - OCP", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=16/18312-0061.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter N41T - PCIe 2.1 x4 - OCP 3.0 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210TP - PCIe 3.0 x8 - OCP 3.0 - 2x RJ-45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter N210P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N225P - PCIe 3.0 x8 - OCP 3.0 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter N425G - PCIe 4.0 x16 - OCP 3.0 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N1100 - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter N2100G - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter N1200G - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - OCP 3.0 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - OCP 3.0 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - OCP 3.0 - 2x SFP+", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA4 - PCIe 3.0 x8 - OCP 3.0 - 4x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - OCP 3.0 - 2x SFP28", + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA4 - PCIe 3.0 x16 - OCP 3.0 - 4x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA - PCIe 4.0 x16 - OCP 3.0 - 1x QSFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA2 - PCIe 4.0 x16 - OCP 3.0 - 2x QSFP28" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-6 Series 200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/Gigabit Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Disabled", + "NVIDIA ConnectX-7 200 Gigabit Ethernet Adapter - PCIe 5.0 x16 - 2x QSFP112 - Crypto Enabled" + ] + }, + { + "name": "NVIDIA ConnectX-7 Series 200/400 Gigabit NDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-7 200 Gigabit NDR200 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Disabled", + "NVIDIA ConnectX-7 400 Gigabit NDR400 InfiniBand Adapter - PCIe 5.0 x16 - 1x OSFP - Crypto Enabled" + ] + } + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=19/15211-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": ["Trusted Platform Module - TPM 2.0"] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=16/15200-0044.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ], + "title": "HDX XH24-52S4", + "description": "The Thinkmate HDX XH24-52S4 is a 2U four node high-density server solution. The HDX XH24-52S4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads.The HDX XH24-52S4 provides up to 24 2.5\" SATA/SAS/NVMe hot-swappable drives, and eight PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part or a larger HPC, cloud, or data center deployment.Every Thinkmate server solution comes standard with a 3-year warranty. The Thinkmate HDX XH24-52S4 is a 2U four node high-density server solution. The HDX XH24-52S4 features a dual-socket motherboard based on Intel Xeon Scalable 4th generation processors designed to support a variety of workloads. The HDX XH24-52S4 provides up to 24 2.5\" SATA/SAS/NVMe hot-swappable drives, and eight PCIe Gen5 slots. This 4th generation Intel Xeon Scalable server provides high-performance processing to support data-intensive business use cases, or as a part or a larger HPC, cloud, or data center deployment. Every Thinkmate server solution comes standard with a 3-year warranty.", + "use_cases": [ + "Cloud Computing", + "Data Center, front-end server", + "High-Performance Computing", + "SMB file/exchange server" + ], + "specifications": { + "Supported Processor": "4th Gen Intel Xeon Scalable Processors", + "Memory Technology": "DDR5 ECC Registered", + "Form Factor": "2U 4-Node", + "Ethernet": "Per node: Dedicated Management LAN port only", + "Power": "Dual 2600W (240V) 80 PLUS Titanium redundant power supply (shared for all 4 nodes)Redundancy depends on configurationOptional 3rd power supply", + "External Bays": "24x 2.5-inch hot-swap drives (6 per node)" + }, + "industries": [ + "Cloud Services", + "Engineering", + "Financial Services", + "Life Sciences" + ] + } + }, + { + "product_name": "XN12-32S3", + "image_url": "https://www.thinkmate.com/thumb?g=06/16648-0030.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "62.5\" NVMe Hot-Swap", + "1PCIe 4.0 x16 LP", + "Redundant Power", + "Optane", + "NVMe" + ], + "price": "$20,960.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/16648-0030.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U 2-Node - Intel C621A Chipset - 12x NVMe/SATA + 2x M.2 - 2200W 1+1 Redundant Power", + "2U 2-Node - Intel C621A Chipset - 12x NVMe/SATA/SAS + 2x M.2 - Broadcom 3808 12G SAS - 2200W 1+1 Redundant Power" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/16553-0003.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=19/15494-0084.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/16001-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 - Gigabit Ethernet 4x SFP - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/14514-0087.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Horizontal" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XN24-32S3", + "image_url": "https://www.thinkmate.com/thumb?g=20/16645-0094.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "122.5\" NVMe Hot-Swap", + "1PCIe 4.0 x16 LP", + "Redundant Power", + "Optane", + "NVMe" + ], + "price": "$20,201.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=20/16645-0094.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U 2-Node - Intel C621A Chipset - 24x NVMe/SATA + 2x M.2 - 2200W 1+1 Redundant", + "2U 2-Node - Intel C621A Chipset - 24x NVMe/SAS + 2x M.2 - Broadcom 3816 12G SAS - 2200W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/16553-0003.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)", + "Intel Xeon Gold 6348 Processor 28-Core 2.6GHz 42MB Cache (235W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Platinum Processors", + "config": [ + "Intel Xeon Platinum 8358 Processor 32-Core 2.6GHz 48MB Cache (250W)", + "Intel Xeon Platinum 8362 Processor 32-Core 2.8GHz 48MB Cache (265W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=29/16898-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=25/17137-0008.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 25/100 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56" + ] + }, + { + "name": "Broadcom 200 Gigabit Ethernet Adapter", + "config": [ + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel E810-CQ Series 100 Gigabit Ethernet Adapter", + "config": [ + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 25/100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 6, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom NetXtreme E.Series 1/10/25/50 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810-XXV Series 10/25 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100GbE HDR IB Adapter", + "config": [ + "NVIDIA ConnectX-6 100 Gigabit HDR100 InfiniBand Adapter - PCIe 4.0 x8 - 1x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/16001-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 - Gigabit Ethernet 4x SFP - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=05/14514-0087.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Horizontal" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 2, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XN12-52S3", + "image_url": "https://www.thinkmate.com/thumb?g=11/16652-0096.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "32.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16 LP", + "Redundant Power", + "Optane", + "NVMe" + ], + "price": "$22,293.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/16652-0096.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U 4-Node - Intel C621A Chipset - 12x NVMe/SATA + 8x M.2 - 2600W 1+1 Redundant", + "2U 4-Node - Intel C621A Chipset - 12x NVMe/SATA/SAS + 8x M.2 - Broadcom 3808 12G SAS - 2600W 1+1 Power" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=07/16547-0040.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=19/15494-0084.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)" + ] + }, + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/16001-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 - Gigabit Ethernet 4x SFP - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/14514-0087.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Horizontal" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "XN24-52S3", + "image_url": "https://www.thinkmate.com/thumb?g=29/16649-0086.png|w=200|h=120", + "details": [ + "Intel 3rd Gen Xeon Scalable", + "2 TBDDR4 ECC RDIMM", + "62.5\" NVMe Hot-Swap", + "2PCIe 4.0 x16 LP", + "Redundant Power", + "Optane", + "NVMe" + ], + "price": "$36,832.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/16649-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U 4-Node - Intel C621A Chipset - 24x NVMe/SATA + 4x M.2 - 2600W 1+1 Redundant", + "2U 4-Node - Intel C621A Chipset - 24x NVMe/SATA/SAS - Broadcom 3808 12G SAS - 2600W 1+1 Redundant", + "2U 4-Node - Intel C621A Chipset - 24x NVMe/SATA/SAS - Broadcom 3908 12G SAS - 2600W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=09/16553-0003.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation Intel Xeon Scalable Silver Processors", + "config": [ + "Intel Xeon Silver 4310 Processor 12-Core 2.1GHz 18MB Cache (120W)", + "Intel Xeon Silver 4314 Processor 16-Core 2.4GHz 24MB Cache (135W)", + "Intel Xeon Silver 4316 Processor 20-Core 2.3GHz 30MB Cache (150W)" + ] + }, + { + "name": "3rd Generation Intel Xeon Scalable Gold Processors", + "config": [ + "Intel Xeon Gold 5317 Processor 12-Core 3.0GHz 18MB Cache (150W)", + "Intel Xeon Gold 5320 Processor 26-Core 2.2GHz 39MB Cache (185W)", + "Intel Xeon Gold 6326 Processor 16-Core 2.9GHz 24MB Cache (185W)", + "Intel Xeon Gold 6330 Processor 28-Core 2.0GHz 42MB Cache (205W)", + "Intel Xeon Gold 6334 Processor 8-Core 3.6GHz 18MB Cache (165W)", + "Intel Xeon Gold 6346 Processor 16-Core 3.1GHz 36MB Cache (205W)" + ] + }, + { + "name": "Featuring Intel Speed Select Technology", + "config": [ + "Intel Xeon Silver 4309Y Processor 8-Core 2.8GHz 12MB Cache (105W)", + "Intel Xeon Gold 5315Y Processor 8-Core 3.2GHz 12MB Cache (140W)", + "Intel Xeon Gold 5318Y Processor 24-Core 2.1GHz 36MB Cache (165W)", + "Intel Xeon Gold 6336Y Processor 24-Core 2.4GHz 36MB Cache (185W)" + ] + }, + { + "name": "Specialized for Networking & NFV", + "config": [ + "Intel Xeon Gold 5318N Processor 24-Core 2.1GHz 36MB Cache (150W)", + "Intel Xeon Gold 6330N Processor 28-Core 2.2GHz 42MB Cache (165W)", + "Intel Xeon Gold 6338N Processor 32-Core 2.2GHz 48MB Cache (185W)" + ] + }, + { + "name": "Specialized for Security", + "config": [ + "Intel Xeon Platinum 8352S Processor 32-Core 2.2GHz 48MB Cache (205W)" + ] + }, + { + "name": "Long Life Cycle & NEBS Thermal Friendly", + "config": [ + "Intel Xeon Silver 4310T Processor 10-Core 2.3GHz 15MB Cache (105W)", + "Intel Xeon Gold 5320T Processor 20-Core 2.3GHz 30MB Cache (150W)", + "Intel Xeon Gold 6338T Processor 24-Core 2.1GHz 36MB Cache (165W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=16/16909-0066.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm P5520 Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "3.84TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "7.68TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Solidigm SSD D7-P5520 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Solidigm P5620 Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "1.6TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.2TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "6.4TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Solidigm SSD D7-P5620 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 9400 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "7.68TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "15.36TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "30.72TB Micron 9400 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Micron 9400 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "6.4TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "12.8TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive", + "25.6TB Micron 9400 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD6-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD6-R Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD6-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD6-V Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=29/16898-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=00/16001-0000.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Intel i350-AM2 Ethernet Adapter - Gigabit Ethernet 2x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 Ethernet Adapter - Gigabit Ethernet 4x RJ45 - AIOM OCP 3.0 PCIe 2.1 x4", + "Intel i350-AM4 - Gigabit Ethernet 4x SFP - AIOM OCP 3.0 PCIe 2.1 x4", + "Supermicro AIOM OCP 3.0 - 2x 10GbE RJ45 - Intel X550-AT2 - PCI-E 3.0 x4 - AOC-ATG-i2TM", + "Intel XL710-BM2 - 10 Gigabit Ethernet 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel XL710-BM1 - 10 Gigabit Ethernet 4x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Intel X710-TM4 - 10 Gigabit Ethernet 2x RJ45 & 2x SFP+ - AIOM OCP 3.0 PCIe 3.0 x8", + "Broadcom BCM57414 - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Broadcom NetXtreme BCM57416 10 Gigabit Ethernet Adapter (2x RJ45) - AIOM PCIe 3.0 x8", + "Mellanox ConnectX-4 Lx EN & Intel X550-AT2 - 2x 25GbE SFP28 + 2x 10GbE RJ45 - AIOM OCP 3.0 PCIe 3.0 x16", + "Intel E810-XXVAM2 25GbE - Dual-Port SFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Mellanox CX-6 LX - 2x 25GbE SFP28 - AIOM OCP 3.0 - PCIe 3.0 x8", + "Intel E810-CAM1 25GbE - Quad-Port SFP28 - AIOM OCP 3.0 PCIe 4.0 x16", + "Mellanox ConnectX-6 Dx - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16", + "Broadcom BCM57508 - 2x 100GbE QSFP28 - AIOM OCP 3.0 - PCIe 4.0 x16" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/14514-0087.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - Infineon 9670 - Not Provisioned - Horizontal" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?f=product/blank.gif|h=60|t=no", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C19 to C14", + "config": [ + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 10ft / 3M (TAA Compliant)", + "IEC320 C14 to C19 Power Cable - 14AWG - 250V/15A - 6ft / 1.8M (TAA Compliant)" + ] + }, + { + "name": "C19 to C20", + "config": [ + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to C20 Power Cable, 12AWG, 250V/20A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA 5.15P", + "config": [ + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 3ft", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 6ft (TAA Compliant)", + "IEC320 C19 to NEMA 5.15P Power Cable, 14AWG, 125V/15A, Black - 10ft" + ] + }, + { + "name": "C19 to NEMA L6-20P", + "config": [ + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 6ft", + "IEC320 C19 to NEMA L6-20P Locking Power Cable, 12AWG, 250V/20A, Black - 12ft" + ] + }, + { + "name": "C19 to C20 (EU)", + "config": [ + "IEC320 C19 to C20 Power Cable, 16A, Black, 0.6m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 2.0m, RoHS/REACh", + "IEC320 C19 to C20 Power Cable, 16A, Black, 4.5m, RoHS/REACh" + ] + }, + { + "name": "C19 to CEE/7 Schuko (EU)", + "config": [ + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to CEE/7 Schuko Power Cable, 16A, Black, 3.0m, RoHS/REACh" + ] + }, + { + "name": "C19 to BS1363A (UK)", + "config": [ + "IEC320 C19 to BS1363A (UK) Power Cable, 16A 240V, Black, 2.5m, RoHS/REACh", + "IEC320 C19 to BS1363A (UK) Power Cable, 13A 240V, Black, 3.0m, RoHS/REACh" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT24-32E3", + "image_url": "https://www.thinkmate.com/thumb?g=22/14740-0009.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "1 TBDDR4 ECC RDIMM", + "33.5\" SATA Hot-Swap", + "1SIOM", + "Redundant Power", + "VMware ESXi", + "2PCIe 4.0 x16 LP" + ], + "price": "$11,718.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14740-0009.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U 4-Node - AMD EPYC 7003 Series - 12x SATA + 4x M.2 per Node - SIOM - 2000W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=14/16520-0016.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "Single Socket Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203P Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303P Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313P Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7443P Processor 24-core 2.85GHz 128MB Cache (200W)" + ] + }, + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 16, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM9A3 M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM9A3 Series M.2 PCIe 4.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 12, + "category_img": "https://www.thinkmate.com/thumb?g=29/13539-0028.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Toshiba Enterprise-Class SATA Hard Drives", + "config": [ + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG06 Series (512e)", + "12TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG07 Series (512e)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Toshiba MG08 Series (512e)" + ] + }, + { + "name": "Western Digital Enterprise Class SATA Hard Drives", + "config": [ + "1TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "2TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HA210 (512n)", + "6TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC310 (512e)", + "8TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC320 (512e)", + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC330 (512e)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "16TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Ultrastar™ DC HC550 (512e/4Kn)" + ] + }, + { + "name": "Seagate Enterprise-Class SATA Hard Drives", + "config": [ + "10TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "14TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)", + "18TB SATA 6.0Gb/s 7200RPM - 3.5\" - Seagate Exos X18 Series FastFormat™ (512e/4Kn)" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/10629-0080.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SIOM 1 Gigabit Ethernet Adapter AOC-MGP-i2M (2x RJ45)", + "Supermicro SIOM 1 Gigabit Ethernet Adapter AOC-MGP-i4M (4x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTGN-i2SM (2x SFP+)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i4SM (4x SFP+)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i2TM (2x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i4TM (4x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-b2TM (2x RJ45)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-MH25G-b2S2GM (2x SFP28, 2x RJ45)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-M25G-m4SM (4x SFP28)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-M25G-i2SM (2x SFP28)", + "Supermicro SIOM 56 Gigabit FDR InfiniBand Adapter AOC-MHIBF-m1Q2GM (1x QSFP & 2x RJ45)", + "Supermicro SIOM 56 Gigabit FDR InfiniBand Adapter AOC-MHIBF-m2Q2GM (2x QSFP & 2x RJ45)" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - Server provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=30/60-0024.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Windows Operating System", + "config": ["No Windows Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Essentials (10-Core)", + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "openSUSE Leap Linux 15.x (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QT24-52E3", + "image_url": "https://www.thinkmate.com/thumb?g=26/14739-0086.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "2 TBDDR4 ECC RDIMM", + "62.5\" SATA Hot-Swap", + "1SIOM", + "Redundant Power", + "VMware ESXi", + "2PCIe 4.0 x16 LP" + ], + "price": "$19,531.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/14739-0086.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U 4-Node - AMD EPYC 7003 Series - 24x SATA + 1x M.2 per Node - SIOM - 2200W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM983 M.2 PCIe 3.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=29/16898-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/10629-0080.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SIOM 1 Gigabit Ethernet Adapter AOC-MGP-i2M (2x RJ45)", + "Supermicro SIOM 1 Gigabit Ethernet Adapter AOC-MGP-i4M (4x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTGN-i2SM (2x SFP+)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i4SM (4x SFP+)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i2TM (2x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i4TM (4x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-b2TM (2x RJ45)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-MH25G-b2S2GM (2x SFP28, 2x RJ45)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-M25G-m4SM (4x SFP28)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-M25G-i2SM (2x SFP28)", + "Supermicro SIOM 56 Gigabit FDR InfiniBand Adapter AOC-MHIBF-m1Q2GM (1x QSFP & 2x RJ45)", + "Supermicro SIOM 56 Gigabit FDR InfiniBand Adapter AOC-MHIBF-m2Q2GM (2x QSFP & 2x RJ45)", + "Supermicro SIOM 100 Gigabit EDR InfiniBand Adapter AOC-MHIBE-m1CGM (1x QSFP28 & 1x RJ45)" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - Server provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=03/15122-0075.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + }, + { + "product_name": "QN24-52E3", + "image_url": "https://www.thinkmate.com/thumb?g=28/15270-0098.png|w=200|h=120", + "details": [ + "AMD EPYC 7003", + "2 TBDDR4 ECC RDIMM", + "42.5\" NVMe Hot-Swap", + "1SIOM", + "Redundant Power", + "NVMe", + "2PCIe 4.0 x16 LP" + ], + "price": "$19,897.00", + "product_data": { + "config": [ + { + "category": { + "name": "Barebone", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=28/15270-0098.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "2U 4-Node - AMD EPYC 7003 Series - 24x NVMe/SATA + 1x M.2 per Node - SIOM - 2200W 1+1 Redundant" + ] + } + }, + { + "category": { + "name": "Processor", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=10/16398-0036.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 7203 Processor 8-core 2.80GHz 64MB Cache (120W)", + "AMD EPYC™ 7303 Processor 16-core 2.40GHz 64MB Cache (130W)", + "AMD EPYC™ 7313 Processor 16-core 3.00GHz 128MB Cache (155W)", + "AMD EPYC™ 7343 Processor 16-core 3.20GHz 128MB Cache (190W)", + "AMD EPYC™ 7413 Processor 24-core 2.65GHz 128MB Cache (180W)", + "AMD EPYC™ 7443 Processor 24-core 2.85GHz 128MB Cache (200W)", + "AMD EPYC™ 7513 Processor 32-core 2.60GHz 128MB Cache (200W)" + ] + }, + { + "name": "Frequency Optimized 3rd Generation AMD EPYC™ Processors", + "config": [ + "AMD EPYC™ 72F3 Processor 8-core 3.70GHz 256MB Cache (180W)" + ] + } + ] + } + }, + { + "category": { + "name": "Memory", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=22/14756-0087.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3200MHz ECC Registered DDR4 DIMMs", + "config": [ + "8GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "16GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "32GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "64GB PC4-25600 3200MHz DDR4 ECC RDIMM", + "128GB PC4-25600 3200MHz DDR4 ECC RDIMM" + ] + } + ] + } + }, + { + "category": { + "name": "M.2 Drive", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=05/17440-0035.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "480GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "960GB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "1.92TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)", + "3.84TB Micron 7450 PRO Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (110mm)" + ] + }, + { + "name": "Micron 7450 MAX M.2 PCIe 4.0 x4 NVMe Solid State Drives", + "config": [ + "400GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)", + "800GB Micron 7450 MAX Series M.2 PCIe 4.0 x4 NVMe Solid State Drive (80mm)" + ] + }, + { + "name": "Samsung PM983 M.2 PCIe 3.0 x4 NVMe Solid State Drives", + "config": [ + "960GB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "1.92TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive", + "3.84TB Samsung PM983 Series M.2 PCIe 3.0 x4 NVMe Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "U.2/U.3 NVMe Drive", + "max_quantity": 16, + "category_img": "https://www.thinkmate.com/thumb?g=14/17465-0095.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Micron 7450 PRO Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.92TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.84TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "7.68TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "15.36TB Micron 7450 PRO Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Micron 7450 MAX Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "1.6TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "3.2TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "6.4TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)", + "12.8TB Micron 7450 MAX Series U.3 PCIe 4.0 x4 NVMe Solid State Drive (15mm)" + ] + }, + { + "name": "Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (1x DWPD)", + "config": [ + "960GB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "1.92TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "3.84TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "7.68TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)", + "15.0TB Samsung PM9A3 Series U.2 PCIe 4.0 x4 NVMe Solid State Drive (7mm)" + ] + }, + { + "name": "Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drives (1x DWPD)", + "config": [ + "960GB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.92TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.84TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "7.68TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "15.36TB Kioxia CD8-R Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + }, + { + "name": "Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drives (3x DWPD)", + "config": [ + "800GB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "1.6TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "3.2TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "6.4TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)", + "12.8TB Kioxia CD8-V Series PCIe 4.0 x4 NVMe Solid State Drive (SIE)" + ] + } + ] + } + }, + { + "category": { + "name": "Hard Drive", + "max_quantity": 24, + "category_img": "https://www.thinkmate.com/thumb?g=29/16898-0057.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Solidigm D3-S4520 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive", + "3.84TB Solidigm SSD D3-S4520 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + }, + { + "name": "Solidigm D3-S4620 Series Enterprise-Class SATA Solid State Drives", + "config": [ + "1.92TB Solidigm SSD D3-S4620 Series 2.5\" SATA 6.0Gb/s Solid State Drive" + ] + } + ] + } + }, + { + "category": { + "name": "Network Adapter", + "max_quantity": 8, + "category_img": "https://www.thinkmate.com/thumb?g=11/17139-0004.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Broadcom 1/10/25/50/100/200 Gigabit Ethernet Adapters", + "config": [ + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x1 - 2x RJ45", + "Broadcom NetXtreme 1 Gigabit Ethernet Network Adapter - PCIe 2.0 x4 - 4x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210TP - PCIe 3.0 x8 - 2x RJ45", + "Broadcom NetXtreme 10 Gigabit Ethernet Network Adapter P210P - PCIe 3.0 x8 - 2x SFP+", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P225P - PCIe 3.0 x8 - 2x SFP28", + "Broadcom NetXtreme 25 Gigabit Ethernet Network Adapter P425G - PCIe 4.0 x16 - 4x SFP28", + "Broadcom NetXtreme 50 Gigabit Ethernet Network Adapter P150P - PCIe 3.0 x8 - 1x QSFP28", + "Broadcom NetXtreme 100 Gigabit Ethernet Network Adapter P2100G - PCIe 4.0 x16 - 2x QSFP56", + "Broadcom NetXtreme 200 Gigabit Ethernet Network Adapter P1200G - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Intel X550 Series 10 Gigabit Ethernet Adapter", + "config": [ + "Intel 10 Gigabit Ethernet Converged Network Adapter X550-T2 - PCIe 3.0 x4 - 2x RJ-45" + ] + }, + { + "name": "Intel X710 Series 10 Gigabit Ethernet Adapters", + "config": [ + "Intel 10 Gigabit Ethernet Network Adapter X710-T2L - PCIe 3.0 x8 - 2x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-T4L - PCIe 3.0 x8 - 4x RJ45", + "Intel 10 Gigabit Ethernet Network Adapter X710-DA2 - PCIe 3.0 x8 - 2x SFP+" + ] + }, + { + "name": "Intel E810 Series 25/100 Gigabit Ethernet Adapters", + "config": [ + "Intel 25 Gigabit Ethernet Network Adapter E810-XXVDA2 - PCIe 4.0 x8 - 2x SFP28", + "Intel 100 Gigabit Ethernet Network Adapter E810-CQDA1 - PCIe 4.0 x16 - 1x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-4 EN Series 10 Gigabit Ethernet Adapter", + "config": [ + "Mellanox 10 Gigabit Ethernet Adapter ConnectX-4 Lx EN MCX4121A (2x SFP28)" + ] + }, + { + "name": "Mellanox ConnectX-5 EN Series 100 Gigabit Ethernet Adapters", + "config": [ + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 1x QSFP28", + "Mellanox ConnectX-5 EN 100 Gigabit Ethernet Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "NVIDIA ConnectX-6 Dx Series 100/200 Gigabit Ethernet Adapters", + "config": [ + "NVIDIA ConnectX-6 Dx EN 100 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 2x QSFP56", + "NVIDIA ConnectX-6 Dx EN 200 Gigabit Ethernet Adapter - PCIe 4.0 x16 - 1x QSFP56" + ] + }, + { + "name": "Mellanox ConnectX-5 VPI Series 100 Gigabit EDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-5 100 Gigabit EDR InfiniBand Adapter - PCIe 3.0 x16 - 2x QSFP28" + ] + }, + { + "name": "Mellanox ConnectX-6 VPI Series 100/200 Gigabit HDR InfiniBand Adapters", + "config": [ + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 1x QSFP56", + "NVIDIA ConnectX-6 200 Gigabit HDR InfiniBand Adapter - PCIe 4.0 x16 - 2x QSFP56" + ] + } + ] + } + }, + { + "category": { + "name": "I/O Modules - Networking", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=26/10629-0080.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Supermicro SIOM 1 Gigabit Ethernet Adapter AOC-MGP-i2M (2x RJ45)", + "Supermicro SIOM 1 Gigabit Ethernet Adapter AOC-MGP-i4M (4x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTGN-i2SM (2x SFP+)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i4SM (4x SFP+)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i2TM (2x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-i4TM (4x RJ45)", + "Supermicro SIOM 10 Gigabit Ethernet Adapter AOC-MTG-b2TM (2x RJ45)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-MH25G-b2S2GM (2x SFP28, 2x RJ45)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-M25G-m4SM (4x SFP28)", + "Supermicro SIOM 25 Gigabit Ethernet Adapter AOC-M25G-i2SM (2x SFP28)", + "Supermicro SIOM 56 Gigabit FDR InfiniBand Adapter AOC-MHIBF-m1Q2GM (1x QSFP & 2x RJ45)", + "Supermicro SIOM 56 Gigabit FDR InfiniBand Adapter AOC-MHIBF-m2Q2GM (2x QSFP & 2x RJ45)", + "Supermicro SIOM 100 Gigabit EDR InfiniBand Adapter AOC-MHIBE-m1CGM (1x QSFP28 & 1x RJ45)" + ] + } + }, + { + "category": { + "name": "Trusted Platform Module", + "max_quantity": 4, + "category_img": "https://www.thinkmate.com/thumb?g=29/14503-0082.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - not provisioned - Vertical", + "Trusted Platform Module - TPM 2.0 - X10 X9 MBs - Infineon 9665 - Server provisioned - Vertical" + ] + } + }, + { + "category": { + "name": "Server Management", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=04/14819-0032.png|w=80|h=60", + "config_choice_type": "checkbox", + "config": [ + "Thinkmate Update Manager (OOB Management Package)", + "Thinkmate Server Manager (Datacenter Management Package)" + ] + } + }, + { + "category": { + "name": "Cables", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=17/13557-0074.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "C13 to NEMA 5.15P", + "config": [ + "AC Power Cord (North America), C13, NEMA 5.15P, 3 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 6 ft.", + "AC Power Cord (North America), C13, NEMA 5.15P, 10 ft" + ] + }, + { + "name": "C13 to C14", + "config": [ + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 1ft / 0.3M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 2ft / 0.6M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 3ft / 0.9M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 4ft / 1.2M (TAA Compliant)", + "IEC320 C13 to C14 Power Cable - 16AWG - 250V/13A - 6ft / 1.8M (TAA Compliant)" + ] + } + ] + } + }, + { + "category": { + "name": "Operating System", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=06/1001-0074.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "No Operating System", + "config": ["No Operating System"] + }, + { + "name": "Microsoft Windows Server 2022", + "config": [ + "Microsoft Windows Server 2022 Standard (16-core)", + "Microsoft Windows Server 2022 Standard (24-core)", + "Microsoft Windows Server 2022 Datacenter (16-core)", + "Microsoft Windows Server 2022 Datacenter (24-core)" + ] + }, + { + "name": "Microsoft Windows Server 2025", + "config": [ + "Microsoft Windows Server 2025 Standard (16-core) (DSP)", + "Microsoft Windows Server 2025 Standard (24-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (16-core) (DSP)", + "Microsoft Windows Server 2025 Datacenter (24-core) (DSP)" + ] + }, + { + "name": "CIQ Rocky Linux Support", + "config": [ + "CIQ Yearly Premium Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 24/7 Web/Email/Slack Assist", + "CIQ Yearly Standard Support for Rocky Linux, Per Node, On Prem, 1-99 Nodes, 8-6 Web/Email HD" + ] + }, + { + "name": "Linux Distributions", + "config": [ + "Rocky Linux 8.x (64-bit)", + "Rocky Linux 9.x (64-bit)", + "Debian Linux 12 (64-bit)", + "Fedora Linux 40 Server Edition (64-bit)", + "Ubuntu Linux 22.04 LTS Server Edition (64-bit)", + "Ubuntu Linux 24.04 LTS Server Edition (64-bit)" + ] + }, + { + "name": "Red Hat Enterprise Linux Subscriptions", + "config": [ + "Red Hat Enterprise Linux 8 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 8 Server (Premium) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Self Support) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Standard) (1 Year)", + "Red Hat Enterprise Linux 9 Server (Premium) (1 Year)" + ] + } + ] + } + }, + { + "category": { + "name": "Software", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=29/13978-0091.png|w=80|h=60", + "config_choice_type": "checkbox", + "sub_category": [ + { + "name": "Downgrade Kits for Microsoft Windows Server", + "config": [ + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2016 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2016 Datacenter - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Essentials to 2019 Essentials - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Standard to 2019 Standard - COA and DVD Media", + "Downgrade Kit - Microsoft Windows Server 2022 Datacenter to 2019 Datacenter - COA and DVD Media" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2022", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2022", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2022", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2022", + "5-User Client Access License (CAL) for Microsoft Windows Server 2022" + ] + }, + { + "name": "Device Client Access Licenses for Windows Server 2025", + "config": [ + "1-Device Client Access License (CAL) for Microsoft Windows Server 2025", + "5-Device Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "User Client Access Licenses for Windows Server 2025", + "config": [ + "1-User Client Access License (CAL) for Microsoft Windows Server 2025", + "5-User Client Access License (CAL) for Microsoft Windows Server 2025" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Standard", + "Additional 4-core License for Microsoft Windows Server 2022 Standard", + "Additional 16-core License for Microsoft Windows Server 2022 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2022 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2022 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2022 Datacenter" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Standard Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Standard", + "Additional 4-core License for Microsoft Windows Server 2025 Standard", + "Additional 16-core License for Microsoft Windows Server 2025 Standard" + ] + }, + { + "name": "Additional Core Licenses for Windows Server 2025 Datacenter Edition", + "config": [ + "Additional 2-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 4-core License for Microsoft Windows Server 2025 Datacenter", + "Additional 16-core License for Microsoft Windows Server 2025 Datacenter" + ] + } + ] + } + }, + { + "category": { + "name": "Assembly and Testing", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=24/6731-0019.png|w=80|h=60", + "config_choice_type": "radio", + "config": [ + "Thinkmate ISO 9001 Certified Assembly, Testing, and Quality Control" + ] + } + }, + { + "category": { + "name": "Warranty", + "max_quantity": null, + "category_img": "https://www.thinkmate.com/thumb?g=11/9946-0010.png|w=80|h=60", + "config_choice_type": "radio", + "sub_category": [ + { + "name": "3-Year Warranty Options", + "config": [ + "Thinkmate 3 Year Depot Warranty (Return for Repair)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 3 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "4-Year Warranty Options", + "config": [ + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 4 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + }, + { + "name": "5-Year Warranty Options", + "config": [ + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty (Zone 2)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and NBD Onsite Service (Zone 0)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 1)", + "Thinkmate 5 Year Advanced Parts Replacement Warranty and Onsite Service (Zone 2)" + ] + } + ] + } + } + ] + } + } + ], + "type": "server" + } +] diff --git a/static/base/assets/examples/css/advanced/toastr.css b/static/base/assets/examples/css/advanced/toastr.css new file mode 100644 index 0000000..85db360 --- /dev/null +++ b/static/base/assets/examples/css/advanced/toastr.css @@ -0,0 +1,26 @@ +.toast-example { + position: static; + margin: 10px 0 30px; +} +.toast-example.padding-0 { + margin-bottom: 30px; +} +.toast-example > div { + width: auto; + max-width: 300px; + margin-bottom: 0; +} + +.position-example { + position: relative; + height: 330px; + margin-bottom: 20px; +} +.position-example > div { + position: absolute; + width: 100%; + padding: 20px; +} +.position-example > .btn-block + .btn-block { + margin-top: 215px; +} diff --git a/static/base/assets/examples/css/uikit/modals.css b/static/base/assets/examples/css/uikit/modals.css new file mode 100644 index 0000000..0ab7f3e --- /dev/null +++ b/static/base/assets/examples/css/uikit/modals.css @@ -0,0 +1,66 @@ +.example-modal { + display: block; + width: 100%; + padding: 35px 15px; + background-color: #f3f7f9; +} +.example-modal .modal { + position: relative; + top: auto; + right: auto; + bottom: auto; + left: auto; + z-index: 1; + display: block; +} +.example-modal .modal .modal-dialog { + width: auto; + max-width: 600px; + margin: 15px auto; +} +.example-modal-top .center { + top: 0; + -webkit-transform: translate(-50%, 0px); + transform: translate(-50%, 0px); +} +.example-modal-bottom .center { + top: auto; + bottom: 0; + -webkit-transform: translate(-50%, 0px); + transform: translate(-50%, 0px); +} +.example-modal-sidebar .center { + top: 0; + right: 5px; + left: auto; + -webkit-transform: none; + transform: none; +} + +.example-buttons .modal-footer .btn { + margin-right: 0; + margin-bottom: 0; +} + +.color-selector > li { + margin-right: 20px; + margin-bottom: 11px; +} + +@media (max-width: 767.98px) { + #examplePositionSidebar .modal-sidebar { + min-width: 260px; + } +} + +.example-fill-in.example-well { + position: relative; + background-color: #fff; + border: 1px solid #e4eaec; +} +.example-fill-in.example-well:after { + content: "x"; + position: absolute; + right: 10px; + top: 10px; +} diff --git a/static/felcloud/website/css.css b/static/felcloud/website/css.css new file mode 100644 index 0000000..e69de29 diff --git a/static/felcloud/website/css/animate.min.css b/static/felcloud/website/css/animate.min.css new file mode 100644 index 0000000..0bb3464 --- /dev/null +++ b/static/felcloud/website/css/animate.min.css @@ -0,0 +1,24 @@ +@charset "UTF-8"; +/*! + * animate.css -https://daneden.github.io/animate.css/ + * Version - 3.7.2 + * Licensed under the MIT license - http://opensource.org/licenses/MIT + * Copyright (c) 2019 Daniel Eden + */ +@-webkit-keyframes bounce{from,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}@keyframes bounce{from,20%,53%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-30px,0);transform:translate3d(0,-30px,0)}70%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-15px,0);transform:translate3d(0,-15px,0)}90%{-webkit-transform:translate3d(0,-4px,0);transform:translate3d(0,-4px,0)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse}@-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,0.75,1);transform:scale3d(1.25,0.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,0.85,1);transform:scale3d(1.15,0.85,1)}65%{-webkit-transform:scale3d(0.95,1.05,1);transform:scale3d(0.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,0.95,1);transform:scale3d(1.05,0.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,0.75,1);transform:scale3d(1.25,0.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,0.85,1);transform:scale3d(1.15,0.85,1)}65%{-webkit-transform:scale3d(0.95,1.05,1);transform:scale3d(0.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,0.95,1);transform:scale3d(1.05,0.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shake{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shake{-webkit-animation-name:shake;animation-name:shake}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:1.3s;animation-duration:1.3s;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(0.97,0.97,0.97);transform:scale3d(0.97,0.97,0.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(0.97,0.97,0.97);transform:scale3d(0.97,0.97,0.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-duration:0.75s;animation-duration:0.75s;-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0);transform:translate3d(0,-3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0);transform:translate3d(0,25px,0)}75%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}90%{-webkit-transform:translate3d(0,5px,0);transform:translate3d(0,5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0);transform:translate3d(-3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0);transform:translate3d(25px,0,0)}75%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}90%{-webkit-transform:translate3d(5px,0,0);transform:translate3d(5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0);transform:translate3d(3000px,0,0)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0);transform:translate3d(-25px,0,0)}75%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}90%{-webkit-transform:translate3d(-5px,0,0);transform:translate3d(-5px,0,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0);transform:translate3d(0,3000px,0)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}75%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}90%{-webkit-transform:translate3d(0,-5px,0);transform:translate3d(0,-5px,0)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}}.bounceOut{-webkit-animation-duration:0.75s;animation-duration:0.75s;-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0);transform:translate3d(20px,0,0)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0);transform:translate3d(-20px,0,0)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) + rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) + rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) + rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) + rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) + rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) + rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) + rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) + rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) + rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-duration:0.75s;animation-duration:0.75s;-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-animation-duration:0.75s;animation-duration:0.75s;-webkit-backface-visibility:visible!important;backface-visibility:visible!important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedIn{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.lightSpeedIn{-webkit-animation-name:lightSpeedIn;animation-name:lightSpeedIn;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOut{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOut{-webkit-animation-name:lightSpeedOut;animation-name:lightSpeedOut;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateIn{from{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft}@-webkit-keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft}@-webkit-keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight}@-webkit-keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{-webkit-transform-origin:center;transform-origin:center;opacity:1}to{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut}@-webkit-keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft}@-webkit-keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight}@-webkit-keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{-webkit-transform-origin:left bottom;transform-origin:left bottom;opacity:1}to{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft}@-webkit-keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{-webkit-transform-origin:right bottom;transform-origin:right bottom;opacity:1}to{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight}@-webkit-keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-transform-origin:top left;transform-origin:top left;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:2s;animation-duration:2s;-webkit-animation-name:hinge;animation-name:hinge}@-webkit-keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(0.1) rotate(30deg);transform:scale(0.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(0.1) rotate(30deg);transform:scale(0.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}50%{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}50%{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(-2000px,0,0);transform:scale(0.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(-2000px,0,0);transform:scale(0.1) translate3d(-2000px,0,0);-webkit-transform-origin:left center;transform-origin:left center}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(2000px,0,0);transform:scale(0.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(2000px,0,0);transform:scale(0.1) translate3d(2000px,0,0);-webkit-transform-origin:right center;transform-origin:right center}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);-webkit-transform-origin:center bottom;transform-origin:center bottom;-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}.animated{-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.delay-1s{-webkit-animation-delay:1s;animation-delay:1s}.animated.delay-2s{-webkit-animation-delay:2s;animation-delay:2s}.animated.delay-3s{-webkit-animation-delay:3s;animation-delay:3s}.animated.delay-4s{-webkit-animation-delay:4s;animation-delay:4s}.animated.delay-5s{-webkit-animation-delay:5s;animation-delay:5s}.animated.fast{-webkit-animation-duration:800ms;animation-duration:800ms}.animated.faster{-webkit-animation-duration:500ms;animation-duration:500ms}.animated.slow{-webkit-animation-duration:2s;animation-duration:2s}.animated.slower{-webkit-animation-duration:3s;animation-duration:3s}@media (print),(prefers-reduced-motion:reduce){.animated{-webkit-animation-duration:1ms!important;animation-duration:1ms!important;-webkit-transition-duration:1ms!important;transition-duration:1ms!important;-webkit-animation-iteration-count:1!important;animation-iteration-count:1!important}} \ No newline at end of file diff --git a/static/felcloud/website/css/bootstrap.min.css b/static/felcloud/website/css/bootstrap.min.css new file mode 100644 index 0000000..7a918e0 --- /dev/null +++ b/static/felcloud/website/css/bootstrap.min.css @@ -0,0 +1,9809 @@ +@charset "UTF-8"; /*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors + * Copyright 2011-2021 Twitter, Inc. + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +:root { + --bs-blue: #0d6efd; + --bs-indigo: #6610f2; + --bs-purple: #6f42c1; + --bs-pink: #d63384; + --bs-red: #dc3545; + --bs-orange: #fd7e14; + --bs-yellow: #ffc107; + --bs-green: #198754; + --bs-teal: #20c997; + --bs-cyan: #0dcaf0; + --bs-white: #fff; + --bs-gray: #6c757d; + --bs-gray-dark: #343a40; + --bs-gray-100: #f8f9fa; + --bs-gray-200: #e9ecef; + --bs-gray-300: #dee2e6; + --bs-gray-400: #ced4da; + --bs-gray-500: #adb5bd; + --bs-gray-600: #6c757d; + --bs-gray-700: #495057; + --bs-gray-800: #343a40; + --bs-gray-900: #212529; + --bs-primary: #0d6efd; + --bs-secondary: #6c757d; + --bs-success: #198754; + --bs-info: #0dcaf0; + --bs-warning: #ffc107; + --bs-danger: #dc3545; + --bs-light: #f8f9fa; + --bs-dark: #212529; + --bs-primary-rgb: 13, 110, 253; + --bs-secondary-rgb: 108, 117, 125; + --bs-success-rgb: 25, 135, 84; + --bs-info-rgb: 13, 202, 240; + --bs-warning-rgb: 255, 193, 7; + --bs-danger-rgb: 220, 53, 69; + --bs-light-rgb: 248, 249, 250; + --bs-dark-rgb: 33, 37, 41; + --bs-white-rgb: 255, 255, 255; + --bs-black-rgb: 0, 0, 0; + --bs-body-rgb: 33, 37, 41; + --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, + "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, + "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, + "Liberation Mono", "Courier New", monospace; + --bs-gradient: linear-gradient( + 180deg, + rgba(255, 255, 255, 0.15), + rgba(255, 255, 255, 0) + ); + --bs-body-font-family: var(--bs-font-sans-serif); + --bs-body-font-size: 1rem; + --bs-body-font-weight: 400; + --bs-body-line-height: 1.5; + --bs-body-color: #212529; + --bs-body-bg: #fff; +} +*, +::after, +::before { + box-sizing: border-box; +} +@media (prefers-reduced-motion: no-preference) { + :root { + scroll-behavior: smooth; + } +} +body { + margin: 0; + font-family: var(--bs-body-font-family); + font-size: var(--bs-body-font-size); + font-weight: var(--bs-body-font-weight); + line-height: var(--bs-body-line-height); + color: var(--bs-body-color); + text-align: var(--bs-body-text-align); + background-color: var(--bs-body-bg); + -webkit-text-size-adjust: 100%; + -webkit-tap-highlight-color: transparent; +} +hr { + margin: 1rem 0; + color: inherit; + background-color: currentColor; + border: 0; + opacity: 0.25; +} +hr:not([size]) { + height: 1px; +} +.h1, +.h2, +.h3, +.h4, +.h5, +.h6, +h1, +h2, +h3, +h4, +h5, +h6 { + margin-top: 0; + margin-bottom: 0.5rem; + font-weight: 500; + line-height: 1.2; +} +.h1, +h1 { + font-size: calc(1.375rem + 1.5vw); +} +@media (min-width: 1200px) { + .h1, + h1 { + font-size: 2.5rem; + } +} +.h2, +h2 { + font-size: calc(1.325rem + 0.9vw); +} +@media (min-width: 1200px) { + .h2, + h2 { + font-size: 2rem; + } +} +.h3, +h3 { + font-size: calc(1.3rem + 0.6vw); +} +@media (min-width: 1200px) { + .h3, + h3 { + font-size: 1.75rem; + } +} +.h4, +h4 { + font-size: calc(1.275rem + 0.3vw); +} +@media (min-width: 1200px) { + .h4, + h4 { + font-size: 1.5rem; + } +} +.h5, +h5 { + font-size: 1.25rem; +} +.h6, +h6 { + font-size: 1rem; +} +p { + margin-top: 0; + margin-bottom: 1rem; +} +abbr[data-bs-original-title], +abbr[title] { + -webkit-text-decoration: underline dotted; + text-decoration: underline dotted; + cursor: help; + -webkit-text-decoration-skip-ink: none; + text-decoration-skip-ink: none; +} +address { + margin-bottom: 1rem; + font-style: normal; + line-height: inherit; +} +ol, +ul { + padding-left: 2rem; +} +dl, +ol, +ul { + margin-top: 0; + margin-bottom: 1rem; +} +ol ol, +ol ul, +ul ol, +ul ul { + margin-bottom: 0; +} +dt { + font-weight: 700; +} +dd { + margin-bottom: 0.5rem; + margin-left: 0; +} +blockquote { + margin: 0 0 1rem; +} +b, +strong { + font-weight: bolder; +} +.small, +small { + font-size: 0.875em; +} +.mark, +mark { + padding: 0.2em; + background-color: #fcf8e3; +} +sub, +sup { + position: relative; + font-size: 0.75em; + line-height: 0; + vertical-align: baseline; +} +sub { + bottom: -0.25em; +} +sup { + top: -0.5em; +} +a { + color: #0d6efd; + text-decoration: underline; +} +a:hover { + color: #0a58ca; +} +a:not([href]):not([class]), +a:not([href]):not([class]):hover { + color: inherit; + text-decoration: none; +} +code, +kbd, +pre, +samp { + font-family: var(--bs-font-monospace); + font-size: 1em; + direction: ltr; + unicode-bidi: bidi-override; +} +pre { + display: block; + margin-top: 0; + margin-bottom: 1rem; + overflow: auto; + font-size: 0.875em; +} +pre code { + font-size: inherit; + color: inherit; + word-break: normal; +} +code { + font-size: 0.875em; + color: #d63384; + word-wrap: break-word; +} +a > code { + color: inherit; +} +kbd { + padding: 0.2rem 0.4rem; + font-size: 0.875em; + color: #fff; + background-color: #212529; + border-radius: 0.2rem; +} +kbd kbd { + padding: 0; + font-size: 1em; + font-weight: 700; +} +figure { + margin: 0 0 1rem; +} +img, +svg { + vertical-align: middle; +} +table { + caption-side: bottom; + border-collapse: collapse; +} +caption { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + color: #6c757d; + text-align: left; +} +th { + text-align: inherit; + text-align: -webkit-match-parent; +} +tbody, +td, +tfoot, +th, +thead, +tr { + border-color: inherit; + border-style: solid; + border-width: 0; +} +label { + display: inline-block; +} +button { + border-radius: 0; +} +button:focus:not(:focus-visible) { + outline: 0; +} +button, +input, +optgroup, +select, +textarea { + margin: 0; + font-family: inherit; + font-size: inherit; + line-height: inherit; +} +button, +select { + text-transform: none; +} +[role="button"] { + cursor: pointer; +} +select { + word-wrap: normal; +} +select:disabled { + opacity: 1; +} +[list]::-webkit-calendar-picker-indicator { + display: none; +} +[type="button"], +[type="reset"], +[type="submit"], +button { + -webkit-appearance: button; +} +[type="button"]:not(:disabled), +[type="reset"]:not(:disabled), +[type="submit"]:not(:disabled), +button:not(:disabled) { + cursor: pointer; +} +::-moz-focus-inner { + padding: 0; + border-style: none; +} +textarea { + resize: vertical; +} + +@media (min-width: 1200px) { + legend { + font-size: 1.5rem; + } +} +legend + * { + clear: left; +} +::-webkit-datetime-edit-day-field, +::-webkit-datetime-edit-fields-wrapper, +::-webkit-datetime-edit-hour-field, +::-webkit-datetime-edit-minute, +::-webkit-datetime-edit-month-field, +::-webkit-datetime-edit-text, +::-webkit-datetime-edit-year-field { + padding: 0; +} +::-webkit-inner-spin-button { + height: auto; +} +[type="search"] { + outline-offset: -2px; + -webkit-appearance: textfield; +} +::-webkit-search-decoration { + -webkit-appearance: none; +} +::-webkit-color-swatch-wrapper { + padding: 0; +} +::file-selector-button { + font: inherit; +} +::-webkit-file-upload-button { + font: inherit; + -webkit-appearance: button; +} +output { + display: inline-block; +} +iframe { + border: 0; +} +summary { + display: list-item; + cursor: pointer; +} +progress { + vertical-align: baseline; +} +[hidden] { + display: none !important; +} +.lead { + font-size: 1.25rem; + font-weight: 300; +} +.display-1 { + font-size: calc(1.625rem + 4.5vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-1 { + font-size: 5rem; + } +} +.display-2 { + font-size: calc(1.575rem + 3.9vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-2 { + font-size: 4.5rem; + } +} +.display-3 { + font-size: calc(1.525rem + 3.3vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-3 { + font-size: 4rem; + } +} +.display-4 { + font-size: calc(1.475rem + 2.7vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-4 { + font-size: 3.5rem; + } +} +.display-5 { + font-size: calc(1.425rem + 2.1vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-5 { + font-size: 3rem; + } +} +.display-6 { + font-size: calc(1.375rem + 1.5vw); + font-weight: 300; + line-height: 1.2; +} +@media (min-width: 1200px) { + .display-6 { + font-size: 2.5rem; + } +} +.list-unstyled { + padding-left: 0; + list-style: none; +} +.list-inline { + padding-left: 0; + list-style: none; +} +.list-inline-item { + display: inline-block; +} +.list-inline-item:not(:last-child) { + margin-right: 0.5rem; +} +.initialism { + font-size: 0.875em; + text-transform: uppercase; +} +.blockquote { + margin-bottom: 1rem; + font-size: 1.25rem; +} +.blockquote > :last-child { + margin-bottom: 0; +} +.blockquote-footer { + margin-top: -1rem; + margin-bottom: 1rem; + font-size: 0.875em; + color: #6c757d; +} +.blockquote-footer::before { + content: "— "; +} +.img-fluid { + max-width: 100%; + height: auto; +} +.img-thumbnail { + padding: 0.25rem; + background-color: #fff; + border: 1px solid #dee2e6; + border-radius: 0.25rem; + max-width: 100%; + height: auto; +} +.figure { + display: inline-block; +} +.figure-img { + margin-bottom: 0.5rem; + line-height: 1; +} +.figure-caption { + font-size: 0.875em; + color: #6c757d; +} +.container, +.container-fluid, +.container-lg, +.container-md, +.container-sm, +.container-xl, +.container-xxl { + width: 100%; + padding-right: var(--bs-gutter-x, 0.75rem); + padding-left: var(--bs-gutter-x, 0.75rem); + margin-right: auto; + margin-left: auto; +} +@media (min-width: 576px) { + .container, + .container-sm { + max-width: 540px; + } +} +@media (min-width: 768px) { + .container, + .container-md, + .container-sm { + max-width: 720px; + } +} +@media (min-width: 992px) { + .container, + .container-lg, + .container-md, + .container-sm { + max-width: 960px; + } +} +@media (min-width: 1200px) { + .container, + .container-lg, + .container-md, + .container-sm, + .container-xl { + max-width: 1140px; + } +} +@media (min-width: 1400px) { + .container, + .container-lg, + .container-md, + .container-sm, + .container-xl, + .container-xxl { + max-width: 1320px; + } +} +.row { + --bs-gutter-x: 1.5rem; + --bs-gutter-y: 0; + display: flex; + flex-wrap: wrap; + margin-top: calc(var(--bs-gutter-y) * -1); + margin-right: calc(var(--bs-gutter-x) * -0.5); + margin-left: calc(var(--bs-gutter-x) * -0.5); +} +.row > * { + flex-shrink: 0; + width: 100%; + max-width: 100%; + padding-right: calc(var(--bs-gutter-x) * 0.5); + padding-left: calc(var(--bs-gutter-x) * 0.5); + margin-top: var(--bs-gutter-y); +} +.col { + flex: 1 0 0%; +} +.row-cols-auto > * { + flex: 0 0 auto; + width: auto; +} +.row-cols-1 > * { + flex: 0 0 auto; + width: 100%; +} +.row-cols-2 > * { + flex: 0 0 auto; + width: 50%; +} +.row-cols-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; +} +.row-cols-4 > * { + flex: 0 0 auto; + width: 25%; +} +.row-cols-5 > * { + flex: 0 0 auto; + width: 20%; +} +.row-cols-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; +} +.col-auto { + flex: 0 0 auto; + width: auto; +} +.col-1 { + flex: 0 0 auto; + width: 8.33333333%; +} +.col-2 { + flex: 0 0 auto; + width: 16.66666667%; +} +.col-3 { + flex: 0 0 auto; + width: 25%; +} +.col-4 { + flex: 0 0 auto; + width: 33.33333333%; +} +.col-5 { + flex: 0 0 auto; + width: 41.66666667%; +} +.col-6 { + flex: 0 0 auto; + width: 50%; +} +.col-7 { + flex: 0 0 auto; + width: 58.33333333%; +} +.col-8 { + flex: 0 0 auto; + width: 66.66666667%; +} +.col-9 { + flex: 0 0 auto; + width: 75%; +} +.col-10 { + flex: 0 0 auto; + width: 83.33333333%; +} +.col-11 { + flex: 0 0 auto; + width: 91.66666667%; +} +.col-12 { + flex: 0 0 auto; + width: 100%; +} +.offset-1 { + margin-left: 8.33333333%; +} +.offset-2 { + margin-left: 16.66666667%; +} +.offset-3 { + margin-left: 25%; +} +.offset-4 { + margin-left: 33.33333333%; +} +.offset-5 { + margin-left: 41.66666667%; +} +.offset-6 { + margin-left: 50%; +} +.offset-7 { + margin-left: 58.33333333%; +} +.offset-8 { + margin-left: 66.66666667%; +} +.offset-9 { + margin-left: 75%; +} +.offset-10 { + margin-left: 83.33333333%; +} +.offset-11 { + margin-left: 91.66666667%; +} +.g-0, +.gx-0 { + --bs-gutter-x: 0; +} +.g-0, +.gy-0 { + --bs-gutter-y: 0; +} +.g-1, +.gx-1 { + --bs-gutter-x: 0.25rem; +} +.g-1, +.gy-1 { + --bs-gutter-y: 0.25rem; +} +.g-2, +.gx-2 { + --bs-gutter-x: 0.5rem; +} +.g-2, +.gy-2 { + --bs-gutter-y: 0.5rem; +} +.g-3, +.gx-3 { + --bs-gutter-x: 1rem; +} +.g-3, +.gy-3 { + --bs-gutter-y: 1rem; +} +.g-4, +.gx-4 { + --bs-gutter-x: 1.5rem; +} +.g-4, +.gy-4 { + --bs-gutter-y: 1.5rem; +} +.g-5, +.gx-5 { + --bs-gutter-x: 3rem; +} +.g-5, +.gy-5 { + --bs-gutter-y: 3rem; +} +@media (min-width: 576px) { + .col-sm { + flex: 1 0 0%; + } + .row-cols-sm-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-sm-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-sm-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-sm-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-sm-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-sm-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-sm-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-sm-auto { + flex: 0 0 auto; + width: auto; + } + .col-sm-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-sm-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-sm-3 { + flex: 0 0 auto; + width: 25%; + } + .col-sm-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-sm-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-sm-6 { + flex: 0 0 auto; + width: 50%; + } + .col-sm-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-sm-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-sm-9 { + flex: 0 0 auto; + width: 75%; + } + .col-sm-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-sm-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-sm-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-sm-0 { + margin-left: 0; + } + .offset-sm-1 { + margin-left: 8.33333333%; + } + .offset-sm-2 { + margin-left: 16.66666667%; + } + .offset-sm-3 { + margin-left: 25%; + } + .offset-sm-4 { + margin-left: 33.33333333%; + } + .offset-sm-5 { + margin-left: 41.66666667%; + } + .offset-sm-6 { + margin-left: 50%; + } + .offset-sm-7 { + margin-left: 58.33333333%; + } + .offset-sm-8 { + margin-left: 66.66666667%; + } + .offset-sm-9 { + margin-left: 75%; + } + .offset-sm-10 { + margin-left: 83.33333333%; + } + .offset-sm-11 { + margin-left: 91.66666667%; + } + .g-sm-0, + .gx-sm-0 { + --bs-gutter-x: 0; + } + .g-sm-0, + .gy-sm-0 { + --bs-gutter-y: 0; + } + .g-sm-1, + .gx-sm-1 { + --bs-gutter-x: 0.25rem; + } + .g-sm-1, + .gy-sm-1 { + --bs-gutter-y: 0.25rem; + } + .g-sm-2, + .gx-sm-2 { + --bs-gutter-x: 0.5rem; + } + .g-sm-2, + .gy-sm-2 { + --bs-gutter-y: 0.5rem; + } + .g-sm-3, + .gx-sm-3 { + --bs-gutter-x: 1rem; + } + .g-sm-3, + .gy-sm-3 { + --bs-gutter-y: 1rem; + } + .g-sm-4, + .gx-sm-4 { + --bs-gutter-x: 1.5rem; + } + .g-sm-4, + .gy-sm-4 { + --bs-gutter-y: 1.5rem; + } + .g-sm-5, + .gx-sm-5 { + --bs-gutter-x: 3rem; + } + .g-sm-5, + .gy-sm-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 768px) { + .col-md { + flex: 1 0 0%; + } + .row-cols-md-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-md-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-md-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-md-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-md-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-md-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-md-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-md-auto { + flex: 0 0 auto; + width: auto; + } + .col-md-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-md-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-md-3 { + flex: 0 0 auto; + width: 25%; + } + .col-md-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-md-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-md-6 { + flex: 0 0 auto; + width: 50%; + } + .col-md-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-md-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-md-9 { + flex: 0 0 auto; + width: 75%; + } + .col-md-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-md-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-md-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-md-0 { + margin-left: 0; + } + .offset-md-1 { + margin-left: 8.33333333%; + } + .offset-md-2 { + margin-left: 16.66666667%; + } + .offset-md-3 { + margin-left: 25%; + } + .offset-md-4 { + margin-left: 33.33333333%; + } + .offset-md-5 { + margin-left: 41.66666667%; + } + .offset-md-6 { + margin-left: 50%; + } + .offset-md-7 { + margin-left: 58.33333333%; + } + .offset-md-8 { + margin-left: 66.66666667%; + } + .offset-md-9 { + margin-left: 75%; + } + .offset-md-10 { + margin-left: 83.33333333%; + } + .offset-md-11 { + margin-left: 91.66666667%; + } + .g-md-0, + .gx-md-0 { + --bs-gutter-x: 0; + } + .g-md-0, + .gy-md-0 { + --bs-gutter-y: 0; + } + .g-md-1, + .gx-md-1 { + --bs-gutter-x: 0.25rem; + } + .g-md-1, + .gy-md-1 { + --bs-gutter-y: 0.25rem; + } + .g-md-2, + .gx-md-2 { + --bs-gutter-x: 0.5rem; + } + .g-md-2, + .gy-md-2 { + --bs-gutter-y: 0.5rem; + } + .g-md-3, + .gx-md-3 { + --bs-gutter-x: 1rem; + } + .g-md-3, + .gy-md-3 { + --bs-gutter-y: 1rem; + } + .g-md-4, + .gx-md-4 { + --bs-gutter-x: 1.5rem; + } + .g-md-4, + .gy-md-4 { + --bs-gutter-y: 1.5rem; + } + .g-md-5, + .gx-md-5 { + --bs-gutter-x: 3rem; + } + .g-md-5, + .gy-md-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 992px) { + .col-lg { + flex: 1 0 0%; + } + .row-cols-lg-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-lg-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-lg-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-lg-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-lg-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-lg-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-lg-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-lg-auto { + flex: 0 0 auto; + width: auto; + } + .col-lg-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-lg-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-lg-3 { + flex: 0 0 auto; + width: 25%; + } + .col-lg-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-lg-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-lg-6 { + flex: 0 0 auto; + width: 50%; + } + .col-lg-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-lg-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-lg-9 { + flex: 0 0 auto; + width: 75%; + } + .col-lg-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-lg-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-lg-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-lg-0 { + margin-left: 0; + } + .offset-lg-1 { + margin-left: 8.33333333%; + } + .offset-lg-2 { + margin-left: 16.66666667%; + } + .offset-lg-3 { + margin-left: 25%; + } + .offset-lg-4 { + margin-left: 33.33333333%; + } + .offset-lg-5 { + margin-left: 41.66666667%; + } + .offset-lg-6 { + margin-left: 50%; + } + .offset-lg-7 { + margin-left: 58.33333333%; + } + .offset-lg-8 { + margin-left: 66.66666667%; + } + .offset-lg-9 { + margin-left: 75%; + } + .offset-lg-10 { + margin-left: 83.33333333%; + } + .offset-lg-11 { + margin-left: 91.66666667%; + } + .g-lg-0, + .gx-lg-0 { + --bs-gutter-x: 0; + } + .g-lg-0, + .gy-lg-0 { + --bs-gutter-y: 0; + } + .g-lg-1, + .gx-lg-1 { + --bs-gutter-x: 0.25rem; + } + .g-lg-1, + .gy-lg-1 { + --bs-gutter-y: 0.25rem; + } + .g-lg-2, + .gx-lg-2 { + --bs-gutter-x: 0.5rem; + } + .g-lg-2, + .gy-lg-2 { + --bs-gutter-y: 0.5rem; + } + .g-lg-3, + .gx-lg-3 { + --bs-gutter-x: 1rem; + } + .g-lg-3, + .gy-lg-3 { + --bs-gutter-y: 1rem; + } + .g-lg-4, + .gx-lg-4 { + --bs-gutter-x: 1.5rem; + } + .g-lg-4, + .gy-lg-4 { + --bs-gutter-y: 1.5rem; + } + .g-lg-5, + .gx-lg-5 { + --bs-gutter-x: 3rem; + } + .g-lg-5, + .gy-lg-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1200px) { + .col-xl { + flex: 1 0 0%; + } + .row-cols-xl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xl-0 { + margin-left: 0; + } + .offset-xl-1 { + margin-left: 8.33333333%; + } + .offset-xl-2 { + margin-left: 16.66666667%; + } + .offset-xl-3 { + margin-left: 25%; + } + .offset-xl-4 { + margin-left: 33.33333333%; + } + .offset-xl-5 { + margin-left: 41.66666667%; + } + .offset-xl-6 { + margin-left: 50%; + } + .offset-xl-7 { + margin-left: 58.33333333%; + } + .offset-xl-8 { + margin-left: 66.66666667%; + } + .offset-xl-9 { + margin-left: 75%; + } + .offset-xl-10 { + margin-left: 83.33333333%; + } + .offset-xl-11 { + margin-left: 91.66666667%; + } + .g-xl-0, + .gx-xl-0 { + --bs-gutter-x: 0; + } + .g-xl-0, + .gy-xl-0 { + --bs-gutter-y: 0; + } + .g-xl-1, + .gx-xl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xl-1, + .gy-xl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xl-2, + .gx-xl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xl-2, + .gy-xl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xl-3, + .gx-xl-3 { + --bs-gutter-x: 1rem; + } + .g-xl-3, + .gy-xl-3 { + --bs-gutter-y: 1rem; + } + .g-xl-4, + .gx-xl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xl-4, + .gy-xl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xl-5, + .gx-xl-5 { + --bs-gutter-x: 3rem; + } + .g-xl-5, + .gy-xl-5 { + --bs-gutter-y: 3rem; + } +} +@media (min-width: 1400px) { + .col-xxl { + flex: 1 0 0%; + } + .row-cols-xxl-auto > * { + flex: 0 0 auto; + width: auto; + } + .row-cols-xxl-1 > * { + flex: 0 0 auto; + width: 100%; + } + .row-cols-xxl-2 > * { + flex: 0 0 auto; + width: 50%; + } + .row-cols-xxl-3 > * { + flex: 0 0 auto; + width: 33.3333333333%; + } + .row-cols-xxl-4 > * { + flex: 0 0 auto; + width: 25%; + } + .row-cols-xxl-5 > * { + flex: 0 0 auto; + width: 20%; + } + .row-cols-xxl-6 > * { + flex: 0 0 auto; + width: 16.6666666667%; + } + .col-xxl-auto { + flex: 0 0 auto; + width: auto; + } + .col-xxl-1 { + flex: 0 0 auto; + width: 8.33333333%; + } + .col-xxl-2 { + flex: 0 0 auto; + width: 16.66666667%; + } + .col-xxl-3 { + flex: 0 0 auto; + width: 25%; + } + .col-xxl-4 { + flex: 0 0 auto; + width: 33.33333333%; + } + .col-xxl-5 { + flex: 0 0 auto; + width: 41.66666667%; + } + .col-xxl-6 { + flex: 0 0 auto; + width: 50%; + } + .col-xxl-7 { + flex: 0 0 auto; + width: 58.33333333%; + } + .col-xxl-8 { + flex: 0 0 auto; + width: 66.66666667%; + } + .col-xxl-9 { + flex: 0 0 auto; + width: 75%; + } + .col-xxl-10 { + flex: 0 0 auto; + width: 83.33333333%; + } + .col-xxl-11 { + flex: 0 0 auto; + width: 91.66666667%; + } + .col-xxl-12 { + flex: 0 0 auto; + width: 100%; + } + .offset-xxl-0 { + margin-left: 0; + } + .offset-xxl-1 { + margin-left: 8.33333333%; + } + .offset-xxl-2 { + margin-left: 16.66666667%; + } + .offset-xxl-3 { + margin-left: 25%; + } + .offset-xxl-4 { + margin-left: 33.33333333%; + } + .offset-xxl-5 { + margin-left: 41.66666667%; + } + .offset-xxl-6 { + margin-left: 50%; + } + .offset-xxl-7 { + margin-left: 58.33333333%; + } + .offset-xxl-8 { + margin-left: 66.66666667%; + } + .offset-xxl-9 { + margin-left: 75%; + } + .offset-xxl-10 { + margin-left: 83.33333333%; + } + .offset-xxl-11 { + margin-left: 91.66666667%; + } + .g-xxl-0, + .gx-xxl-0 { + --bs-gutter-x: 0; + } + .g-xxl-0, + .gy-xxl-0 { + --bs-gutter-y: 0; + } + .g-xxl-1, + .gx-xxl-1 { + --bs-gutter-x: 0.25rem; + } + .g-xxl-1, + .gy-xxl-1 { + --bs-gutter-y: 0.25rem; + } + .g-xxl-2, + .gx-xxl-2 { + --bs-gutter-x: 0.5rem; + } + .g-xxl-2, + .gy-xxl-2 { + --bs-gutter-y: 0.5rem; + } + .g-xxl-3, + .gx-xxl-3 { + --bs-gutter-x: 1rem; + } + .g-xxl-3, + .gy-xxl-3 { + --bs-gutter-y: 1rem; + } + .g-xxl-4, + .gx-xxl-4 { + --bs-gutter-x: 1.5rem; + } + .g-xxl-4, + .gy-xxl-4 { + --bs-gutter-y: 1.5rem; + } + .g-xxl-5, + .gx-xxl-5 { + --bs-gutter-x: 3rem; + } + .g-xxl-5, + .gy-xxl-5 { + --bs-gutter-y: 3rem; + } +} +.table { + --bs-table-bg: transparent; + --bs-table-accent-bg: transparent; + --bs-table-striped-color: #212529; + --bs-table-striped-bg: rgba(0, 0, 0, 0.05); + --bs-table-active-color: #212529; + --bs-table-active-bg: rgba(0, 0, 0, 0.1); + --bs-table-hover-color: #212529; + --bs-table-hover-bg: rgba(0, 0, 0, 0.075); + width: 100%; + margin-bottom: 1rem; + color: #212529; + vertical-align: top; + border-color: #dee2e6; +} +.table > :not(caption) > * > * { + padding: 0.5rem 0.5rem; + background-color: var(--bs-table-bg); + border-bottom-width: 1px; + box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); +} +.table > tbody { + vertical-align: inherit; +} +.table > thead { + vertical-align: bottom; +} +.table > :not(:last-child) > :last-child > * { + border-bottom-color: currentColor; +} +.caption-top { + caption-side: top; +} +.table-sm > :not(caption) > * > * { + padding: 0.25rem 0.25rem; +} +.table-bordered > :not(caption) > * { + border-width: 1px 0; +} +.table-bordered > :not(caption) > * > * { + border-width: 0 1px; +} +.table-borderless > :not(caption) > * > * { + border-bottom-width: 0; +} +.table-striped > tbody > tr:nth-of-type(odd) { + --bs-table-accent-bg: var(--bs-table-striped-bg); + color: var(--bs-table-striped-color); +} +.table-active { + --bs-table-accent-bg: var(--bs-table-active-bg); + color: var(--bs-table-active-color); +} +.table-hover > tbody > tr:hover { + --bs-table-accent-bg: var(--bs-table-hover-bg); + color: var(--bs-table-hover-color); +} +.table-primary { + --bs-table-bg: #cfe2ff; + --bs-table-striped-bg: #c5d7f2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bacbe6; + --bs-table-active-color: #000; + --bs-table-hover-bg: #bfd1ec; + --bs-table-hover-color: #000; + color: #000; + border-color: #bacbe6; +} +.table-secondary { + --bs-table-bg: #e2e3e5; + --bs-table-striped-bg: #d7d8da; + --bs-table-striped-color: #000; + --bs-table-active-bg: #cbccce; + --bs-table-active-color: #000; + --bs-table-hover-bg: #d1d2d4; + --bs-table-hover-color: #000; + color: #000; + border-color: #cbccce; +} +.table-success { + --bs-table-bg: #d1e7dd; + --bs-table-striped-bg: #c7dbd2; + --bs-table-striped-color: #000; + --bs-table-active-bg: #bcd0c7; + --bs-table-active-color: #000; + --bs-table-hover-bg: #c1d6cc; + --bs-table-hover-color: #000; + color: #000; + border-color: #bcd0c7; +} +.table-info { + --bs-table-bg: #cff4fc; + --bs-table-striped-bg: #c5e8ef; + --bs-table-striped-color: #000; + --bs-table-active-bg: #badce3; + --bs-table-active-color: #000; + --bs-table-hover-bg: #bfe2e9; + --bs-table-hover-color: #000; + color: #000; + border-color: #badce3; +} +.table-warning { + --bs-table-bg: #fff3cd; + --bs-table-striped-bg: #f2e7c3; + --bs-table-striped-color: #000; + --bs-table-active-bg: #e6dbb9; + --bs-table-active-color: #000; + --bs-table-hover-bg: #ece1be; + --bs-table-hover-color: #000; + color: #000; + border-color: #e6dbb9; +} +.table-danger { + --bs-table-bg: #f8d7da; + --bs-table-striped-bg: #eccccf; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dfc2c4; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e5c7ca; + --bs-table-hover-color: #000; + color: #000; + border-color: #dfc2c4; +} +.table-light { + --bs-table-bg: #f8f9fa; + --bs-table-striped-bg: #ecedee; + --bs-table-striped-color: #000; + --bs-table-active-bg: #dfe0e1; + --bs-table-active-color: #000; + --bs-table-hover-bg: #e5e6e7; + --bs-table-hover-color: #000; + color: #000; + border-color: #dfe0e1; +} +.table-dark { + --bs-table-bg: #212529; + --bs-table-striped-bg: #2c3034; + --bs-table-striped-color: #fff; + --bs-table-active-bg: #373b3e; + --bs-table-active-color: #fff; + --bs-table-hover-bg: #323539; + --bs-table-hover-color: #fff; + color: #fff; + border-color: #373b3e; +} +.table-responsive { + overflow-x: auto; + -webkit-overflow-scrolling: touch; +} +@media (max-width: 575.98px) { + .table-responsive-sm { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 767.98px) { + .table-responsive-md { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 991.98px) { + .table-responsive-lg { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 1199.98px) { + .table-responsive-xl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +@media (max-width: 1399.98px) { + .table-responsive-xxl { + overflow-x: auto; + -webkit-overflow-scrolling: touch; + } +} +.form-label { + margin-bottom: 0.5rem; +} +.col-form-label { + padding-top: calc(0.375rem + 1px); + padding-bottom: calc(0.375rem + 1px); + margin-bottom: 0; + font-size: inherit; + line-height: 1.5; +} +.col-form-label-lg { + padding-top: calc(0.5rem + 1px); + padding-bottom: calc(0.5rem + 1px); + font-size: 1.25rem; +} +.col-form-label-sm { + padding-top: calc(0.25rem + 1px); + padding-bottom: calc(0.25rem + 1px); + font-size: 0.875rem; +} +.form-text { + margin-top: 0.25rem; + font-size: 0.875em; + color: #6c757d; +} +.form-control { + display: block; + width: 100%; + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + background-color: #fff; + background-clip: padding-box; + border: 1px solid #ced4da; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control { + transition: none; + } +} +.form-control[type="file"] { + overflow: hidden; +} +.form-control[type="file"]:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control:focus { + color: #212529; + background-color: #fff; + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-control::-webkit-date-and-time-value { + height: 1.5em; +} +.form-control::-moz-placeholder { + color: #6c757d; + opacity: 1; +} +.form-control::placeholder { + color: #6c757d; + opacity: 1; +} +.form-control:disabled, +.form-control[readonly] { + background-color: #e9ecef; + opacity: 1; +} +.form-control::file-selector-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + -webkit-margin-end: 0.75rem; + margin-inline-end: 0.75rem; + color: #212529; + background-color: #e9ecef; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control::file-selector-button { + transition: none; + } +} +.form-control:hover:not(:disabled):not([readonly])::file-selector-button { + background-color: #dde0e3; +} +.form-control::-webkit-file-upload-button { + padding: 0.375rem 0.75rem; + margin: -0.375rem -0.75rem; + -webkit-margin-end: 0.75rem; + margin-inline-end: 0.75rem; + color: #212529; + background-color: #e9ecef; + pointer-events: none; + border-color: inherit; + border-style: solid; + border-width: 0; + border-inline-end-width: 1px; + border-radius: 0; + -webkit-transition: color 0.15s ease-in-out, + background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, + box-shadow 0.15s ease-in-out; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-control::-webkit-file-upload-button { + -webkit-transition: none; + transition: none; + } +} +.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button { + background-color: #dde0e3; +} +.form-control-plaintext { + display: block; + width: 100%; + padding: 0.375rem 0; + margin-bottom: 0; + line-height: 1.5; + color: #212529; + background-color: transparent; + border: solid transparent; + border-width: 1px 0; +} +.form-control-plaintext.form-control-lg, +.form-control-plaintext.form-control-sm { + padding-right: 0; + padding-left: 0; +} +.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} +.form-control-sm::file-selector-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} +.form-control-sm::-webkit-file-upload-button { + padding: 0.25rem 0.5rem; + margin: -0.25rem -0.5rem; + -webkit-margin-end: 0.5rem; + margin-inline-end: 0.5rem; +} +.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); + padding: 0.5rem 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.form-control-lg::file-selector-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + -webkit-margin-end: 1rem; + margin-inline-end: 1rem; +} +.form-control-lg::-webkit-file-upload-button { + padding: 0.5rem 1rem; + margin: -0.5rem -1rem; + -webkit-margin-end: 1rem; + margin-inline-end: 1rem; +} +textarea.form-control { + min-height: calc(1.5em + 0.75rem + 2px); +} +textarea.form-control-sm { + min-height: calc(1.5em + 0.5rem + 2px); +} +textarea.form-control-lg { + min-height: calc(1.5em + 1rem + 2px); +} +.form-control-color { + width: 3rem; + height: auto; + padding: 0.375rem; +} +.form-control-color:not(:disabled):not([readonly]) { + cursor: pointer; +} +.form-control-color::-moz-color-swatch { + height: 1.5em; + border-radius: 0.25rem; +} +.form-control-color::-webkit-color-swatch { + height: 1.5em; + border-radius: 0.25rem; +} +.form-select { + display: block; + width: 100%; + padding: 0.375rem 2.25rem 0.375rem 0.75rem; + -moz-padding-start: calc(0.75rem - 3px); + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + background-color: #fff; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right 0.75rem center; + background-size: 16px 12px; + border: 1px solid #ced4da; + border-radius: 0.25rem; + transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .form-select { + transition: none; + } +} +.form-select:focus { + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-select[multiple], +.form-select[size]:not([size="1"]) { + padding-right: 0.75rem; + background-image: none; +} +.form-select:disabled { + background-color: #e9ecef; +} +.form-select:-moz-focusring { + color: transparent; + text-shadow: 0 0 0 #212529; +} +.form-select-sm { + padding-top: 0.25rem; + padding-bottom: 0.25rem; + padding-left: 0.5rem; + font-size: 0.875rem; +} +.form-select-lg { + padding-top: 0.5rem; + padding-bottom: 0.5rem; + padding-left: 1rem; + font-size: 1.25rem; +} +.form-check { + display: block; + min-height: 1.5rem; + padding-left: 1.5em; + margin-bottom: 0.125rem; +} +.form-check .form-check-input { + float: left; + margin-left: -1.5em; +} +.form-check-input { + width: 1em; + height: 1em; + margin-top: 0.25em; + vertical-align: top; + background-color: #fff; + background-repeat: no-repeat; + background-position: center; + background-size: contain; + border: 1px solid rgba(0, 0, 0, 0.25); + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; + -webkit-print-color-adjust: exact; + color-adjust: exact; +} +.form-check-input[type="checkbox"] { + border-radius: 0.25em; +} +.form-check-input[type="radio"] { + border-radius: 50%; +} +.form-check-input:active { + filter: brightness(90%); +} +.form-check-input:focus { + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-check-input:checked { + background-color: #0d6efd; + border-color: #0d6efd; +} +.form-check-input:checked[type="checkbox"] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); +} +.form-check-input:checked[type="radio"] { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); +} +.form-check-input[type="checkbox"]:indeterminate { + background-color: #0d6efd; + border-color: #0d6efd; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); +} +.form-check-input:disabled { + pointer-events: none; + filter: none; + opacity: 0.5; +} +.form-check-input:disabled ~ .form-check-label, +.form-check-input[disabled] ~ .form-check-label { + opacity: 0.5; +} +.form-switch { + padding-left: 2.5em; +} +.form-switch .form-check-input { + width: 2em; + margin-left: -2.5em; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e"); + background-position: left center; + border-radius: 2em; + transition: background-position 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-switch .form-check-input { + transition: none; + } +} +.form-switch .form-check-input:focus { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e"); +} +.form-switch .form-check-input:checked { + background-position: right center; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); +} +.form-check-inline { + display: inline-block; + margin-right: 1rem; +} +.btn-check { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.btn-check:disabled + .btn, +.btn-check[disabled] + .btn { + pointer-events: none; + filter: none; + opacity: 0.65; +} +.form-range { + width: 100%; + height: 1.5rem; + padding: 0; + background-color: transparent; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +.form-range:focus { + outline: 0; +} +.form-range:focus::-webkit-slider-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-range:focus::-moz-range-thumb { + box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.form-range::-moz-focus-outer { + border: 0; +} +.form-range::-webkit-slider-thumb { + width: 1rem; + height: 1rem; + margin-top: -0.25rem; + background-color: #0d6efd; + border: 0; + border-radius: 1rem; + -webkit-transition: background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, + box-shadow 0.15s ease-in-out; + -webkit-appearance: none; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-webkit-slider-thumb { + -webkit-transition: none; + transition: none; + } +} +.form-range::-webkit-slider-thumb:active { + background-color: #b6d4fe; +} +.form-range::-webkit-slider-runnable-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.form-range::-moz-range-thumb { + width: 1rem; + height: 1rem; + background-color: #0d6efd; + border: 0; + border-radius: 1rem; + -moz-transition: background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; + transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, + box-shadow 0.15s ease-in-out; + -moz-appearance: none; + appearance: none; +} +@media (prefers-reduced-motion: reduce) { + .form-range::-moz-range-thumb { + -moz-transition: none; + transition: none; + } +} +.form-range::-moz-range-thumb:active { + background-color: #b6d4fe; +} +.form-range::-moz-range-track { + width: 100%; + height: 0.5rem; + color: transparent; + cursor: pointer; + background-color: #dee2e6; + border-color: transparent; + border-radius: 1rem; +} +.form-range:disabled { + pointer-events: none; +} +.form-range:disabled::-webkit-slider-thumb { + background-color: #adb5bd; +} +.form-range:disabled::-moz-range-thumb { + background-color: #adb5bd; +} +.form-floating { + position: relative; +} +.form-floating > .form-control, +.form-floating > .form-select { + height: calc(3.5rem + 2px); + line-height: 1.25; +} +.form-floating > label { + position: absolute; + top: 0; + left: 0; + height: 100%; + padding: 1rem 0.75rem; + pointer-events: none; + border: 1px solid transparent; + transform-origin: 0 0; + transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .form-floating > label { + transition: none; + } +} +.form-floating > .form-control { + padding: 1rem 0.75rem; +} +.form-floating > .form-control::-moz-placeholder { + color: transparent; +} +.form-floating > .form-control::placeholder { + color: transparent; +} +.form-floating > .form-control:not(:-moz-placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:focus, +.form-floating > .form-control:not(:placeholder-shown) { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:-webkit-autofill { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-select { + padding-top: 1.625rem; + padding-bottom: 0.625rem; +} +.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control:focus ~ label, +.form-floating > .form-control:not(:placeholder-shown) ~ label, +.form-floating > .form-select ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.form-floating > .form-control:-webkit-autofill ~ label { + opacity: 0.65; + transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); +} +.input-group { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: stretch; + width: 100%; +} +.input-group > .form-control, +.input-group > .form-select { + position: relative; + flex: 1 1 auto; + width: 1%; + min-width: 0; +} +.input-group > .form-control:focus, +.input-group > .form-select:focus { + z-index: 3; +} +.input-group .btn { + position: relative; + z-index: 2; +} +.input-group .btn:focus { + z-index: 3; +} +.input-group-text { + display: flex; + align-items: center; + padding: 0.375rem 0.75rem; + font-size: 1rem; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: center; + white-space: nowrap; + background-color: #e9ecef; + border: 1px solid #ced4da; + border-radius: 0.25rem; +} +.input-group-lg > .btn, +.input-group-lg > .form-control, +.input-group-lg > .form-select, +.input-group-lg > .input-group-text { + padding: 0.5rem 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.input-group-sm > .btn, +.input-group-sm > .form-control, +.input-group-sm > .form-select, +.input-group-sm > .input-group-text { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} +.input-group-lg > .form-select, +.input-group-sm > .form-select { + padding-right: 3rem; +} +.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3), +.input-group:not(.has-validation) + > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4), +.input-group.has-validation + > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.input-group + > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not( + .valid-feedback + ):not(.invalid-tooltip):not(.invalid-feedback) { + margin-left: -1px; + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.valid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #198754; +} +.valid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(25, 135, 84, 0.9); + border-radius: 0.25rem; +} +.is-valid ~ .valid-feedback, +.is-valid ~ .valid-tooltip, +.was-validated :valid ~ .valid-feedback, +.was-validated :valid ~ .valid-tooltip { + display: block; +} +.form-control.is-valid, +.was-validated .form-control:valid { + border-color: #198754; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.form-control.is-valid:focus, +.was-validated .form-control:valid:focus { + border-color: #198754; + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} +.was-validated textarea.form-control:valid, +textarea.form-control.is-valid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right + calc(0.375em + 0.1875rem); +} +.form-select.is-valid, +.was-validated .form-select:valid { + border-color: #198754; +} +.form-select.is-valid:not([multiple]):not([size]), +.form-select.is-valid:not([multiple])[size="1"], +.was-validated .form-select:valid:not([multiple]):not([size]), +.was-validated .form-select:valid:not([multiple])[size="1"] { + padding-right: 4.125rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), + url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.form-select.is-valid:focus, +.was-validated .form-select:valid:focus { + border-color: #198754; + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} +.form-check-input.is-valid, +.was-validated .form-check-input:valid { + border-color: #198754; +} +.form-check-input.is-valid:checked, +.was-validated .form-check-input:valid:checked { + background-color: #198754; +} +.form-check-input.is-valid:focus, +.was-validated .form-check-input:valid:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.25); +} +.form-check-input.is-valid ~ .form-check-label, +.was-validated .form-check-input:valid ~ .form-check-label { + color: #198754; +} +.form-check-inline .form-check-input ~ .valid-feedback { + margin-left: 0.5em; +} +.input-group .form-control.is-valid, +.input-group .form-select.is-valid, +.was-validated .input-group .form-control:valid, +.was-validated .input-group .form-select:valid { + z-index: 1; +} +.input-group .form-control.is-valid:focus, +.input-group .form-select.is-valid:focus, +.was-validated .input-group .form-control:valid:focus, +.was-validated .input-group .form-select:valid:focus { + z-index: 3; +} +.invalid-feedback { + display: none; + width: 100%; + margin-top: 0.25rem; + font-size: 0.875em; + color: #dc3545; +} +.invalid-tooltip { + position: absolute; + top: 100%; + z-index: 5; + display: none; + max-width: 100%; + padding: 0.25rem 0.5rem; + margin-top: 0.1rem; + font-size: 0.875rem; + color: #fff; + background-color: rgba(220, 53, 69, 0.9); + border-radius: 0.25rem; +} +.is-invalid ~ .invalid-feedback, +.is-invalid ~ .invalid-tooltip, +.was-validated :invalid ~ .invalid-feedback, +.was-validated :invalid ~ .invalid-tooltip { + display: block; +} +.form-control.is-invalid, +.was-validated .form-control:invalid { + border-color: #dc3545; + padding-right: calc(1.5em + 0.75rem); + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-position: right calc(0.375em + 0.1875rem) center; + background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.form-control.is-invalid:focus, +.was-validated .form-control:invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} +.was-validated textarea.form-control:invalid, +textarea.form-control.is-invalid { + padding-right: calc(1.5em + 0.75rem); + background-position: top calc(0.375em + 0.1875rem) right + calc(0.375em + 0.1875rem); +} +.form-select.is-invalid, +.was-validated .form-select:invalid { + border-color: #dc3545; +} +.form-select.is-invalid:not([multiple]):not([size]), +.form-select.is-invalid:not([multiple])[size="1"], +.was-validated .form-select:invalid:not([multiple]):not([size]), +.was-validated .form-select:invalid:not([multiple])[size="1"] { + padding-right: 4.125rem; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), + url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e"); + background-position: right 0.75rem center, center right 2.25rem; + background-size: 16px 12px, calc(0.75em + 0.375rem) calc(0.75em + 0.375rem); +} +.form-select.is-invalid:focus, +.was-validated .form-select:invalid:focus { + border-color: #dc3545; + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} +.form-check-input.is-invalid, +.was-validated .form-check-input:invalid { + border-color: #dc3545; +} +.form-check-input.is-invalid:checked, +.was-validated .form-check-input:invalid:checked { + background-color: #dc3545; +} +.form-check-input.is-invalid:focus, +.was-validated .form-check-input:invalid:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25); +} +.form-check-input.is-invalid ~ .form-check-label, +.was-validated .form-check-input:invalid ~ .form-check-label { + color: #dc3545; +} +.form-check-inline .form-check-input ~ .invalid-feedback { + margin-left: 0.5em; +} +.input-group .form-control.is-invalid, +.input-group .form-select.is-invalid, +.was-validated .input-group .form-control:invalid, +.was-validated .input-group .form-select:invalid { + z-index: 2; +} +.input-group .form-control.is-invalid:focus, +.input-group .form-select.is-invalid:focus, +.was-validated .input-group .form-control:invalid:focus, +.was-validated .input-group .form-select:invalid:focus { + z-index: 3; +} +.btn { + display: inline-block; + font-weight: 400; + line-height: 1.5; + color: #212529; + text-align: center; + text-decoration: none; + vertical-align: middle; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + background-color: transparent; + border: 1px solid transparent; + padding: 0.375rem 0.75rem; + font-size: 1rem; + border-radius: 0.25rem; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .btn { + transition: none; + } +} +.btn:hover { + color: #212529; +} +.btn-check:focus + .btn, +.btn:focus { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.btn.disabled, +.btn:disabled, +fieldset:disabled .btn { + pointer-events: none; + opacity: 0.65; +} +.btn-primary { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-primary:hover { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; +} +.btn-check:focus + .btn-primary, +.btn-primary:focus { + color: #fff; + background-color: #0b5ed7; + border-color: #0a58ca; + box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); +} +.btn-check:active + .btn-primary, +.btn-check:checked + .btn-primary, +.btn-primary.active, +.btn-primary:active, +.show > .btn-primary.dropdown-toggle { + color: #fff; + background-color: #0a58ca; + border-color: #0a53be; +} +.btn-check:active + .btn-primary:focus, +.btn-check:checked + .btn-primary:focus, +.btn-primary.active:focus, +.btn-primary:active:focus, +.show > .btn-primary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(49, 132, 253, 0.5); +} +.btn-primary.disabled, +.btn-primary:disabled { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-secondary { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-secondary:hover { + color: #fff; + background-color: #5c636a; + border-color: #565e64; +} +.btn-check:focus + .btn-secondary, +.btn-secondary:focus { + color: #fff; + background-color: #5c636a; + border-color: #565e64; + box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); +} +.btn-check:active + .btn-secondary, +.btn-check:checked + .btn-secondary, +.btn-secondary.active, +.btn-secondary:active, +.show > .btn-secondary.dropdown-toggle { + color: #fff; + background-color: #565e64; + border-color: #51585e; +} +.btn-check:active + .btn-secondary:focus, +.btn-check:checked + .btn-secondary:focus, +.btn-secondary.active:focus, +.btn-secondary:active:focus, +.show > .btn-secondary.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(130, 138, 145, 0.5); +} +.btn-secondary.disabled, +.btn-secondary:disabled { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-success { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-success:hover { + color: #fff; + background-color: #157347; + border-color: #146c43; +} +.btn-check:focus + .btn-success, +.btn-success:focus { + color: #fff; + background-color: #157347; + border-color: #146c43; + box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); +} +.btn-check:active + .btn-success, +.btn-check:checked + .btn-success, +.btn-success.active, +.btn-success:active, +.show > .btn-success.dropdown-toggle { + color: #fff; + background-color: #146c43; + border-color: #13653f; +} +.btn-check:active + .btn-success:focus, +.btn-check:checked + .btn-success:focus, +.btn-success.active:focus, +.btn-success:active:focus, +.show > .btn-success.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(60, 153, 110, 0.5); +} +.btn-success.disabled, +.btn-success:disabled { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-info { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-info:hover { + color: #000; + background-color: #31d2f2; + border-color: #25cff2; +} +.btn-check:focus + .btn-info, +.btn-info:focus { + color: #000; + background-color: #31d2f2; + border-color: #25cff2; + box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); +} +.btn-check:active + .btn-info, +.btn-check:checked + .btn-info, +.btn-info.active, +.btn-info:active, +.show > .btn-info.dropdown-toggle { + color: #000; + background-color: #3dd5f3; + border-color: #25cff2; +} +.btn-check:active + .btn-info:focus, +.btn-check:checked + .btn-info:focus, +.btn-info.active:focus, +.btn-info:active:focus, +.show > .btn-info.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(11, 172, 204, 0.5); +} +.btn-info.disabled, +.btn-info:disabled { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-warning { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-warning:hover { + color: #000; + background-color: #ffca2c; + border-color: #ffc720; +} +.btn-check:focus + .btn-warning, +.btn-warning:focus { + color: #000; + background-color: #ffca2c; + border-color: #ffc720; + box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); +} +.btn-check:active + .btn-warning, +.btn-check:checked + .btn-warning, +.btn-warning.active, +.btn-warning:active, +.show > .btn-warning.dropdown-toggle { + color: #000; + background-color: #ffcd39; + border-color: #ffc720; +} +.btn-check:active + .btn-warning:focus, +.btn-check:checked + .btn-warning:focus, +.btn-warning.active:focus, +.btn-warning:active:focus, +.show > .btn-warning.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(217, 164, 6, 0.5); +} +.btn-warning.disabled, +.btn-warning:disabled { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-danger { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-danger:hover { + color: #fff; + background-color: #bb2d3b; + border-color: #b02a37; +} +.btn-check:focus + .btn-danger, +.btn-danger:focus { + color: #fff; + background-color: #bb2d3b; + border-color: #b02a37; + box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); +} +.btn-check:active + .btn-danger, +.btn-check:checked + .btn-danger, +.btn-danger.active, +.btn-danger:active, +.show > .btn-danger.dropdown-toggle { + color: #fff; + background-color: #b02a37; + border-color: #a52834; +} +.btn-check:active + .btn-danger:focus, +.btn-check:checked + .btn-danger:focus, +.btn-danger.active:focus, +.btn-danger:active:focus, +.show > .btn-danger.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(225, 83, 97, 0.5); +} +.btn-danger.disabled, +.btn-danger:disabled { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-light { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-light:hover { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; +} +.btn-check:focus + .btn-light, +.btn-light:focus { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; + box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); +} +.btn-check:active + .btn-light, +.btn-check:checked + .btn-light, +.btn-light.active, +.btn-light:active, +.show > .btn-light.dropdown-toggle { + color: #000; + background-color: #f9fafb; + border-color: #f9fafb; +} +.btn-check:active + .btn-light:focus, +.btn-check:checked + .btn-light:focus, +.btn-light.active:focus, +.btn-light:active:focus, +.show > .btn-light.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(211, 212, 213, 0.5); +} +.btn-light.disabled, +.btn-light:disabled { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-dark { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-dark:hover { + color: #fff; + background-color: #1c1f23; + border-color: #1a1e21; +} +.btn-check:focus + .btn-dark, +.btn-dark:focus { + color: #fff; + background-color: #1c1f23; + border-color: #1a1e21; + box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); +} +.btn-check:active + .btn-dark, +.btn-check:checked + .btn-dark, +.btn-dark.active, +.btn-dark:active, +.show > .btn-dark.dropdown-toggle { + color: #fff; + background-color: #1a1e21; + border-color: #191c1f; +} +.btn-check:active + .btn-dark:focus, +.btn-check:checked + .btn-dark:focus, +.btn-dark.active:focus, +.btn-dark:active:focus, +.show > .btn-dark.dropdown-toggle:focus { + box-shadow: 0 0 0 0.25rem rgba(66, 70, 73, 0.5); +} +.btn-dark.disabled, +.btn-dark:disabled { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-outline-primary { + color: #0d6efd; + border-color: #0d6efd; +} +.btn-outline-primary:hover { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-check:focus + .btn-outline-primary, +.btn-outline-primary:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); +} +.btn-check:active + .btn-outline-primary, +.btn-check:checked + .btn-outline-primary, +.btn-outline-primary.active, +.btn-outline-primary.dropdown-toggle.show, +.btn-outline-primary:active { + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.btn-check:active + .btn-outline-primary:focus, +.btn-check:checked + .btn-outline-primary:focus, +.btn-outline-primary.active:focus, +.btn-outline-primary.dropdown-toggle.show:focus, +.btn-outline-primary:active:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.5); +} +.btn-outline-primary.disabled, +.btn-outline-primary:disabled { + color: #0d6efd; + background-color: transparent; +} +.btn-outline-secondary { + color: #6c757d; + border-color: #6c757d; +} +.btn-outline-secondary:hover { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-check:focus + .btn-outline-secondary, +.btn-outline-secondary:focus { + box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); +} +.btn-check:active + .btn-outline-secondary, +.btn-check:checked + .btn-outline-secondary, +.btn-outline-secondary.active, +.btn-outline-secondary.dropdown-toggle.show, +.btn-outline-secondary:active { + color: #fff; + background-color: #6c757d; + border-color: #6c757d; +} +.btn-check:active + .btn-outline-secondary:focus, +.btn-check:checked + .btn-outline-secondary:focus, +.btn-outline-secondary.active:focus, +.btn-outline-secondary.dropdown-toggle.show:focus, +.btn-outline-secondary:active:focus { + box-shadow: 0 0 0 0.25rem rgba(108, 117, 125, 0.5); +} +.btn-outline-secondary.disabled, +.btn-outline-secondary:disabled { + color: #6c757d; + background-color: transparent; +} +.btn-outline-success { + color: #198754; + border-color: #198754; +} +.btn-outline-success:hover { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-check:focus + .btn-outline-success, +.btn-outline-success:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); +} +.btn-check:active + .btn-outline-success, +.btn-check:checked + .btn-outline-success, +.btn-outline-success.active, +.btn-outline-success.dropdown-toggle.show, +.btn-outline-success:active { + color: #fff; + background-color: #198754; + border-color: #198754; +} +.btn-check:active + .btn-outline-success:focus, +.btn-check:checked + .btn-outline-success:focus, +.btn-outline-success.active:focus, +.btn-outline-success.dropdown-toggle.show:focus, +.btn-outline-success:active:focus { + box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.5); +} +.btn-outline-success.disabled, +.btn-outline-success:disabled { + color: #198754; + background-color: transparent; +} +.btn-outline-info { + color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-outline-info:hover { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-check:focus + .btn-outline-info, +.btn-outline-info:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); +} +.btn-check:active + .btn-outline-info, +.btn-check:checked + .btn-outline-info, +.btn-outline-info.active, +.btn-outline-info.dropdown-toggle.show, +.btn-outline-info:active { + color: #000; + background-color: #0dcaf0; + border-color: #0dcaf0; +} +.btn-check:active + .btn-outline-info:focus, +.btn-check:checked + .btn-outline-info:focus, +.btn-outline-info.active:focus, +.btn-outline-info.dropdown-toggle.show:focus, +.btn-outline-info:active:focus { + box-shadow: 0 0 0 0.25rem rgba(13, 202, 240, 0.5); +} +.btn-outline-info.disabled, +.btn-outline-info:disabled { + color: #0dcaf0; + background-color: transparent; +} +.btn-outline-warning { + color: #ffc107; + border-color: #ffc107; +} +.btn-outline-warning:hover { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-check:focus + .btn-outline-warning, +.btn-outline-warning:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); +} +.btn-check:active + .btn-outline-warning, +.btn-check:checked + .btn-outline-warning, +.btn-outline-warning.active, +.btn-outline-warning.dropdown-toggle.show, +.btn-outline-warning:active { + color: #000; + background-color: #ffc107; + border-color: #ffc107; +} +.btn-check:active + .btn-outline-warning:focus, +.btn-check:checked + .btn-outline-warning:focus, +.btn-outline-warning.active:focus, +.btn-outline-warning.dropdown-toggle.show:focus, +.btn-outline-warning:active:focus { + box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5); +} +.btn-outline-warning.disabled, +.btn-outline-warning:disabled { + color: #ffc107; + background-color: transparent; +} +.btn-outline-danger { + color: #dc3545; + border-color: #dc3545; +} +.btn-outline-danger:hover { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-check:focus + .btn-outline-danger, +.btn-outline-danger:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); +} +.btn-check:active + .btn-outline-danger, +.btn-check:checked + .btn-outline-danger, +.btn-outline-danger.active, +.btn-outline-danger.dropdown-toggle.show, +.btn-outline-danger:active { + color: #fff; + background-color: #dc3545; + border-color: #dc3545; +} +.btn-check:active + .btn-outline-danger:focus, +.btn-check:checked + .btn-outline-danger:focus, +.btn-outline-danger.active:focus, +.btn-outline-danger.dropdown-toggle.show:focus, +.btn-outline-danger:active:focus { + box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5); +} +.btn-outline-danger.disabled, +.btn-outline-danger:disabled { + color: #dc3545; + background-color: transparent; +} +.btn-outline-light { + color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-outline-light:hover { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-check:focus + .btn-outline-light, +.btn-outline-light:focus { + box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); +} +.btn-check:active + .btn-outline-light, +.btn-check:checked + .btn-outline-light, +.btn-outline-light.active, +.btn-outline-light.dropdown-toggle.show, +.btn-outline-light:active { + color: #000; + background-color: #f8f9fa; + border-color: #f8f9fa; +} +.btn-check:active + .btn-outline-light:focus, +.btn-check:checked + .btn-outline-light:focus, +.btn-outline-light.active:focus, +.btn-outline-light.dropdown-toggle.show:focus, +.btn-outline-light:active:focus { + box-shadow: 0 0 0 0.25rem rgba(248, 249, 250, 0.5); +} +.btn-outline-light.disabled, +.btn-outline-light:disabled { + color: #f8f9fa; + background-color: transparent; +} +.btn-outline-dark { + color: #212529; + border-color: #212529; +} +.btn-outline-dark:hover { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-check:focus + .btn-outline-dark, +.btn-outline-dark:focus { + box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); +} +.btn-check:active + .btn-outline-dark, +.btn-check:checked + .btn-outline-dark, +.btn-outline-dark.active, +.btn-outline-dark.dropdown-toggle.show, +.btn-outline-dark:active { + color: #fff; + background-color: #212529; + border-color: #212529; +} +.btn-check:active + .btn-outline-dark:focus, +.btn-check:checked + .btn-outline-dark:focus, +.btn-outline-dark.active:focus, +.btn-outline-dark.dropdown-toggle.show:focus, +.btn-outline-dark:active:focus { + box-shadow: 0 0 0 0.25rem rgba(33, 37, 41, 0.5); +} +.btn-outline-dark.disabled, +.btn-outline-dark:disabled { + color: #212529; + background-color: transparent; +} +.btn-link { + font-weight: 400; + color: #0d6efd; + text-decoration: underline; +} +.btn-link:hover { + color: #0a58ca; +} +.btn-link.disabled, +.btn-link:disabled { + color: #6c757d; +} +.btn-group-lg > .btn, +.btn-lg { + padding: 0.5rem 1rem; + font-size: 1.25rem; + border-radius: 0.3rem; +} +.btn-group-sm > .btn, +.btn-sm { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; + border-radius: 0.2rem; +} +.fade { + transition: opacity 0.15s linear; +} +@media (prefers-reduced-motion: reduce) { + .fade { + transition: none; + } +} +.fade:not(.show) { + opacity: 0; +} +.collapse:not(.show) { + display: none; +} +.collapsing { + height: 0; + overflow: hidden; + transition: height 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing { + transition: none; + } +} +.collapsing.collapse-horizontal { + width: 0; + height: auto; + transition: width 0.35s ease; +} +@media (prefers-reduced-motion: reduce) { + .collapsing.collapse-horizontal { + transition: none; + } +} +.dropdown, +.dropend, +.dropstart, +.dropup { + position: relative; +} +.dropdown-toggle { + white-space: nowrap; +} +.dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid; + border-right: 0.3em solid transparent; + border-bottom: 0; + border-left: 0.3em solid transparent; +} +.dropdown-toggle:empty::after { + margin-left: 0; +} +.dropdown-menu { + position: absolute; + z-index: 1000; + display: none; + min-width: 10rem; + padding: 0.5rem 0; + margin: 0; + font-size: 1rem; + color: #212529; + text-align: left; + list-style: none; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} +.dropdown-menu[data-bs-popper] { + top: 100%; + left: 0; + margin-top: 0.125rem; +} +.dropdown-menu-start { + --bs-position: start; +} +.dropdown-menu-start[data-bs-popper] { + right: auto; + left: 0; +} +.dropdown-menu-end { + --bs-position: end; +} +.dropdown-menu-end[data-bs-popper] { + right: 0; + left: auto; +} +@media (min-width: 576px) { + .dropdown-menu-sm-start { + --bs-position: start; + } + .dropdown-menu-sm-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-sm-end { + --bs-position: end; + } + .dropdown-menu-sm-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 768px) { + .dropdown-menu-md-start { + --bs-position: start; + } + .dropdown-menu-md-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-md-end { + --bs-position: end; + } + .dropdown-menu-md-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 992px) { + .dropdown-menu-lg-start { + --bs-position: start; + } + .dropdown-menu-lg-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-lg-end { + --bs-position: end; + } + .dropdown-menu-lg-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 1200px) { + .dropdown-menu-xl-start { + --bs-position: start; + } + .dropdown-menu-xl-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-xl-end { + --bs-position: end; + } + .dropdown-menu-xl-end[data-bs-popper] { + right: 0; + left: auto; + } +} +@media (min-width: 1400px) { + .dropdown-menu-xxl-start { + --bs-position: start; + } + .dropdown-menu-xxl-start[data-bs-popper] { + right: auto; + left: 0; + } + .dropdown-menu-xxl-end { + --bs-position: end; + } + .dropdown-menu-xxl-end[data-bs-popper] { + right: 0; + left: auto; + } +} +.dropup .dropdown-menu[data-bs-popper] { + top: auto; + bottom: 100%; + margin-top: 0; + margin-bottom: 0.125rem; +} +.dropup .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0; + border-right: 0.3em solid transparent; + border-bottom: 0.3em solid; + border-left: 0.3em solid transparent; +} +.dropup .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropend .dropdown-menu[data-bs-popper] { + top: 0; + right: auto; + left: 100%; + margin-top: 0; + margin-left: 0.125rem; +} +.dropend .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0; + border-bottom: 0.3em solid transparent; + border-left: 0.3em solid; +} +.dropend .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropend .dropdown-toggle::after { + vertical-align: 0; +} +.dropstart .dropdown-menu[data-bs-popper] { + top: 0; + right: 100%; + left: auto; + margin-top: 0; + margin-right: 0.125rem; +} +.dropstart .dropdown-toggle::after { + display: inline-block; + margin-left: 0.255em; + vertical-align: 0.255em; + content: ""; +} +.dropstart .dropdown-toggle::after { + display: none; +} +.dropstart .dropdown-toggle::before { + display: inline-block; + margin-right: 0.255em; + vertical-align: 0.255em; + content: ""; + border-top: 0.3em solid transparent; + border-right: 0.3em solid; + border-bottom: 0.3em solid transparent; +} +.dropstart .dropdown-toggle:empty::after { + margin-left: 0; +} +.dropstart .dropdown-toggle::before { + vertical-align: 0; +} +.dropdown-divider { + height: 0; + margin: 0.5rem 0; + overflow: hidden; + border-top: 1px solid rgba(0, 0, 0, 0.15); +} +.dropdown-item { + display: block; + width: 100%; + padding: 0.25rem 1rem; + clear: both; + font-weight: 400; + color: #212529; + text-align: inherit; + text-decoration: none; + white-space: nowrap; + background-color: transparent; + border: 0; +} +.dropdown-item:focus, +.dropdown-item:hover { + color: #1e2125; + background-color: #e9ecef; +} +.dropdown-item.active, +.dropdown-item:active { + color: #fff; + text-decoration: none; + background-color: #0d6efd; +} +.dropdown-item.disabled, +.dropdown-item:disabled { + color: #adb5bd; + pointer-events: none; + background-color: transparent; +} +.dropdown-menu.show { + display: block; +} +.dropdown-header { + display: block; + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 0.875rem; + color: #6c757d; + white-space: nowrap; +} +.dropdown-item-text { + display: block; + padding: 0.25rem 1rem; + color: #212529; +} +.dropdown-menu-dark { + color: #dee2e6; + background-color: #343a40; + border-color: rgba(0, 0, 0, 0.15); +} +.dropdown-menu-dark .dropdown-item { + color: #dee2e6; +} +.dropdown-menu-dark .dropdown-item:focus, +.dropdown-menu-dark .dropdown-item:hover { + color: #fff; + background-color: rgba(255, 255, 255, 0.15); +} +.dropdown-menu-dark .dropdown-item.active, +.dropdown-menu-dark .dropdown-item:active { + color: #fff; + background-color: #0d6efd; +} +.dropdown-menu-dark .dropdown-item.disabled, +.dropdown-menu-dark .dropdown-item:disabled { + color: #adb5bd; +} +.dropdown-menu-dark .dropdown-divider { + border-color: rgba(0, 0, 0, 0.15); +} +.dropdown-menu-dark .dropdown-item-text { + color: #dee2e6; +} +.dropdown-menu-dark .dropdown-header { + color: #adb5bd; +} +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; +} +.btn-group-vertical > .btn, +.btn-group > .btn { + position: relative; + flex: 1 1 auto; +} +.btn-group-vertical > .btn-check:checked + .btn, +.btn-group-vertical > .btn-check:focus + .btn, +.btn-group-vertical > .btn.active, +.btn-group-vertical > .btn:active, +.btn-group-vertical > .btn:focus, +.btn-group-vertical > .btn:hover, +.btn-group > .btn-check:checked + .btn, +.btn-group > .btn-check:focus + .btn, +.btn-group > .btn.active, +.btn-group > .btn:active, +.btn-group > .btn:focus, +.btn-group > .btn:hover { + z-index: 1; +} +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; +} +.btn-toolbar .input-group { + width: auto; +} +.btn-group > .btn-group:not(:first-child), +.btn-group > .btn:not(:first-child) { + margin-left: -1px; +} +.btn-group > .btn-group:not(:last-child) > .btn, +.btn-group > .btn:not(:last-child):not(.dropdown-toggle) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; +} +.btn-group > .btn-group:not(:first-child) > .btn, +.btn-group > .btn:nth-child(n + 3), +.btn-group > :not(.btn-check) + .btn { + border-top-left-radius: 0; + border-bottom-left-radius: 0; +} +.dropdown-toggle-split { + padding-right: 0.5625rem; + padding-left: 0.5625rem; +} +.dropdown-toggle-split::after, +.dropend .dropdown-toggle-split::after, +.dropup .dropdown-toggle-split::after { + margin-left: 0; +} +.dropstart .dropdown-toggle-split::before { + margin-right: 0; +} +.btn-group-sm > .btn + .dropdown-toggle-split, +.btn-sm + .dropdown-toggle-split { + padding-right: 0.375rem; + padding-left: 0.375rem; +} +.btn-group-lg > .btn + .dropdown-toggle-split, +.btn-lg + .dropdown-toggle-split { + padding-right: 0.75rem; + padding-left: 0.75rem; +} +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; +} +.btn-group-vertical > .btn, +.btn-group-vertical > .btn-group { + width: 100%; +} +.btn-group-vertical > .btn-group:not(:first-child), +.btn-group-vertical > .btn:not(:first-child) { + margin-top: -1px; +} +.btn-group-vertical > .btn-group:not(:last-child) > .btn, +.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) { + border-bottom-right-radius: 0; + border-bottom-left-radius: 0; +} +.btn-group-vertical > .btn-group:not(:first-child) > .btn, +.btn-group-vertical > .btn ~ .btn { + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.nav { + display: flex; + flex-wrap: wrap; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.nav-link { + display: block; + padding: 0.5rem 1rem; + color: #0d6efd; + text-decoration: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .nav-link { + transition: none; + } +} +.nav-link:focus, +.nav-link:hover { + color: #0a58ca; +} +.nav-link.disabled { + color: #6c757d; + pointer-events: none; + cursor: default; +} +.nav-tabs { + border-bottom: 1px solid #dee2e6; +} +.nav-tabs .nav-link { + margin-bottom: -1px; + background: 0 0; + border: 1px solid transparent; + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} +.nav-tabs .nav-link:focus, +.nav-tabs .nav-link:hover { + border-color: #e9ecef #e9ecef #dee2e6; + isolation: isolate; +} +.nav-tabs .nav-link.disabled { + color: #6c757d; + background-color: transparent; + border-color: transparent; +} +.nav-tabs .nav-item.show .nav-link, +.nav-tabs .nav-link.active { + color: #495057; + background-color: #fff; + border-color: #dee2e6 #dee2e6 #fff; +} +.nav-tabs .dropdown-menu { + margin-top: -1px; + border-top-left-radius: 0; + border-top-right-radius: 0; +} +.nav-pills .nav-link { + background: 0 0; + border: 0; + border-radius: 0.25rem; +} +.nav-pills .nav-link.active, +.nav-pills .show > .nav-link { + color: #fff; + background-color: #0d6efd; +} +.nav-fill .nav-item, +.nav-fill > .nav-link { + flex: 1 1 auto; + text-align: center; +} +.nav-justified .nav-item, +.nav-justified > .nav-link { + flex-basis: 0; + flex-grow: 1; + text-align: center; +} +.nav-fill .nav-item .nav-link, +.nav-justified .nav-item .nav-link { + width: 100%; +} +.tab-content > .tab-pane { + display: none; +} +.tab-content > .active { + display: block; +} +.navbar { + position: relative; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-between; + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} +.navbar > .container, +.navbar > .container-fluid, +.navbar > .container-lg, +.navbar > .container-md, +.navbar > .container-sm, +.navbar > .container-xl, +.navbar > .container-xxl { + display: flex; + flex-wrap: inherit; + align-items: center; + justify-content: space-between; +} +.navbar-brand { + padding-top: 0.3125rem; + padding-bottom: 0.3125rem; + margin-right: 1rem; + font-size: 1.25rem; + text-decoration: none; + white-space: nowrap; +} +.navbar-nav { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + list-style: none; +} +.navbar-nav .nav-link { + padding-right: 0; + padding-left: 0; +} +.navbar-nav .dropdown-menu { + position: static; +} +.navbar-text { + padding-top: 0.5rem; + padding-bottom: 0.5rem; +} +.navbar-collapse { + flex-basis: 100%; + flex-grow: 1; + align-items: center; +} +.navbar-toggler { + padding: 0.25rem 0.75rem; + font-size: 1.25rem; + line-height: 1; + background-color: transparent; + border: 1px solid transparent; + border-radius: 0.25rem; + transition: box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .navbar-toggler { + transition: none; + } +} +.navbar-toggler:hover { + text-decoration: none; +} +.navbar-toggler:focus { + text-decoration: none; + outline: 0; + box-shadow: 0 0 0 0.25rem; +} +.navbar-toggler-icon { + display: inline-block; + width: 1.5em; + height: 1.5em; + vertical-align: middle; + background-repeat: no-repeat; + background-position: center; + background-size: 100%; +} +.navbar-nav-scroll { + max-height: var(--bs-scroll-height, 75vh); + overflow-y: auto; +} +@media (min-width: 576px) { + .navbar-expand-sm { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-sm .navbar-nav { + flex-direction: row; + } + .navbar-expand-sm .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-sm .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-sm .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-sm .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-sm .navbar-toggler { + display: none; + } + .navbar-expand-sm .offcanvas-header { + display: none; + } + .navbar-expand-sm .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-sm .offcanvas-bottom, + .navbar-expand-sm .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-sm .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 768px) { + .navbar-expand-md { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-md .navbar-nav { + flex-direction: row; + } + .navbar-expand-md .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-md .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-md .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-md .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-md .navbar-toggler { + display: none; + } + .navbar-expand-md .offcanvas-header { + display: none; + } + .navbar-expand-md .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-md .offcanvas-bottom, + .navbar-expand-md .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-md .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 992px) { + .navbar-expand-lg { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-lg .navbar-nav { + flex-direction: row; + } + .navbar-expand-lg .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-lg .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-lg .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-lg .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-lg .navbar-toggler { + display: none; + } + .navbar-expand-lg .offcanvas-header { + display: none; + } + .navbar-expand-lg .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-lg .offcanvas-bottom, + .navbar-expand-lg .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-lg .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1200px) { + .navbar-expand-xl { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-xl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xl .navbar-toggler { + display: none; + } + .navbar-expand-xl .offcanvas-header { + display: none; + } + .navbar-expand-xl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-xl .offcanvas-bottom, + .navbar-expand-xl .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-xl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +@media (min-width: 1400px) { + .navbar-expand-xxl { + flex-wrap: nowrap; + justify-content: flex-start; + } + .navbar-expand-xxl .navbar-nav { + flex-direction: row; + } + .navbar-expand-xxl .navbar-nav .dropdown-menu { + position: absolute; + } + .navbar-expand-xxl .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; + } + .navbar-expand-xxl .navbar-nav-scroll { + overflow: visible; + } + .navbar-expand-xxl .navbar-collapse { + display: flex !important; + flex-basis: auto; + } + .navbar-expand-xxl .navbar-toggler { + display: none; + } + .navbar-expand-xxl .offcanvas-header { + display: none; + } + .navbar-expand-xxl .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; + } + .navbar-expand-xxl .offcanvas-bottom, + .navbar-expand-xxl .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; + } + .navbar-expand-xxl .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; + } +} +.navbar-expand { + flex-wrap: nowrap; + justify-content: flex-start; +} +.navbar-expand .navbar-nav { + flex-direction: row; +} +.navbar-expand .navbar-nav .dropdown-menu { + position: absolute; +} +.navbar-expand .navbar-nav .nav-link { + padding-right: 0.5rem; + padding-left: 0.5rem; +} +.navbar-expand .navbar-nav-scroll { + overflow: visible; +} +.navbar-expand .navbar-collapse { + display: flex !important; + flex-basis: auto; +} +.navbar-expand .navbar-toggler { + display: none; +} +.navbar-expand .offcanvas-header { + display: none; +} +.navbar-expand .offcanvas { + position: inherit; + bottom: 0; + z-index: 1000; + flex-grow: 1; + visibility: visible !important; + background-color: transparent; + border-right: 0; + border-left: 0; + transition: none; + transform: none; +} +.navbar-expand .offcanvas-bottom, +.navbar-expand .offcanvas-top { + height: auto; + border-top: 0; + border-bottom: 0; +} +.navbar-expand .offcanvas-body { + display: flex; + flex-grow: 0; + padding: 0; + overflow-y: visible; +} +.navbar-light .navbar-brand { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-brand:focus, +.navbar-light .navbar-brand:hover { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-nav .nav-link { + color: rgba(0, 0, 0, 0.55); +} +.navbar-light .navbar-nav .nav-link:focus, +.navbar-light .navbar-nav .nav-link:hover { + color: rgba(0, 0, 0, 0.7); +} +.navbar-light .navbar-nav .nav-link.disabled { + color: rgba(0, 0, 0, 0.3); +} +.navbar-light .navbar-nav .nav-link.active, +.navbar-light .navbar-nav .show > .nav-link { + color: rgba(0, 0, 0, 0.9); +} +.navbar-light .navbar-toggler { + color: rgba(0, 0, 0, 0.55); + border-color: rgba(0, 0, 0, 0.1); +} +.navbar-light .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} +.navbar-light .navbar-text { + color: rgba(0, 0, 0, 0.55); +} +.navbar-light .navbar-text a, +.navbar-light .navbar-text a:focus, +.navbar-light .navbar-text a:hover { + color: rgba(0, 0, 0, 0.9); +} +.navbar-dark .navbar-brand { + color: #fff; +} +.navbar-dark .navbar-brand:focus, +.navbar-dark .navbar-brand:hover { + color: #fff; +} +.navbar-dark .navbar-nav .nav-link { + color: rgba(255, 255, 255, 0.55); +} +.navbar-dark .navbar-nav .nav-link:focus, +.navbar-dark .navbar-nav .nav-link:hover { + color: rgba(255, 255, 255, 0.75); +} +.navbar-dark .navbar-nav .nav-link.disabled { + color: rgba(255, 255, 255, 0.25); +} +.navbar-dark .navbar-nav .nav-link.active, +.navbar-dark .navbar-nav .show > .nav-link { + color: #fff; +} +.navbar-dark .navbar-toggler { + color: rgba(255, 255, 255, 0.55); + border-color: rgba(255, 255, 255, 0.1); +} +.navbar-dark .navbar-toggler-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); +} +.navbar-dark .navbar-text { + color: rgba(255, 255, 255, 0.55); +} +.navbar-dark .navbar-text a, +.navbar-dark .navbar-text a:focus, +.navbar-dark .navbar-text a:hover { + color: #fff; +} +.card { + position: relative; + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: #fff; + background-clip: border-box; + border: 1px solid rgba(0, 0, 0, 0.125); + border-radius: 0.25rem; +} +.card > hr { + margin-right: 0; + margin-left: 0; +} +.card > .list-group { + border-top: inherit; + border-bottom: inherit; +} +.card > .list-group:first-child { + border-top-width: 0; + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.card > .list-group:last-child { + border-bottom-width: 0; + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.card > .card-header + .list-group, +.card > .list-group + .card-footer { + border-top: 0; +} +.card-body { + flex: 1 1 auto; + padding: 1rem 1rem; +} +.card-title { + margin-bottom: 0.5rem; +} +.card-subtitle { + margin-top: -0.25rem; + margin-bottom: 0; +} +.card-text:last-child { + margin-bottom: 0; +} +.card-link + .card-link { + margin-left: 1rem; +} +.card-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + background-color: rgba(0, 0, 0, 0.03); + border-bottom: 1px solid rgba(0, 0, 0, 0.125); +} +.card-header:first-child { + border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; +} +.card-footer { + padding: 0.5rem 1rem; + background-color: rgba(0, 0, 0, 0.03); + border-top: 1px solid rgba(0, 0, 0, 0.125); +} +.card-footer:last-child { + border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); +} +.card-header-tabs { + margin-right: -0.5rem; + margin-bottom: -0.5rem; + margin-left: -0.5rem; + border-bottom: 0; +} +.card-header-pills { + margin-right: -0.5rem; + margin-left: -0.5rem; +} +.card-img-overlay { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + padding: 1rem; + border-radius: calc(0.25rem - 1px); +} +.card-img, +.card-img-bottom, +.card-img-top { + width: 100%; +} +.card-img, +.card-img-top { + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.card-img, +.card-img-bottom { + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.card-group > .card { + margin-bottom: 0.75rem; +} +@media (min-width: 576px) { + .card-group { + display: flex; + flex-flow: row wrap; + } + .card-group > .card { + flex: 1 0 0%; + margin-bottom: 0; + } + .card-group > .card + .card { + margin-left: 0; + border-left: 0; + } + .card-group > .card:not(:last-child) { + border-top-right-radius: 0; + border-bottom-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-header, + .card-group > .card:not(:last-child) .card-img-top { + border-top-right-radius: 0; + } + .card-group > .card:not(:last-child) .card-footer, + .card-group > .card:not(:last-child) .card-img-bottom { + border-bottom-right-radius: 0; + } + .card-group > .card:not(:first-child) { + border-top-left-radius: 0; + border-bottom-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-header, + .card-group > .card:not(:first-child) .card-img-top { + border-top-left-radius: 0; + } + .card-group > .card:not(:first-child) .card-footer, + .card-group > .card:not(:first-child) .card-img-bottom { + border-bottom-left-radius: 0; + } +} +.accordion-button { + position: relative; + display: flex; + align-items: center; + width: 100%; + padding: 1rem 1.25rem; + font-size: 1rem; + color: #212529; + text-align: left; + background-color: #fff; + border: 0; + border-radius: 0; + overflow-anchor: none; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, + border-radius 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .accordion-button { + transition: none; + } +} +.accordion-button:not(.collapsed) { + color: #0c63e4; + background-color: #e7f1ff; + box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); +} +.accordion-button:not(.collapsed)::after { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + transform: rotate(-180deg); +} +.accordion-button::after { + flex-shrink: 0; + width: 1.25rem; + height: 1.25rem; + margin-left: auto; + content: ""; + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); + background-repeat: no-repeat; + background-size: 1.25rem; + transition: transform 0.2s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .accordion-button::after { + transition: none; + } +} +.accordion-button:hover { + z-index: 2; +} +.accordion-button:focus { + z-index: 3; + border-color: #86b7fe; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.accordion-header { + margin-bottom: 0; +} +.accordion-item { + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} +.accordion-item:first-of-type { + border-top-left-radius: 0.25rem; + border-top-right-radius: 0.25rem; +} +.accordion-item:first-of-type .accordion-button { + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.accordion-item:not(:first-of-type) { + border-top: 0; +} +.accordion-item:last-of-type { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.accordion-item:last-of-type .accordion-button.collapsed { + border-bottom-right-radius: calc(0.25rem - 1px); + border-bottom-left-radius: calc(0.25rem - 1px); +} +.accordion-item:last-of-type .accordion-collapse { + border-bottom-right-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.accordion-body { + padding: 1rem 1.25rem; +} +.accordion-flush .accordion-collapse { + border-width: 0; +} +.accordion-flush .accordion-item { + border-right: 0; + border-left: 0; + border-radius: 0; +} +.accordion-flush .accordion-item:first-child { + border-top: 0; +} +.accordion-flush .accordion-item:last-child { + border-bottom: 0; +} +.accordion-flush .accordion-item .accordion-button { + border-radius: 0; +} +.breadcrumb { + display: flex; + flex-wrap: wrap; + padding: 0 0; + margin-bottom: 1rem; + list-style: none; +} +.breadcrumb-item + .breadcrumb-item { + padding-left: 0.5rem; +} +.breadcrumb-item + .breadcrumb-item::before { + float: left; + padding-right: 0.5rem; + color: #6c757d; + content: var(--bs-breadcrumb-divider, "/"); +} +.breadcrumb-item.active { + color: #6c757d; +} +.pagination { + display: flex; + padding-left: 0; + list-style: none; +} +.page-link { + position: relative; + display: block; + color: #0d6efd; + text-decoration: none; + background-color: #fff; + border: 1px solid #dee2e6; + transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, + border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .page-link { + transition: none; + } +} +.page-link:hover { + z-index: 2; + color: #0a58ca; + background-color: #e9ecef; + border-color: #dee2e6; +} +.page-link:focus { + z-index: 3; + color: #0a58ca; + background-color: #e9ecef; + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); +} +.page-item:not(:first-child) .page-link { + margin-left: -1px; +} +.page-item.active .page-link { + z-index: 3; + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.page-item.disabled .page-link { + color: #6c757d; + pointer-events: none; + background-color: #fff; + border-color: #dee2e6; +} +.page-link { + padding: 0.375rem 0.75rem; +} +.page-item:first-child .page-link { + border-top-left-radius: 0.25rem; + border-bottom-left-radius: 0.25rem; +} +.page-item:last-child .page-link { + border-top-right-radius: 0.25rem; + border-bottom-right-radius: 0.25rem; +} +.pagination-lg .page-link { + padding: 0.75rem 1.5rem; + font-size: 1.25rem; +} +.pagination-lg .page-item:first-child .page-link { + border-top-left-radius: 0.3rem; + border-bottom-left-radius: 0.3rem; +} +.pagination-lg .page-item:last-child .page-link { + border-top-right-radius: 0.3rem; + border-bottom-right-radius: 0.3rem; +} +.pagination-sm .page-link { + padding: 0.25rem 0.5rem; + font-size: 0.875rem; +} +.pagination-sm .page-item:first-child .page-link { + border-top-left-radius: 0.2rem; + border-bottom-left-radius: 0.2rem; +} +.pagination-sm .page-item:last-child .page-link { + border-top-right-radius: 0.2rem; + border-bottom-right-radius: 0.2rem; +} +.badge { + display: inline-block; + padding: 0.35em 0.65em; + font-size: 0.75em; + font-weight: 700; + line-height: 1; + color: #fff; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + border-radius: 0.25rem; +} +.badge:empty { + display: none; +} +.btn .badge { + position: relative; + top: -1px; +} +.alert { + position: relative; + padding: 1rem 1rem; + margin-bottom: 1rem; + border: 1px solid transparent; + border-radius: 0.25rem; +} +.alert-heading { + color: inherit; +} +.alert-link { + font-weight: 700; +} +.alert-dismissible { + padding-right: 3rem; +} +.alert-dismissible .btn-close { + position: absolute; + top: 0; + right: 0; + z-index: 2; + padding: 1.25rem 1rem; +} +.alert-primary { + color: #084298; + background-color: #cfe2ff; + border-color: #b6d4fe; +} +.alert-primary .alert-link { + color: #06357a; +} +.alert-secondary { + color: #41464b; + background-color: #e2e3e5; + border-color: #d3d6d8; +} +.alert-secondary .alert-link { + color: #34383c; +} +.alert-success { + color: #0f5132; + background-color: #d1e7dd; + border-color: #badbcc; +} +.alert-success .alert-link { + color: #0c4128; +} +.alert-info { + color: #055160; + background-color: #cff4fc; + border-color: #b6effb; +} +.alert-info .alert-link { + color: #04414d; +} +.alert-warning { + color: #664d03; + background-color: #fff3cd; + border-color: #ffecb5; +} +.alert-warning .alert-link { + color: #523e02; +} +.alert-danger { + color: #842029; + background-color: #f8d7da; + border-color: #f5c2c7; +} +.alert-danger .alert-link { + color: #6a1a21; +} +.alert-light { + color: #636464; + background-color: #fefefe; + border-color: #fdfdfe; +} +.alert-light .alert-link { + color: #4f5050; +} +.alert-dark { + color: #141619; + background-color: #d3d3d4; + border-color: #bcbebf; +} +.alert-dark .alert-link { + color: #101214; +} +@-webkit-keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; + } +} +@keyframes progress-bar-stripes { + 0% { + background-position-x: 1rem; + } +} +.progress { + display: flex; + height: 1rem; + overflow: hidden; + font-size: 0.75rem; + background-color: #e9ecef; + border-radius: 0.25rem; +} +.progress-bar { + display: flex; + flex-direction: column; + justify-content: center; + overflow: hidden; + color: #fff; + text-align: center; + white-space: nowrap; + background-color: #0d6efd; + transition: width 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar { + transition: none; + } +} +.progress-bar-striped { + background-image: linear-gradient( + 45deg, + rgba(255, 255, 255, 0.15) 25%, + transparent 25%, + transparent 50%, + rgba(255, 255, 255, 0.15) 50%, + rgba(255, 255, 255, 0.15) 75%, + transparent 75%, + transparent + ); + background-size: 1rem 1rem; +} +.progress-bar-animated { + -webkit-animation: 1s linear infinite progress-bar-stripes; + animation: 1s linear infinite progress-bar-stripes; +} +@media (prefers-reduced-motion: reduce) { + .progress-bar-animated { + -webkit-animation: none; + animation: none; + } +} +.list-group { + display: flex; + flex-direction: column; + padding-left: 0; + margin-bottom: 0; + border-radius: 0.25rem; +} +.list-group-numbered { + list-style-type: none; + counter-reset: section; +} +.list-group-numbered > li::before { + content: counters(section, ".") ". "; + counter-increment: section; +} +.list-group-item-action { + width: 100%; + color: #495057; + text-align: inherit; +} +.list-group-item-action:focus, +.list-group-item-action:hover { + z-index: 1; + color: #495057; + text-decoration: none; + background-color: #f8f9fa; +} +.list-group-item-action:active { + color: #212529; + background-color: #e9ecef; +} +.list-group-item { + position: relative; + display: block; + padding: 0.5rem 1rem; + color: #212529; + text-decoration: none; + background-color: #fff; + border: 1px solid rgba(0, 0, 0, 0.125); +} +.list-group-item:first-child { + border-top-left-radius: inherit; + border-top-right-radius: inherit; +} +.list-group-item:last-child { + border-bottom-right-radius: inherit; + border-bottom-left-radius: inherit; +} +.list-group-item.disabled, +.list-group-item:disabled { + color: #6c757d; + pointer-events: none; + background-color: #fff; +} +.list-group-item.active { + z-index: 2; + color: #fff; + background-color: #0d6efd; + border-color: #0d6efd; +} +.list-group-item + .list-group-item { + border-top-width: 0; +} +.list-group-item + .list-group-item.active { + margin-top: -1px; + border-top-width: 1px; +} +.list-group-horizontal { + flex-direction: row; +} +.list-group-horizontal > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; +} +.list-group-horizontal > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; +} +.list-group-horizontal > .list-group-item.active { + margin-top: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; +} +.list-group-horizontal > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; +} +@media (min-width: 576px) { + .list-group-horizontal-sm { + flex-direction: row; + } + .list-group-horizontal-sm > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-sm > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-sm > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-sm > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 768px) { + .list-group-horizontal-md { + flex-direction: row; + } + .list-group-horizontal-md > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-md > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-md > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-md > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 992px) { + .list-group-horizontal-lg { + flex-direction: row; + } + .list-group-horizontal-lg > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-lg > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-lg > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-lg > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 1200px) { + .list-group-horizontal-xl { + flex-direction: row; + } + .list-group-horizontal-xl > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xl > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-xl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-xl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +@media (min-width: 1400px) { + .list-group-horizontal-xxl { + flex-direction: row; + } + .list-group-horizontal-xxl > .list-group-item:first-child { + border-bottom-left-radius: 0.25rem; + border-top-right-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item:last-child { + border-top-right-radius: 0.25rem; + border-bottom-left-radius: 0; + } + .list-group-horizontal-xxl > .list-group-item.active { + margin-top: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item { + border-top-width: 1px; + border-left-width: 0; + } + .list-group-horizontal-xxl > .list-group-item + .list-group-item.active { + margin-left: -1px; + border-left-width: 1px; + } +} +.list-group-flush { + border-radius: 0; +} +.list-group-flush > .list-group-item { + border-width: 0 0 1px; +} +.list-group-flush > .list-group-item:last-child { + border-bottom-width: 0; +} +.list-group-item-primary { + color: #084298; + background-color: #cfe2ff; +} +.list-group-item-primary.list-group-item-action:focus, +.list-group-item-primary.list-group-item-action:hover { + color: #084298; + background-color: #bacbe6; +} +.list-group-item-primary.list-group-item-action.active { + color: #fff; + background-color: #084298; + border-color: #084298; +} +.list-group-item-secondary { + color: #41464b; + background-color: #e2e3e5; +} +.list-group-item-secondary.list-group-item-action:focus, +.list-group-item-secondary.list-group-item-action:hover { + color: #41464b; + background-color: #cbccce; +} +.list-group-item-secondary.list-group-item-action.active { + color: #fff; + background-color: #41464b; + border-color: #41464b; +} +.list-group-item-success { + color: #0f5132; + background-color: #d1e7dd; +} +.list-group-item-success.list-group-item-action:focus, +.list-group-item-success.list-group-item-action:hover { + color: #0f5132; + background-color: #bcd0c7; +} +.list-group-item-success.list-group-item-action.active { + color: #fff; + background-color: #0f5132; + border-color: #0f5132; +} +.list-group-item-info { + color: #055160; + background-color: #cff4fc; +} +.list-group-item-info.list-group-item-action:focus, +.list-group-item-info.list-group-item-action:hover { + color: #055160; + background-color: #badce3; +} +.list-group-item-info.list-group-item-action.active { + color: #fff; + background-color: #055160; + border-color: #055160; +} +.list-group-item-warning { + color: #664d03; + background-color: #fff3cd; +} +.list-group-item-warning.list-group-item-action:focus, +.list-group-item-warning.list-group-item-action:hover { + color: #664d03; + background-color: #e6dbb9; +} +.list-group-item-warning.list-group-item-action.active { + color: #fff; + background-color: #664d03; + border-color: #664d03; +} +.list-group-item-danger { + color: #842029; + background-color: #f8d7da; +} +.list-group-item-danger.list-group-item-action:focus, +.list-group-item-danger.list-group-item-action:hover { + color: #842029; + background-color: #dfc2c4; +} +.list-group-item-danger.list-group-item-action.active { + color: #fff; + background-color: #842029; + border-color: #842029; +} +.list-group-item-light { + color: #636464; + background-color: #fefefe; +} +.list-group-item-light.list-group-item-action:focus, +.list-group-item-light.list-group-item-action:hover { + color: #636464; + background-color: #e5e5e5; +} +.list-group-item-light.list-group-item-action.active { + color: #fff; + background-color: #636464; + border-color: #636464; +} +.list-group-item-dark { + color: #141619; + background-color: #d3d3d4; +} +.list-group-item-dark.list-group-item-action:focus, +.list-group-item-dark.list-group-item-action:hover { + color: #141619; + background-color: #bebebf; +} +.list-group-item-dark.list-group-item-action.active { + color: #fff; + background-color: #141619; + border-color: #141619; +} +.btn-close { + box-sizing: content-box; + width: 1em; + height: 1em; + padding: 0.25em 0.25em; + color: #000; + background: transparent + url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") + center/1em auto no-repeat; + border: 0; + border-radius: 0.25rem; + opacity: 0.5; +} +.btn-close:hover { + color: #000; + text-decoration: none; + opacity: 0.75; +} +.btn-close:focus { + outline: 0; + box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25); + opacity: 1; +} +.btn-close.disabled, +.btn-close:disabled { + pointer-events: none; + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + opacity: 0.25; +} +.btn-close-white { + filter: invert(1) grayscale(100%) brightness(200%); +} +.toast { + width: 350px; + max-width: 100%; + font-size: 0.875rem; + pointer-events: auto; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.1); + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); + border-radius: 0.25rem; +} +.toast.showing { + opacity: 0; +} +.toast:not(.show) { + display: none; +} +.toast-container { + width: -webkit-max-content; + width: -moz-max-content; + width: max-content; + max-width: 100%; + pointer-events: none; +} +.toast-container > :not(:last-child) { + margin-bottom: 0.75rem; +} +.toast-header { + display: flex; + align-items: center; + padding: 0.5rem 0.75rem; + color: #6c757d; + background-color: rgba(255, 255, 255, 0.85); + background-clip: padding-box; + border-bottom: 1px solid rgba(0, 0, 0, 0.05); + border-top-left-radius: calc(0.25rem - 1px); + border-top-right-radius: calc(0.25rem - 1px); +} +.toast-header .btn-close { + margin-right: -0.375rem; + margin-left: 0.75rem; +} +.toast-body { + padding: 0.75rem; + word-wrap: break-word; +} +.modal { + position: fixed; + top: 0; + left: 0; + z-index: 1055; + display: none; + width: 100%; + height: 100%; + overflow-x: hidden; + overflow-y: auto; + outline: 0; +} +.modal-dialog { + position: relative; + width: auto; + margin: 0.5rem; + pointer-events: none; +} +.modal.fade .modal-dialog { + transition: transform 0.3s ease-out; + transform: translate(0, -50px); +} +@media (prefers-reduced-motion: reduce) { + .modal.fade .modal-dialog { + transition: none; + } +} +.modal.show .modal-dialog { + transform: none; +} +.modal.modal-static .modal-dialog { + transform: scale(1.02); +} +.modal-dialog-scrollable { + height: calc(100% - 1rem); +} +.modal-dialog-scrollable .modal-content { + max-height: 100%; + overflow: hidden; +} +.modal-dialog-scrollable .modal-body { + overflow-y: auto; +} +.modal-dialog-centered { + display: flex; + align-items: center; + min-height: calc(100% - 1rem); +} +.modal-content { + position: relative; + display: flex; + flex-direction: column; + width: 100%; + pointer-events: auto; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; + outline: 0; +} +.modal-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1050; + width: 100vw; + height: 100vh; + background-color: #000; +} +.modal-backdrop.fade { + opacity: 0; +} +.modal-backdrop.show { + opacity: 0.5; +} +.modal-header { + display: flex; + flex-shrink: 0; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; + border-bottom: 1px solid #dee2e6; + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} +.modal-header .btn-close { + padding: 0.5rem 0.5rem; + margin: -0.5rem -0.5rem -0.5rem auto; +} +.modal-title { + margin-bottom: 0; + line-height: 1.5; +} +.modal-body { + position: relative; + flex: 1 1 auto; + padding: 1rem; +} +.modal-footer { + display: flex; + flex-wrap: wrap; + flex-shrink: 0; + align-items: center; + justify-content: flex-end; + padding: 0.75rem; + border-top: 1px solid #dee2e6; + border-bottom-right-radius: calc(0.3rem - 1px); + border-bottom-left-radius: calc(0.3rem - 1px); +} +.modal-footer > * { + margin: 0.25rem; +} +@media (min-width: 576px) { + .modal-dialog { + max-width: 1000px; + margin: 1.75rem auto; + } + .modal-dialog-scrollable { + height: calc(100% - 3.5rem); + } + .modal-dialog-centered { + min-height: calc(100% - 3.5rem); + } + .modal-sm { + max-width: 300px; + } +} +@media (min-width: 992px) { + .modal-lg, + .modal-xl { + max-width: 800px; + } +} +@media (min-width: 1200px) { + .modal-xl { + max-width: 1140px; + } +} +.modal-fullscreen { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; +} +.modal-fullscreen .modal-content { + height: 100%; + border: 0; + border-radius: 0; +} +.modal-fullscreen .modal-header { + border-radius: 0; +} +.modal-fullscreen .modal-body { + overflow-y: auto; +} +.modal-fullscreen .modal-footer { + border-radius: 0; +} +@media (max-width: 575.98px) { + .modal-fullscreen-sm-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-sm-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-sm-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-sm-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 767.98px) { + .modal-fullscreen-md-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-md-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-md-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-md-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-md-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 991.98px) { + .modal-fullscreen-lg-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-lg-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-lg-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-lg-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 1199.98px) { + .modal-fullscreen-xl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-xl-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-xl-down .modal-footer { + border-radius: 0; + } +} +@media (max-width: 1399.98px) { + .modal-fullscreen-xxl-down { + width: 100vw; + max-width: none; + height: 100%; + margin: 0; + } + .modal-fullscreen-xxl-down .modal-content { + height: 100%; + border: 0; + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-header { + border-radius: 0; + } + .modal-fullscreen-xxl-down .modal-body { + overflow-y: auto; + } + .modal-fullscreen-xxl-down .modal-footer { + border-radius: 0; + } +} +.tooltip { + position: absolute; + z-index: 1080; + display: block; + margin: 0; + font-family: var(--bs-font-sans-serif); + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + opacity: 0; +} +.tooltip.show { + opacity: 0.9; +} +.tooltip .tooltip-arrow { + position: absolute; + display: block; + width: 0.8rem; + height: 0.4rem; +} +.tooltip .tooltip-arrow::before { + position: absolute; + content: ""; + border-color: transparent; + border-style: solid; +} +.bs-tooltip-auto[data-popper-placement^="top"], +.bs-tooltip-top { + padding: 0.4rem 0; +} +.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow, +.bs-tooltip-top .tooltip-arrow { + bottom: 0; +} +.bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before, +.bs-tooltip-top .tooltip-arrow::before { + top: -1px; + border-width: 0.4rem 0.4rem 0; + border-top-color: #000; +} +.bs-tooltip-auto[data-popper-placement^="right"], +.bs-tooltip-end { + padding: 0 0.4rem; +} +.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow, +.bs-tooltip-end .tooltip-arrow { + left: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before, +.bs-tooltip-end .tooltip-arrow::before { + right: -1px; + border-width: 0.4rem 0.4rem 0.4rem 0; + border-right-color: #000; +} +.bs-tooltip-auto[data-popper-placement^="bottom"], +.bs-tooltip-bottom { + padding: 0.4rem 0; +} +.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow, +.bs-tooltip-bottom .tooltip-arrow { + top: 0; +} +.bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before, +.bs-tooltip-bottom .tooltip-arrow::before { + bottom: -1px; + border-width: 0 0.4rem 0.4rem; + border-bottom-color: #000; +} +.bs-tooltip-auto[data-popper-placement^="left"], +.bs-tooltip-start { + padding: 0 0.4rem; +} +.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow, +.bs-tooltip-start .tooltip-arrow { + right: 0; + width: 0.4rem; + height: 0.8rem; +} +.bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before, +.bs-tooltip-start .tooltip-arrow::before { + left: -1px; + border-width: 0.4rem 0 0.4rem 0.4rem; + border-left-color: #000; +} +.tooltip-inner { + max-width: 200px; + padding: 0.25rem 0.5rem; + color: #fff; + text-align: center; + background-color: #000; + border-radius: 0.25rem; +} +.popover { + position: absolute; + top: 0; + left: 0; + z-index: 1070; + display: block; + max-width: 276px; + font-family: var(--bs-font-sans-serif); + font-style: normal; + font-weight: 400; + line-height: 1.5; + text-align: left; + text-align: start; + text-decoration: none; + text-shadow: none; + text-transform: none; + letter-spacing: normal; + word-break: normal; + word-spacing: normal; + white-space: normal; + line-break: auto; + font-size: 0.875rem; + word-wrap: break-word; + background-color: #fff; + background-clip: padding-box; + border: 1px solid rgba(0, 0, 0, 0.2); + border-radius: 0.3rem; +} +.popover .popover-arrow { + position: absolute; + display: block; + width: 1rem; + height: 0.5rem; +} +.popover .popover-arrow::after, +.popover .popover-arrow::before { + position: absolute; + display: block; + content: ""; + border-color: transparent; + border-style: solid; +} +.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow, +.bs-popover-top > .popover-arrow { + bottom: calc(-0.5rem - 1px); +} +.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before, +.bs-popover-top > .popover-arrow::before { + bottom: 0; + border-width: 0.5rem 0.5rem 0; + border-top-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after, +.bs-popover-top > .popover-arrow::after { + bottom: 1px; + border-width: 0.5rem 0.5rem 0; + border-top-color: #fff; +} +.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow, +.bs-popover-end > .popover-arrow { + left: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} +.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before, +.bs-popover-end > .popover-arrow::before { + left: 0; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after, +.bs-popover-end > .popover-arrow::after { + left: 1px; + border-width: 0.5rem 0.5rem 0.5rem 0; + border-right-color: #fff; +} +.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow, +.bs-popover-bottom > .popover-arrow { + top: calc(-0.5rem - 1px); +} +.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before, +.bs-popover-bottom > .popover-arrow::before { + top: 0; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after, +.bs-popover-bottom > .popover-arrow::after { + top: 1px; + border-width: 0 0.5rem 0.5rem 0.5rem; + border-bottom-color: #fff; +} +.bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before, +.bs-popover-bottom .popover-header::before { + position: absolute; + top: 0; + left: 50%; + display: block; + width: 1rem; + margin-left: -0.5rem; + content: ""; + border-bottom: 1px solid #f0f0f0; +} +.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow, +.bs-popover-start > .popover-arrow { + right: calc(-0.5rem - 1px); + width: 0.5rem; + height: 1rem; +} +.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before, +.bs-popover-start > .popover-arrow::before { + right: 0; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: rgba(0, 0, 0, 0.25); +} +.bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after, +.bs-popover-start > .popover-arrow::after { + right: 1px; + border-width: 0.5rem 0 0.5rem 0.5rem; + border-left-color: #fff; +} +.popover-header { + padding: 0.5rem 1rem; + margin-bottom: 0; + font-size: 1rem; + background-color: #f0f0f0; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + border-top-left-radius: calc(0.3rem - 1px); + border-top-right-radius: calc(0.3rem - 1px); +} +.popover-header:empty { + display: none; +} +.popover-body { + padding: 1rem 1rem; + color: #212529; +} +.carousel { + position: relative; +} +.carousel.pointer-event { + touch-action: pan-y; +} +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; +} +.carousel-inner::after { + display: block; + clear: both; + content: ""; +} +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + transition: transform 0.6s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .carousel-item { + transition: none; + } +} +.carousel-item-next, +.carousel-item-prev, +.carousel-item.active { + display: block; +} +.active.carousel-item-end, +.carousel-item-next:not(.carousel-item-start) { + transform: translateX(100%); +} +.active.carousel-item-start, +.carousel-item-prev:not(.carousel-item-end) { + transform: translateX(-100%); +} +.carousel-fade .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; +} +.carousel-fade .carousel-item-next.carousel-item-start, +.carousel-fade .carousel-item-prev.carousel-item-end, +.carousel-fade .carousel-item.active { + z-index: 1; + opacity: 1; +} +.carousel-fade .active.carousel-item-end, +.carousel-fade .active.carousel-item-start { + z-index: 0; + opacity: 0; + transition: opacity 0s 0.6s; +} +@media (prefers-reduced-motion: reduce) { + .carousel-fade .active.carousel-item-end, + .carousel-fade .active.carousel-item-start { + transition: none; + } +} +.carousel-control-next, +.carousel-control-prev { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: 15%; + padding: 0; + color: #fff; + text-align: center; + background: 0 0; + border: 0; + opacity: 0.5; + transition: opacity 0.15s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-control-next, + .carousel-control-prev { + transition: none; + } +} +.carousel-control-next:focus, +.carousel-control-next:hover, +.carousel-control-prev:focus, +.carousel-control-prev:hover { + color: #fff; + text-decoration: none; + outline: 0; + opacity: 0.9; +} +.carousel-control-prev { + left: 0; +} +.carousel-control-next { + right: 0; +} +.carousel-control-next-icon, +.carousel-control-prev-icon { + display: inline-block; + width: 2rem; + height: 2rem; + background-repeat: no-repeat; + background-position: 50%; + background-size: 100% 100%; +} +.carousel-control-prev-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); +} +.carousel-control-next-icon { + background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); +} +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 2; + display: flex; + justify-content: center; + padding: 0; + margin-right: 15%; + margin-bottom: 1rem; + margin-left: 15%; + list-style: none; +} +.carousel-indicators [data-bs-target] { + box-sizing: content-box; + flex: 0 1 auto; + width: 30px; + height: 3px; + padding: 0; + margin-right: 3px; + margin-left: 3px; + text-indent: -999px; + cursor: pointer; + background-color: #fff; + background-clip: padding-box; + border: 0; + border-top: 10px solid transparent; + border-bottom: 10px solid transparent; + opacity: 0.5; + transition: opacity 0.6s ease; +} +@media (prefers-reduced-motion: reduce) { + .carousel-indicators [data-bs-target] { + transition: none; + } +} +.carousel-indicators .active { + opacity: 1; +} +.carousel-caption { + position: absolute; + right: 15%; + bottom: 1.25rem; + left: 15%; + padding-top: 1.25rem; + padding-bottom: 1.25rem; + color: #fff; + text-align: center; +} +.carousel-dark .carousel-control-next-icon, +.carousel-dark .carousel-control-prev-icon { + filter: invert(1) grayscale(100); +} +.carousel-dark .carousel-indicators [data-bs-target] { + background-color: #000; +} +.carousel-dark .carousel-caption { + color: #000; +} +@-webkit-keyframes spinner-border { + to { + transform: rotate(360deg); + } +} +@keyframes spinner-border { + to { + transform: rotate(360deg); + } +} +.spinner-border { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: -0.125em; + border: 0.25em solid currentColor; + border-right-color: transparent; + border-radius: 50%; + -webkit-animation: 0.75s linear infinite spinner-border; + animation: 0.75s linear infinite spinner-border; +} +.spinner-border-sm { + width: 1rem; + height: 1rem; + border-width: 0.2em; +} +@-webkit-keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} +@keyframes spinner-grow { + 0% { + transform: scale(0); + } + 50% { + opacity: 1; + transform: none; + } +} +.spinner-grow { + display: inline-block; + width: 2rem; + height: 2rem; + vertical-align: -0.125em; + background-color: currentColor; + border-radius: 50%; + opacity: 0; + -webkit-animation: 0.75s linear infinite spinner-grow; + animation: 0.75s linear infinite spinner-grow; +} +.spinner-grow-sm { + width: 1rem; + height: 1rem; +} +@media (prefers-reduced-motion: reduce) { + .spinner-border, + .spinner-grow { + -webkit-animation-duration: 1.5s; + animation-duration: 1.5s; + } +} +.offcanvas { + position: fixed; + bottom: 0; + z-index: 1045; + display: flex; + flex-direction: column; + max-width: 100%; + visibility: hidden; + background-color: #fff; + background-clip: padding-box; + outline: 0; + transition: transform 0.3s ease-in-out; +} +@media (prefers-reduced-motion: reduce) { + .offcanvas { + transition: none; + } +} +.offcanvas-backdrop { + position: fixed; + top: 0; + left: 0; + z-index: 1040; + width: 100vw; + height: 100vh; + background-color: #000; +} +.offcanvas-backdrop.fade { + opacity: 0; +} +.offcanvas-backdrop.show { + opacity: 0.5; +} +.offcanvas-header { + display: flex; + align-items: center; + justify-content: space-between; + padding: 1rem 1rem; +} +.offcanvas-header .btn-close { + padding: 0.5rem 0.5rem; + margin-top: -0.5rem; + margin-right: -0.5rem; + margin-bottom: -0.5rem; +} +.offcanvas-title { + margin-bottom: 0; + line-height: 1.5; +} +.offcanvas-body { + flex-grow: 1; + padding: 1rem 1rem; + overflow-y: auto; +} +.offcanvas-start { + top: 0; + left: 0; + width: 400px; + border-right: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(-100%); +} +.offcanvas-end { + top: 0; + right: 0; + width: 400px; + border-left: 1px solid rgba(0, 0, 0, 0.2); + transform: translateX(100%); +} +.offcanvas-top { + top: 0; + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-bottom: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(-100%); +} +.offcanvas-bottom { + right: 0; + left: 0; + height: 30vh; + max-height: 100%; + border-top: 1px solid rgba(0, 0, 0, 0.2); + transform: translateY(100%); +} +.offcanvas.show { + transform: none; +} +.placeholder { + display: inline-block; + min-height: 1em; + vertical-align: middle; + cursor: wait; + background-color: currentColor; + opacity: 0.5; +} +.placeholder.btn::before { + display: inline-block; + content: ""; +} +.placeholder-xs { + min-height: 0.6em; +} +.placeholder-sm { + min-height: 0.8em; +} +.placeholder-lg { + min-height: 1.2em; +} +.placeholder-glow .placeholder { + -webkit-animation: placeholder-glow 2s ease-in-out infinite; + animation: placeholder-glow 2s ease-in-out infinite; +} +@-webkit-keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +@keyframes placeholder-glow { + 50% { + opacity: 0.2; + } +} +.placeholder-wave { + -webkit-mask-image: linear-gradient( + 130deg, + #000 55%, + rgba(0, 0, 0, 0.8) 75%, + #000 95% + ); + mask-image: linear-gradient( + 130deg, + #000 55%, + rgba(0, 0, 0, 0.8) 75%, + #000 95% + ); + -webkit-mask-size: 200% 100%; + mask-size: 200% 100%; + -webkit-animation: placeholder-wave 2s linear infinite; + animation: placeholder-wave 2s linear infinite; +} +@-webkit-keyframes placeholder-wave { + 100% { + -webkit-mask-position: -200% 0%; + mask-position: -200% 0%; + } +} +@keyframes placeholder-wave { + 100% { + -webkit-mask-position: -200% 0%; + mask-position: -200% 0%; + } +} +.clearfix::after { + display: block; + clear: both; + content: ""; +} +.link-primary { + color: #0d6efd; +} +.link-primary:focus, +.link-primary:hover { + color: #0a58ca; +} +.link-secondary { + color: #6c757d; +} +.link-secondary:focus, +.link-secondary:hover { + color: #565e64; +} +.link-success { + color: #198754; +} +.link-success:focus, +.link-success:hover { + color: #146c43; +} +.link-info { + color: #0dcaf0; +} +.link-info:focus, +.link-info:hover { + color: #3dd5f3; +} +.link-warning { + color: #ffc107; +} +.link-warning:focus, +.link-warning:hover { + color: #ffcd39; +} +.link-danger { + color: #dc3545; +} +.link-danger:focus, +.link-danger:hover { + color: #b02a37; +} +.link-light { + color: #f8f9fa; +} +.link-light:focus, +.link-light:hover { + color: #f9fafb; +} +.link-dark { + color: #212529; +} +.link-dark:focus, +.link-dark:hover { + color: #1a1e21; +} +.ratio { + position: relative; + width: 100%; +} +.ratio::before { + display: block; + padding-top: var(--bs-aspect-ratio); + content: ""; +} +.ratio > * { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; +} +.ratio-1x1 { + --bs-aspect-ratio: 100%; +} +.ratio-4x3 { + --bs-aspect-ratio: calc(3 / 4 * 100%); +} +.ratio-16x9 { + --bs-aspect-ratio: calc(9 / 16 * 100%); +} +.ratio-21x9 { + --bs-aspect-ratio: calc(9 / 21 * 100%); +} +.fixed-top { + position: fixed; + top: 0; + right: 0; + left: 0; + z-index: 1030; +} +.fixed-bottom { + position: fixed; + right: 0; + bottom: 0; + left: 0; + z-index: 1030; +} +.sticky-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; +} +@media (min-width: 576px) { + .sticky-sm-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 768px) { + .sticky-md-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 992px) { + .sticky-lg-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 1200px) { + .sticky-xl-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} +@media (min-width: 1400px) { + .sticky-xxl-top { + position: -webkit-sticky; + position: sticky; + top: 0; + z-index: 1020; + } +} +.hstack { + display: flex; + flex-direction: row; + align-items: center; + align-self: stretch; +} +.vstack { + display: flex; + flex: 1 1 auto; + flex-direction: column; + align-self: stretch; +} +.visually-hidden, +.visually-hidden-focusable:not(:focus):not(:focus-within) { + position: absolute !important; + width: 1px !important; + height: 1px !important; + padding: 0 !important; + margin: -1px !important; + overflow: hidden !important; + clip: rect(0, 0, 0, 0) !important; + white-space: nowrap !important; + border: 0 !important; +} +.stretched-link::after { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + z-index: 1; + content: ""; +} +.text-truncate { + overflow: hidden; + text-overflow: ellipsis; + white-space: nowrap; +} +.vr { + display: inline-block; + align-self: stretch; + width: 1px; + min-height: 1em; + background-color: currentColor; + opacity: 0.25; +} +.align-baseline { + vertical-align: baseline !important; +} +.align-top { + vertical-align: top !important; +} +.align-middle { + vertical-align: middle !important; +} +.align-bottom { + vertical-align: bottom !important; +} +.align-text-bottom { + vertical-align: text-bottom !important; +} +.align-text-top { + vertical-align: text-top !important; +} +.float-start { + float: left !important; +} +.float-end { + float: right !important; +} +.float-none { + float: none !important; +} +.opacity-0 { + opacity: 0 !important; +} +.opacity-25 { + opacity: 0.25 !important; +} +.opacity-50 { + opacity: 0.5 !important; +} +.opacity-75 { + opacity: 0.75 !important; +} +.opacity-100 { + opacity: 1 !important; +} +.overflow-auto { + overflow: auto !important; +} +.overflow-hidden { + overflow: hidden !important; +} +.overflow-visible { + overflow: visible !important; +} +.overflow-scroll { + overflow: scroll !important; +} +.d-inline { + display: inline !important; +} +.d-inline-block { + display: inline-block !important; +} +.d-block { + display: block !important; +} +.d-grid { + display: grid !important; +} +.d-table { + display: table !important; +} +.d-table-row { + display: table-row !important; +} +.d-table-cell { + display: table-cell !important; +} +.d-flex { + display: flex !important; +} +.d-inline-flex { + display: inline-flex !important; +} +.d-none { + display: none !important; +} +.shadow { + box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; +} +.shadow-sm { + box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; +} +.shadow-lg { + box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; +} +.shadow-none { + box-shadow: none !important; +} +.position-static { + position: static !important; +} +.position-relative { + position: relative !important; +} +.position-absolute { + position: absolute !important; +} +.position-fixed { + position: fixed !important; +} +.position-sticky { + position: -webkit-sticky !important; + position: sticky !important; +} +.top-0 { + top: 0 !important; +} +.top-50 { + top: 50% !important; +} +.top-100 { + top: 100% !important; +} +.bottom-0 { + bottom: 0 !important; +} +.bottom-50 { + bottom: 50% !important; +} +.bottom-100 { + bottom: 100% !important; +} +.start-0 { + left: 0 !important; +} +.start-50 { + left: 50% !important; +} +.start-100 { + left: 100% !important; +} +.end-0 { + right: 0 !important; +} +.end-50 { + right: 50% !important; +} +.end-100 { + right: 100% !important; +} +.translate-middle { + transform: translate(-50%, -50%) !important; +} +.translate-middle-x { + transform: translateX(-50%) !important; +} +.translate-middle-y { + transform: translateY(-50%) !important; +} +.border { + border: 1px solid #dee2e6 !important; +} +.border-0 { + border: 0 !important; +} +.border-top { + border-top: 1px solid #dee2e6 !important; +} +.border-top-0 { + border-top: 0 !important; +} +.border-end { + border-right: 1px solid #dee2e6 !important; +} +.border-end-0 { + border-right: 0 !important; +} +.border-bottom { + border-bottom: 1px solid #dee2e6 !important; +} +.border-bottom-0 { + border-bottom: 0 !important; +} +.border-start { + border-left: 1px solid #dee2e6 !important; +} +.border-start-0 { + border-left: 0 !important; +} +.border-primary { + border-color: #0d6efd !important; +} +.border-secondary { + border-color: #6c757d !important; +} +.border-success { + border-color: #198754 !important; +} +.border-info { + border-color: #0dcaf0 !important; +} +.border-warning { + border-color: #ffc107 !important; +} +.border-danger { + border-color: #dc3545 !important; +} +.border-light { + border-color: #f8f9fa !important; +} +.border-dark { + border-color: #212529 !important; +} +.border-white { + border-color: #fff !important; +} +.border-1 { + border-width: 1px !important; +} +.border-2 { + border-width: 2px !important; +} +.border-3 { + border-width: 3px !important; +} +.border-4 { + border-width: 4px !important; +} +.border-5 { + border-width: 5px !important; +} +.w-25 { + width: 25% !important; +} +.w-50 { + width: 50% !important; +} +.w-75 { + width: 75% !important; +} +.w-100 { + width: 100% !important; +} +.w-auto { + width: auto !important; +} +.mw-100 { + max-width: 100% !important; +} +.vw-100 { + width: 100vw !important; +} +.min-vw-100 { + min-width: 100vw !important; +} +.h-25 { + height: 25% !important; +} +.h-50 { + height: 50% !important; +} +.h-75 { + height: 75% !important; +} +.h-100 { + height: 100% !important; +} +.h-auto { + height: auto !important; +} +.mh-100 { + max-height: 100% !important; +} +.vh-100 { + height: 100vh !important; +} +.min-vh-100 { + min-height: 100vh !important; +} +.flex-fill { + flex: 1 1 auto !important; +} +.flex-row { + flex-direction: row !important; +} +.flex-column { + flex-direction: column !important; +} +.flex-row-reverse { + flex-direction: row-reverse !important; +} +.flex-column-reverse { + flex-direction: column-reverse !important; +} +.flex-grow-0 { + flex-grow: 0 !important; +} +.flex-grow-1 { + flex-grow: 1 !important; +} +.flex-shrink-0 { + flex-shrink: 0 !important; +} +.flex-shrink-1 { + flex-shrink: 1 !important; +} +.flex-wrap { + flex-wrap: wrap !important; +} +.flex-nowrap { + flex-wrap: nowrap !important; +} +.flex-wrap-reverse { + flex-wrap: wrap-reverse !important; +} +.gap-0 { + gap: 0 !important; +} +.gap-1 { + gap: 0.25rem !important; +} +.gap-2 { + gap: 0.5rem !important; +} +.gap-3 { + gap: 1rem !important; +} +.gap-4 { + gap: 1.5rem !important; +} +.gap-5 { + gap: 3rem !important; +} +.justify-content-start { + justify-content: flex-start !important; +} +.justify-content-end { + justify-content: flex-end !important; +} +.justify-content-center { + justify-content: center !important; +} +.justify-content-between { + justify-content: space-between !important; +} +.justify-content-around { + justify-content: space-around !important; +} +.justify-content-evenly { + justify-content: space-evenly !important; +} +.align-items-start { + align-items: flex-start !important; +} +.align-items-end { + align-items: flex-end !important; +} +.align-items-center { + align-items: center !important; +} +.align-items-baseline { + align-items: baseline !important; +} +.align-items-stretch { + align-items: stretch !important; +} +.align-content-start { + align-content: flex-start !important; +} +.align-content-end { + align-content: flex-end !important; +} +.align-content-center { + align-content: center !important; +} +.align-content-between { + align-content: space-between !important; +} +.align-content-around { + align-content: space-around !important; +} +.align-content-stretch { + align-content: stretch !important; +} +.align-self-auto { + align-self: auto !important; +} +.align-self-start { + align-self: flex-start !important; +} +.align-self-end { + align-self: flex-end !important; +} +.align-self-center { + align-self: center !important; +} +.align-self-baseline { + align-self: baseline !important; +} +.align-self-stretch { + align-self: stretch !important; +} +.order-first { + order: -1 !important; +} +.order-0 { + order: 0 !important; +} +.order-1 { + order: 1 !important; +} +.order-2 { + order: 2 !important; +} +.order-3 { + order: 3 !important; +} +.order-4 { + order: 4 !important; +} +.order-5 { + order: 5 !important; +} +.order-last { + order: 6 !important; +} +.m-0 { + margin: 0 !important; +} +.m-1 { + margin: 0.25rem !important; +} +.m-2 { + margin: 0.5rem !important; +} +.m-3 { + margin: 1rem !important; +} +.m-4 { + margin: 1.5rem !important; +} +.m-5 { + margin: 3rem !important; +} +.m-auto { + margin: auto !important; +} +.mx-0 { + margin-right: 0 !important; + margin-left: 0 !important; +} +.mx-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; +} +.mx-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; +} +.mx-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; +} +.mx-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; +} +.mx-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; +} +.mx-auto { + margin-right: auto !important; + margin-left: auto !important; +} +.my-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; +} +.my-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; +} +.my-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; +} +.my-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; +} +.my-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; +} +.my-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; +} +.my-auto { + margin-top: auto !important; + margin-bottom: auto !important; +} +.mt-0 { + margin-top: 0 !important; +} +.mt-1 { + margin-top: 0.25rem !important; +} +.mt-2 { + margin-top: 0.5rem !important; +} +.mt-3 { + margin-top: 1rem !important; +} +.mt-4 { + margin-top: 1.5rem !important; +} +.mt-5 { + margin-top: 3rem !important; +} +.mt-auto { + margin-top: auto !important; +} +.me-0 { + margin-right: 0 !important; +} +.me-1 { + margin-right: 0.25rem !important; +} +.me-2 { + margin-right: 0.5rem !important; +} +.me-3 { + margin-right: 1rem !important; +} +.me-4 { + margin-right: 1.5rem !important; +} +.me-5 { + margin-right: 3rem !important; +} +.me-auto { + margin-right: auto !important; +} +.mb-0 { + margin-bottom: 0 !important; +} +.mb-1 { + margin-bottom: 0.25rem !important; +} +.mb-2 { + margin-bottom: 0.5rem !important; +} +.mb-3 { + margin-bottom: 1rem !important; +} +.mb-4 { + margin-bottom: 1.5rem !important; +} +.mb-5 { + margin-bottom: 3rem !important; +} +.mb-auto { + margin-bottom: auto !important; +} +.ms-0 { + margin-left: 0 !important; +} +.ms-1 { + margin-left: 0.25rem !important; +} +.ms-2 { + margin-left: 0.5rem !important; +} +.ms-3 { + margin-left: 1rem !important; +} +.ms-4 { + margin-left: 1.5rem !important; +} +.ms-5 { + margin-left: 3rem !important; +} +.ms-auto { + margin-left: auto !important; +} +.p-0 { + padding: 0 !important; +} +.p-1 { + padding: 0.25rem !important; +} +.p-2 { + padding: 0.5rem !important; +} +.p-3 { + padding: 1rem !important; +} +.p-4 { + padding: 1.5rem !important; +} +.p-5 { + padding: 3rem !important; +} +.px-0 { + padding-right: 0 !important; + padding-left: 0 !important; +} +.px-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; +} +.px-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; +} +.px-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; +} +.px-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; +} +.px-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; +} +.py-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} +.py-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; +} +.py-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; +} +.py-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; +} +.py-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; +} +.py-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; +} +.pt-0 { + padding-top: 0 !important; +} +.pt-1 { + padding-top: 0.25rem !important; +} +.pt-2 { + padding-top: 0.5rem !important; +} +.pt-3 { + padding-top: 1rem !important; +} +.pt-4 { + padding-top: 1.5rem !important; +} +.pt-5 { + padding-top: 3rem !important; +} +.pe-0 { + padding-right: 0 !important; +} +.pe-1 { + padding-right: 0.25rem !important; +} +.pe-2 { + padding-right: 0.5rem !important; +} +.pe-3 { + padding-right: 1rem !important; +} +.pe-4 { + padding-right: 1.5rem !important; +} +.pe-5 { + padding-right: 3rem !important; +} +.pb-0 { + padding-bottom: 0 !important; +} +.pb-1 { + padding-bottom: 0.25rem !important; +} +.pb-2 { + padding-bottom: 0.5rem !important; +} +.pb-3 { + padding-bottom: 1rem !important; +} +.pb-4 { + padding-bottom: 1.5rem !important; +} +.pb-5 { + padding-bottom: 3rem !important; +} +.ps-0 { + padding-left: 0 !important; +} +.ps-1 { + padding-left: 0.25rem !important; +} +.ps-2 { + padding-left: 0.5rem !important; +} +.ps-3 { + padding-left: 1rem !important; +} +.ps-4 { + padding-left: 1.5rem !important; +} +.ps-5 { + padding-left: 3rem !important; +} +.font-monospace { + font-family: var(--bs-font-monospace) !important; +} +.fs-1 { + font-size: calc(1.375rem + 1.5vw) !important; +} +.fs-2 { + font-size: calc(1.325rem + 0.9vw) !important; +} +.fs-3 { + font-size: calc(1.3rem + 0.6vw) !important; +} +.fs-4 { + font-size: calc(1.275rem + 0.3vw) !important; +} +.fs-5 { + font-size: 1.25rem !important; +} +.fs-6 { + font-size: 1rem !important; +} +.fst-italic { + font-style: italic !important; +} +.fst-normal { + font-style: normal !important; +} +.fw-light { + font-weight: 300 !important; +} +.fw-lighter { + font-weight: lighter !important; +} +.fw-normal { + font-weight: 400 !important; +} +.fw-bold { + font-weight: 700 !important; +} +.fw-bolder { + font-weight: bolder !important; +} +.lh-1 { + line-height: 1 !important; +} +.lh-sm { + line-height: 1.25 !important; +} +.lh-base { + line-height: 1.5 !important; +} +.lh-lg { + line-height: 2 !important; +} +.text-start { + text-align: left !important; +} +.text-end { + text-align: right !important; +} +.text-center { + text-align: center !important; +} +.text-decoration-none { + text-decoration: none !important; +} +.text-decoration-underline { + text-decoration: underline !important; +} +.text-decoration-line-through { + text-decoration: line-through !important; +} +.text-lowercase { + text-transform: lowercase !important; +} +.text-uppercase { + text-transform: uppercase !important; +} +.text-capitalize { + text-transform: capitalize !important; +} +.text-wrap { + white-space: normal !important; +} +.text-nowrap { + white-space: nowrap !important; +} +.text-break { + word-wrap: break-word !important; + word-break: break-word !important; +} +.text-primary { + --bs-text-opacity: 1; + color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; +} +.text-secondary { + --bs-text-opacity: 1; + color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; +} +.text-success { + --bs-text-opacity: 1; + color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; +} +.text-info { + --bs-text-opacity: 1; + color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; +} +.text-warning { + --bs-text-opacity: 1; + color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; +} +.text-danger { + --bs-text-opacity: 1; + color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; +} +.text-light { + --bs-text-opacity: 1; + color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; +} +.text-dark { + --bs-text-opacity: 1; + color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; +} +.text-black { + --bs-text-opacity: 1; + color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; +} +.text-white { + --bs-text-opacity: 1; + color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; +} +.text-body { + --bs-text-opacity: 1; + color: rgba(var(--bs-body-rgb), var(--bs-text-opacity)) !important; +} +.text-muted { + --bs-text-opacity: 1; + color: #6c757d !important; +} +.text-black-50 { + --bs-text-opacity: 1; + color: rgba(0, 0, 0, 0.5) !important; +} +.text-white-50 { + --bs-text-opacity: 1; + color: rgba(255, 255, 255, 0.5) !important; +} +.text-reset { + --bs-text-opacity: 1; + color: inherit !important; +} +.text-opacity-25 { + --bs-text-opacity: 0.25; +} +.text-opacity-50 { + --bs-text-opacity: 0.5; +} +.text-opacity-75 { + --bs-text-opacity: 0.75; +} +.text-opacity-100 { + --bs-text-opacity: 1; +} +.bg-primary { + --bs-bg-opacity: 1; + background-color: rgba( + var(--bs-primary-rgb), + var(--bs-bg-opacity) + ) !important; +} +.bg-secondary { + --bs-bg-opacity: 1; + background-color: rgba( + var(--bs-secondary-rgb), + var(--bs-bg-opacity) + ) !important; +} +.bg-success { + --bs-bg-opacity: 1; + background-color: rgba( + var(--bs-success-rgb), + var(--bs-bg-opacity) + ) !important; +} +.bg-info { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; +} +.bg-warning { + --bs-bg-opacity: 1; + background-color: rgba( + var(--bs-warning-rgb), + var(--bs-bg-opacity) + ) !important; +} +.bg-danger { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; +} +.bg-light { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; +} +.bg-dark { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; +} +.bg-black { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; +} +.bg-white { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; +} +.bg-body { + --bs-bg-opacity: 1; + background-color: rgba(var(--bs-body-rgb), var(--bs-bg-opacity)) !important; +} +.bg-transparent { + --bs-bg-opacity: 1; + background-color: transparent !important; +} +.bg-opacity-10 { + --bs-bg-opacity: 0.1; +} +.bg-opacity-25 { + --bs-bg-opacity: 0.25; +} +.bg-opacity-50 { + --bs-bg-opacity: 0.5; +} +.bg-opacity-75 { + --bs-bg-opacity: 0.75; +} +.bg-opacity-100 { + --bs-bg-opacity: 1; +} +.bg-gradient { + background-image: var(--bs-gradient) !important; +} +.user-select-all { + -webkit-user-select: all !important; + -moz-user-select: all !important; + user-select: all !important; +} +.user-select-auto { + -webkit-user-select: auto !important; + -moz-user-select: auto !important; + user-select: auto !important; +} +.user-select-none { + -webkit-user-select: none !important; + -moz-user-select: none !important; + user-select: none !important; +} +.pe-none { + pointer-events: none !important; +} +.pe-auto { + pointer-events: auto !important; +} +.rounded { + border-radius: 0.25rem !important; +} +.rounded-0 { + border-radius: 0 !important; +} +.rounded-1 { + border-radius: 0.2rem !important; +} +.rounded-2 { + border-radius: 0.25rem !important; +} +.rounded-3 { + border-radius: 0.3rem !important; +} +.rounded-circle { + border-radius: 50% !important; +} +.rounded-pill { + border-radius: 50rem !important; +} +.rounded-top { + border-top-left-radius: 0.25rem !important; + border-top-right-radius: 0.25rem !important; +} +.rounded-end { + border-top-right-radius: 0.25rem !important; + border-bottom-right-radius: 0.25rem !important; +} +.rounded-bottom { + border-bottom-right-radius: 0.25rem !important; + border-bottom-left-radius: 0.25rem !important; +} +.rounded-start { + border-bottom-left-radius: 0.25rem !important; + border-top-left-radius: 0.25rem !important; +} +.visible { + visibility: visible !important; +} +.invisible { + visibility: hidden !important; +} +@media (min-width: 576px) { + .float-sm-start { + float: left !important; + } + .float-sm-end { + float: right !important; + } + .float-sm-none { + float: none !important; + } + .d-sm-inline { + display: inline !important; + } + .d-sm-inline-block { + display: inline-block !important; + } + .d-sm-block { + display: block !important; + } + .d-sm-grid { + display: grid !important; + } + .d-sm-table { + display: table !important; + } + .d-sm-table-row { + display: table-row !important; + } + .d-sm-table-cell { + display: table-cell !important; + } + .d-sm-flex { + display: flex !important; + } + .d-sm-inline-flex { + display: inline-flex !important; + } + .d-sm-none { + display: none !important; + } + .flex-sm-fill { + flex: 1 1 auto !important; + } + .flex-sm-row { + flex-direction: row !important; + } + .flex-sm-column { + flex-direction: column !important; + } + .flex-sm-row-reverse { + flex-direction: row-reverse !important; + } + .flex-sm-column-reverse { + flex-direction: column-reverse !important; + } + .flex-sm-grow-0 { + flex-grow: 0 !important; + } + .flex-sm-grow-1 { + flex-grow: 1 !important; + } + .flex-sm-shrink-0 { + flex-shrink: 0 !important; + } + .flex-sm-shrink-1 { + flex-shrink: 1 !important; + } + .flex-sm-wrap { + flex-wrap: wrap !important; + } + .flex-sm-nowrap { + flex-wrap: nowrap !important; + } + .flex-sm-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .gap-sm-0 { + gap: 0 !important; + } + .gap-sm-1 { + gap: 0.25rem !important; + } + .gap-sm-2 { + gap: 0.5rem !important; + } + .gap-sm-3 { + gap: 1rem !important; + } + .gap-sm-4 { + gap: 1.5rem !important; + } + .gap-sm-5 { + gap: 3rem !important; + } + .justify-content-sm-start { + justify-content: flex-start !important; + } + .justify-content-sm-end { + justify-content: flex-end !important; + } + .justify-content-sm-center { + justify-content: center !important; + } + .justify-content-sm-between { + justify-content: space-between !important; + } + .justify-content-sm-around { + justify-content: space-around !important; + } + .justify-content-sm-evenly { + justify-content: space-evenly !important; + } + .align-items-sm-start { + align-items: flex-start !important; + } + .align-items-sm-end { + align-items: flex-end !important; + } + .align-items-sm-center { + align-items: center !important; + } + .align-items-sm-baseline { + align-items: baseline !important; + } + .align-items-sm-stretch { + align-items: stretch !important; + } + .align-content-sm-start { + align-content: flex-start !important; + } + .align-content-sm-end { + align-content: flex-end !important; + } + .align-content-sm-center { + align-content: center !important; + } + .align-content-sm-between { + align-content: space-between !important; + } + .align-content-sm-around { + align-content: space-around !important; + } + .align-content-sm-stretch { + align-content: stretch !important; + } + .align-self-sm-auto { + align-self: auto !important; + } + .align-self-sm-start { + align-self: flex-start !important; + } + .align-self-sm-end { + align-self: flex-end !important; + } + .align-self-sm-center { + align-self: center !important; + } + .align-self-sm-baseline { + align-self: baseline !important; + } + .align-self-sm-stretch { + align-self: stretch !important; + } + .order-sm-first { + order: -1 !important; + } + .order-sm-0 { + order: 0 !important; + } + .order-sm-1 { + order: 1 !important; + } + .order-sm-2 { + order: 2 !important; + } + .order-sm-3 { + order: 3 !important; + } + .order-sm-4 { + order: 4 !important; + } + .order-sm-5 { + order: 5 !important; + } + .order-sm-last { + order: 6 !important; + } + .m-sm-0 { + margin: 0 !important; + } + .m-sm-1 { + margin: 0.25rem !important; + } + .m-sm-2 { + margin: 0.5rem !important; + } + .m-sm-3 { + margin: 1rem !important; + } + .m-sm-4 { + margin: 1.5rem !important; + } + .m-sm-5 { + margin: 3rem !important; + } + .m-sm-auto { + margin: auto !important; + } + .mx-sm-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-sm-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-sm-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-sm-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-sm-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-sm-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-sm-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-sm-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-sm-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-sm-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-sm-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-sm-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-sm-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-sm-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-sm-0 { + margin-top: 0 !important; + } + .mt-sm-1 { + margin-top: 0.25rem !important; + } + .mt-sm-2 { + margin-top: 0.5rem !important; + } + .mt-sm-3 { + margin-top: 1rem !important; + } + .mt-sm-4 { + margin-top: 1.5rem !important; + } + .mt-sm-5 { + margin-top: 3rem !important; + } + .mt-sm-auto { + margin-top: auto !important; + } + .me-sm-0 { + margin-right: 0 !important; + } + .me-sm-1 { + margin-right: 0.25rem !important; + } + .me-sm-2 { + margin-right: 0.5rem !important; + } + .me-sm-3 { + margin-right: 1rem !important; + } + .me-sm-4 { + margin-right: 1.5rem !important; + } + .me-sm-5 { + margin-right: 3rem !important; + } + .me-sm-auto { + margin-right: auto !important; + } + .mb-sm-0 { + margin-bottom: 0 !important; + } + .mb-sm-1 { + margin-bottom: 0.25rem !important; + } + .mb-sm-2 { + margin-bottom: 0.5rem !important; + } + .mb-sm-3 { + margin-bottom: 1rem !important; + } + .mb-sm-4 { + margin-bottom: 1.5rem !important; + } + .mb-sm-5 { + margin-bottom: 3rem !important; + } + .mb-sm-auto { + margin-bottom: auto !important; + } + .ms-sm-0 { + margin-left: 0 !important; + } + .ms-sm-1 { + margin-left: 0.25rem !important; + } + .ms-sm-2 { + margin-left: 0.5rem !important; + } + .ms-sm-3 { + margin-left: 1rem !important; + } + .ms-sm-4 { + margin-left: 1.5rem !important; + } + .ms-sm-5 { + margin-left: 3rem !important; + } + .ms-sm-auto { + margin-left: auto !important; + } + .p-sm-0 { + padding: 0 !important; + } + .p-sm-1 { + padding: 0.25rem !important; + } + .p-sm-2 { + padding: 0.5rem !important; + } + .p-sm-3 { + padding: 1rem !important; + } + .p-sm-4 { + padding: 1.5rem !important; + } + .p-sm-5 { + padding: 3rem !important; + } + .px-sm-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-sm-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-sm-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-sm-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-sm-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-sm-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-sm-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-sm-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-sm-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-sm-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-sm-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-sm-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-sm-0 { + padding-top: 0 !important; + } + .pt-sm-1 { + padding-top: 0.25rem !important; + } + .pt-sm-2 { + padding-top: 0.5rem !important; + } + .pt-sm-3 { + padding-top: 1rem !important; + } + .pt-sm-4 { + padding-top: 1.5rem !important; + } + .pt-sm-5 { + padding-top: 3rem !important; + } + .pe-sm-0 { + padding-right: 0 !important; + } + .pe-sm-1 { + padding-right: 0.25rem !important; + } + .pe-sm-2 { + padding-right: 0.5rem !important; + } + .pe-sm-3 { + padding-right: 1rem !important; + } + .pe-sm-4 { + padding-right: 1.5rem !important; + } + .pe-sm-5 { + padding-right: 3rem !important; + } + .pb-sm-0 { + padding-bottom: 0 !important; + } + .pb-sm-1 { + padding-bottom: 0.25rem !important; + } + .pb-sm-2 { + padding-bottom: 0.5rem !important; + } + .pb-sm-3 { + padding-bottom: 1rem !important; + } + .pb-sm-4 { + padding-bottom: 1.5rem !important; + } + .pb-sm-5 { + padding-bottom: 3rem !important; + } + .ps-sm-0 { + padding-left: 0 !important; + } + .ps-sm-1 { + padding-left: 0.25rem !important; + } + .ps-sm-2 { + padding-left: 0.5rem !important; + } + .ps-sm-3 { + padding-left: 1rem !important; + } + .ps-sm-4 { + padding-left: 1.5rem !important; + } + .ps-sm-5 { + padding-left: 3rem !important; + } + .text-sm-start { + text-align: left !important; + } + .text-sm-end { + text-align: right !important; + } + .text-sm-center { + text-align: center !important; + } +} +@media (min-width: 768px) { + .float-md-start { + float: left !important; + } + .float-md-end { + float: right !important; + } + .float-md-none { + float: none !important; + } + .d-md-inline { + display: inline !important; + } + .d-md-inline-block { + display: inline-block !important; + } + .d-md-block { + display: block !important; + } + .d-md-grid { + display: grid !important; + } + .d-md-table { + display: table !important; + } + .d-md-table-row { + display: table-row !important; + } + .d-md-table-cell { + display: table-cell !important; + } + .d-md-flex { + display: flex !important; + } + .d-md-inline-flex { + display: inline-flex !important; + } + .d-md-none { + display: none !important; + } + .flex-md-fill { + flex: 1 1 auto !important; + } + .flex-md-row { + flex-direction: row !important; + } + .flex-md-column { + flex-direction: column !important; + } + .flex-md-row-reverse { + flex-direction: row-reverse !important; + } + .flex-md-column-reverse { + flex-direction: column-reverse !important; + } + .flex-md-grow-0 { + flex-grow: 0 !important; + } + .flex-md-grow-1 { + flex-grow: 1 !important; + } + .flex-md-shrink-0 { + flex-shrink: 0 !important; + } + .flex-md-shrink-1 { + flex-shrink: 1 !important; + } + .flex-md-wrap { + flex-wrap: wrap !important; + } + .flex-md-nowrap { + flex-wrap: nowrap !important; + } + .flex-md-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .gap-md-0 { + gap: 0 !important; + } + .gap-md-1 { + gap: 0.25rem !important; + } + .gap-md-2 { + gap: 0.5rem !important; + } + .gap-md-3 { + gap: 1rem !important; + } + .gap-md-4 { + gap: 1.5rem !important; + } + .gap-md-5 { + gap: 3rem !important; + } + .justify-content-md-start { + justify-content: flex-start !important; + } + .justify-content-md-end { + justify-content: flex-end !important; + } + .justify-content-md-center { + justify-content: center !important; + } + .justify-content-md-between { + justify-content: space-between !important; + } + .justify-content-md-around { + justify-content: space-around !important; + } + .justify-content-md-evenly { + justify-content: space-evenly !important; + } + .align-items-md-start { + align-items: flex-start !important; + } + .align-items-md-end { + align-items: flex-end !important; + } + .align-items-md-center { + align-items: center !important; + } + .align-items-md-baseline { + align-items: baseline !important; + } + .align-items-md-stretch { + align-items: stretch !important; + } + .align-content-md-start { + align-content: flex-start !important; + } + .align-content-md-end { + align-content: flex-end !important; + } + .align-content-md-center { + align-content: center !important; + } + .align-content-md-between { + align-content: space-between !important; + } + .align-content-md-around { + align-content: space-around !important; + } + .align-content-md-stretch { + align-content: stretch !important; + } + .align-self-md-auto { + align-self: auto !important; + } + .align-self-md-start { + align-self: flex-start !important; + } + .align-self-md-end { + align-self: flex-end !important; + } + .align-self-md-center { + align-self: center !important; + } + .align-self-md-baseline { + align-self: baseline !important; + } + .align-self-md-stretch { + align-self: stretch !important; + } + .order-md-first { + order: -1 !important; + } + .order-md-0 { + order: 0 !important; + } + .order-md-1 { + order: 1 !important; + } + .order-md-2 { + order: 2 !important; + } + .order-md-3 { + order: 3 !important; + } + .order-md-4 { + order: 4 !important; + } + .order-md-5 { + order: 5 !important; + } + .order-md-last { + order: 6 !important; + } + .m-md-0 { + margin: 0 !important; + } + .m-md-1 { + margin: 0.25rem !important; + } + .m-md-2 { + margin: 0.5rem !important; + } + .m-md-3 { + margin: 1rem !important; + } + .m-md-4 { + margin: 1.5rem !important; + } + .m-md-5 { + margin: 3rem !important; + } + .m-md-auto { + margin: auto !important; + } + .mx-md-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-md-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-md-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-md-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-md-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-md-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-md-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-md-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-md-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-md-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-md-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-md-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-md-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-md-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-md-0 { + margin-top: 0 !important; + } + .mt-md-1 { + margin-top: 0.25rem !important; + } + .mt-md-2 { + margin-top: 0.5rem !important; + } + .mt-md-3 { + margin-top: 1rem !important; + } + .mt-md-4 { + margin-top: 1.5rem !important; + } + .mt-md-5 { + margin-top: 3rem !important; + } + .mt-md-auto { + margin-top: auto !important; + } + .me-md-0 { + margin-right: 0 !important; + } + .me-md-1 { + margin-right: 0.25rem !important; + } + .me-md-2 { + margin-right: 0.5rem !important; + } + .me-md-3 { + margin-right: 1rem !important; + } + .me-md-4 { + margin-right: 1.5rem !important; + } + .me-md-5 { + margin-right: 3rem !important; + } + .me-md-auto { + margin-right: auto !important; + } + .mb-md-0 { + margin-bottom: 0 !important; + } + .mb-md-1 { + margin-bottom: 0.25rem !important; + } + .mb-md-2 { + margin-bottom: 0.5rem !important; + } + .mb-md-3 { + margin-bottom: 1rem !important; + } + .mb-md-4 { + margin-bottom: 1.5rem !important; + } + .mb-md-5 { + margin-bottom: 3rem !important; + } + .mb-md-auto { + margin-bottom: auto !important; + } + .ms-md-0 { + margin-left: 0 !important; + } + .ms-md-1 { + margin-left: 0.25rem !important; + } + .ms-md-2 { + margin-left: 0.5rem !important; + } + .ms-md-3 { + margin-left: 1rem !important; + } + .ms-md-4 { + margin-left: 1.5rem !important; + } + .ms-md-5 { + margin-left: 3rem !important; + } + .ms-md-auto { + margin-left: auto !important; + } + .p-md-0 { + padding: 0 !important; + } + .p-md-1 { + padding: 0.25rem !important; + } + .p-md-2 { + padding: 0.5rem !important; + } + .p-md-3 { + padding: 1rem !important; + } + .p-md-4 { + padding: 1.5rem !important; + } + .p-md-5 { + padding: 3rem !important; + } + .px-md-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-md-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-md-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-md-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-md-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-md-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-md-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-md-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-md-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-md-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-md-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-md-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-md-0 { + padding-top: 0 !important; + } + .pt-md-1 { + padding-top: 0.25rem !important; + } + .pt-md-2 { + padding-top: 0.5rem !important; + } + .pt-md-3 { + padding-top: 1rem !important; + } + .pt-md-4 { + padding-top: 1.5rem !important; + } + .pt-md-5 { + padding-top: 3rem !important; + } + .pe-md-0 { + padding-right: 0 !important; + } + .pe-md-1 { + padding-right: 0.25rem !important; + } + .pe-md-2 { + padding-right: 0.5rem !important; + } + .pe-md-3 { + padding-right: 1rem !important; + } + .pe-md-4 { + padding-right: 1.5rem !important; + } + .pe-md-5 { + padding-right: 3rem !important; + } + .pb-md-0 { + padding-bottom: 0 !important; + } + .pb-md-1 { + padding-bottom: 0.25rem !important; + } + .pb-md-2 { + padding-bottom: 0.5rem !important; + } + .pb-md-3 { + padding-bottom: 1rem !important; + } + .pb-md-4 { + padding-bottom: 1.5rem !important; + } + .pb-md-5 { + padding-bottom: 3rem !important; + } + .ps-md-0 { + padding-left: 0 !important; + } + .ps-md-1 { + padding-left: 0.25rem !important; + } + .ps-md-2 { + padding-left: 0.5rem !important; + } + .ps-md-3 { + padding-left: 1rem !important; + } + .ps-md-4 { + padding-left: 1.5rem !important; + } + .ps-md-5 { + padding-left: 3rem !important; + } + .text-md-start { + text-align: left !important; + } + .text-md-end { + text-align: right !important; + } + .text-md-center { + text-align: center !important; + } +} +@media (min-width: 992px) { + .float-lg-start { + float: left !important; + } + .float-lg-end { + float: right !important; + } + .float-lg-none { + float: none !important; + } + .d-lg-inline { + display: inline !important; + } + .d-lg-inline-block { + display: inline-block !important; + } + .d-lg-block { + display: block !important; + } + .d-lg-grid { + display: grid !important; + } + .d-lg-table { + display: table !important; + } + .d-lg-table-row { + display: table-row !important; + } + .d-lg-table-cell { + display: table-cell !important; + } + .d-lg-flex { + display: flex !important; + } + .d-lg-inline-flex { + display: inline-flex !important; + } + .d-lg-none { + display: none !important; + } + .flex-lg-fill { + flex: 1 1 auto !important; + } + .flex-lg-row { + flex-direction: row !important; + } + .flex-lg-column { + flex-direction: column !important; + } + .flex-lg-row-reverse { + flex-direction: row-reverse !important; + } + .flex-lg-column-reverse { + flex-direction: column-reverse !important; + } + .flex-lg-grow-0 { + flex-grow: 0 !important; + } + .flex-lg-grow-1 { + flex-grow: 1 !important; + } + .flex-lg-shrink-0 { + flex-shrink: 0 !important; + } + .flex-lg-shrink-1 { + flex-shrink: 1 !important; + } + .flex-lg-wrap { + flex-wrap: wrap !important; + } + .flex-lg-nowrap { + flex-wrap: nowrap !important; + } + .flex-lg-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .gap-lg-0 { + gap: 0 !important; + } + .gap-lg-1 { + gap: 0.25rem !important; + } + .gap-lg-2 { + gap: 0.5rem !important; + } + .gap-lg-3 { + gap: 1rem !important; + } + .gap-lg-4 { + gap: 1.5rem !important; + } + .gap-lg-5 { + gap: 3rem !important; + } + .justify-content-lg-start { + justify-content: flex-start !important; + } + .justify-content-lg-end { + justify-content: flex-end !important; + } + .justify-content-lg-center { + justify-content: center !important; + } + .justify-content-lg-between { + justify-content: space-between !important; + } + .justify-content-lg-around { + justify-content: space-around !important; + } + .justify-content-lg-evenly { + justify-content: space-evenly !important; + } + .align-items-lg-start { + align-items: flex-start !important; + } + .align-items-lg-end { + align-items: flex-end !important; + } + .align-items-lg-center { + align-items: center !important; + } + .align-items-lg-baseline { + align-items: baseline !important; + } + .align-items-lg-stretch { + align-items: stretch !important; + } + .align-content-lg-start { + align-content: flex-start !important; + } + .align-content-lg-end { + align-content: flex-end !important; + } + .align-content-lg-center { + align-content: center !important; + } + .align-content-lg-between { + align-content: space-between !important; + } + .align-content-lg-around { + align-content: space-around !important; + } + .align-content-lg-stretch { + align-content: stretch !important; + } + .align-self-lg-auto { + align-self: auto !important; + } + .align-self-lg-start { + align-self: flex-start !important; + } + .align-self-lg-end { + align-self: flex-end !important; + } + .align-self-lg-center { + align-self: center !important; + } + .align-self-lg-baseline { + align-self: baseline !important; + } + .align-self-lg-stretch { + align-self: stretch !important; + } + .order-lg-first { + order: -1 !important; + } + .order-lg-0 { + order: 0 !important; + } + .order-lg-1 { + order: 1 !important; + } + .order-lg-2 { + order: 2 !important; + } + .order-lg-3 { + order: 3 !important; + } + .order-lg-4 { + order: 4 !important; + } + .order-lg-5 { + order: 5 !important; + } + .order-lg-last { + order: 6 !important; + } + .m-lg-0 { + margin: 0 !important; + } + .m-lg-1 { + margin: 0.25rem !important; + } + .m-lg-2 { + margin: 0.5rem !important; + } + .m-lg-3 { + margin: 1rem !important; + } + .m-lg-4 { + margin: 1.5rem !important; + } + .m-lg-5 { + margin: 3rem !important; + } + .m-lg-auto { + margin: auto !important; + } + .mx-lg-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-lg-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-lg-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-lg-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-lg-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-lg-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-lg-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-lg-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-lg-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-lg-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-lg-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-lg-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-lg-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-lg-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-lg-0 { + margin-top: 0 !important; + } + .mt-lg-1 { + margin-top: 0.25rem !important; + } + .mt-lg-2 { + margin-top: 0.5rem !important; + } + .mt-lg-3 { + margin-top: 1rem !important; + } + .mt-lg-4 { + margin-top: 1.5rem !important; + } + .mt-lg-5 { + margin-top: 3rem !important; + } + .mt-lg-auto { + margin-top: auto !important; + } + .me-lg-0 { + margin-right: 0 !important; + } + .me-lg-1 { + margin-right: 0.25rem !important; + } + .me-lg-2 { + margin-right: 0.5rem !important; + } + .me-lg-3 { + margin-right: 1rem !important; + } + .me-lg-4 { + margin-right: 1.5rem !important; + } + .me-lg-5 { + margin-right: 3rem !important; + } + .me-lg-auto { + margin-right: auto !important; + } + .mb-lg-0 { + margin-bottom: 0 !important; + } + .mb-lg-1 { + margin-bottom: 0.25rem !important; + } + .mb-lg-2 { + margin-bottom: 0.5rem !important; + } + .mb-lg-3 { + margin-bottom: 1rem !important; + } + .mb-lg-4 { + margin-bottom: 1.5rem !important; + } + .mb-lg-5 { + margin-bottom: 3rem !important; + } + .mb-lg-auto { + margin-bottom: auto !important; + } + .ms-lg-0 { + margin-left: 0 !important; + } + .ms-lg-1 { + margin-left: 0.25rem !important; + } + .ms-lg-2 { + margin-left: 0.5rem !important; + } + .ms-lg-3 { + margin-left: 1rem !important; + } + .ms-lg-4 { + margin-left: 1.5rem !important; + } + .ms-lg-5 { + margin-left: 3rem !important; + } + .ms-lg-auto { + margin-left: auto !important; + } + .p-lg-0 { + padding: 0 !important; + } + .p-lg-1 { + padding: 0.25rem !important; + } + .p-lg-2 { + padding: 0.5rem !important; + } + .p-lg-3 { + padding: 1rem !important; + } + .p-lg-4 { + padding: 1.5rem !important; + } + .p-lg-5 { + padding: 3rem !important; + } + .px-lg-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-lg-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-lg-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-lg-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-lg-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-lg-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-lg-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-lg-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-lg-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-lg-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-lg-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-lg-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-lg-0 { + padding-top: 0 !important; + } + .pt-lg-1 { + padding-top: 0.25rem !important; + } + .pt-lg-2 { + padding-top: 0.5rem !important; + } + .pt-lg-3 { + padding-top: 1rem !important; + } + .pt-lg-4 { + padding-top: 1.5rem !important; + } + .pt-lg-5 { + padding-top: 3rem !important; + } + .pe-lg-0 { + padding-right: 0 !important; + } + .pe-lg-1 { + padding-right: 0.25rem !important; + } + .pe-lg-2 { + padding-right: 0.5rem !important; + } + .pe-lg-3 { + padding-right: 1rem !important; + } + .pe-lg-4 { + padding-right: 1.5rem !important; + } + .pe-lg-5 { + padding-right: 3rem !important; + } + .pb-lg-0 { + padding-bottom: 0 !important; + } + .pb-lg-1 { + padding-bottom: 0.25rem !important; + } + .pb-lg-2 { + padding-bottom: 0.5rem !important; + } + .pb-lg-3 { + padding-bottom: 1rem !important; + } + .pb-lg-4 { + padding-bottom: 1.5rem !important; + } + .pb-lg-5 { + padding-bottom: 3rem !important; + } + .ps-lg-0 { + padding-left: 0 !important; + } + .ps-lg-1 { + padding-left: 0.25rem !important; + } + .ps-lg-2 { + padding-left: 0.5rem !important; + } + .ps-lg-3 { + padding-left: 1rem !important; + } + .ps-lg-4 { + padding-left: 1.5rem !important; + } + .ps-lg-5 { + padding-left: 3rem !important; + } + .text-lg-start { + text-align: left !important; + } + .text-lg-end { + text-align: right !important; + } + .text-lg-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .float-xl-start { + float: left !important; + } + .float-xl-end { + float: right !important; + } + .float-xl-none { + float: none !important; + } + .d-xl-inline { + display: inline !important; + } + .d-xl-inline-block { + display: inline-block !important; + } + .d-xl-block { + display: block !important; + } + .d-xl-grid { + display: grid !important; + } + .d-xl-table { + display: table !important; + } + .d-xl-table-row { + display: table-row !important; + } + .d-xl-table-cell { + display: table-cell !important; + } + .d-xl-flex { + display: flex !important; + } + .d-xl-inline-flex { + display: inline-flex !important; + } + .d-xl-none { + display: none !important; + } + .flex-xl-fill { + flex: 1 1 auto !important; + } + .flex-xl-row { + flex-direction: row !important; + } + .flex-xl-column { + flex-direction: column !important; + } + .flex-xl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xl-grow-0 { + flex-grow: 0 !important; + } + .flex-xl-grow-1 { + flex-grow: 1 !important; + } + .flex-xl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xl-wrap { + flex-wrap: wrap !important; + } + .flex-xl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .gap-xl-0 { + gap: 0 !important; + } + .gap-xl-1 { + gap: 0.25rem !important; + } + .gap-xl-2 { + gap: 0.5rem !important; + } + .gap-xl-3 { + gap: 1rem !important; + } + .gap-xl-4 { + gap: 1.5rem !important; + } + .gap-xl-5 { + gap: 3rem !important; + } + .justify-content-xl-start { + justify-content: flex-start !important; + } + .justify-content-xl-end { + justify-content: flex-end !important; + } + .justify-content-xl-center { + justify-content: center !important; + } + .justify-content-xl-between { + justify-content: space-between !important; + } + .justify-content-xl-around { + justify-content: space-around !important; + } + .justify-content-xl-evenly { + justify-content: space-evenly !important; + } + .align-items-xl-start { + align-items: flex-start !important; + } + .align-items-xl-end { + align-items: flex-end !important; + } + .align-items-xl-center { + align-items: center !important; + } + .align-items-xl-baseline { + align-items: baseline !important; + } + .align-items-xl-stretch { + align-items: stretch !important; + } + .align-content-xl-start { + align-content: flex-start !important; + } + .align-content-xl-end { + align-content: flex-end !important; + } + .align-content-xl-center { + align-content: center !important; + } + .align-content-xl-between { + align-content: space-between !important; + } + .align-content-xl-around { + align-content: space-around !important; + } + .align-content-xl-stretch { + align-content: stretch !important; + } + .align-self-xl-auto { + align-self: auto !important; + } + .align-self-xl-start { + align-self: flex-start !important; + } + .align-self-xl-end { + align-self: flex-end !important; + } + .align-self-xl-center { + align-self: center !important; + } + .align-self-xl-baseline { + align-self: baseline !important; + } + .align-self-xl-stretch { + align-self: stretch !important; + } + .order-xl-first { + order: -1 !important; + } + .order-xl-0 { + order: 0 !important; + } + .order-xl-1 { + order: 1 !important; + } + .order-xl-2 { + order: 2 !important; + } + .order-xl-3 { + order: 3 !important; + } + .order-xl-4 { + order: 4 !important; + } + .order-xl-5 { + order: 5 !important; + } + .order-xl-last { + order: 6 !important; + } + .m-xl-0 { + margin: 0 !important; + } + .m-xl-1 { + margin: 0.25rem !important; + } + .m-xl-2 { + margin: 0.5rem !important; + } + .m-xl-3 { + margin: 1rem !important; + } + .m-xl-4 { + margin: 1.5rem !important; + } + .m-xl-5 { + margin: 3rem !important; + } + .m-xl-auto { + margin: auto !important; + } + .mx-xl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xl-0 { + margin-top: 0 !important; + } + .mt-xl-1 { + margin-top: 0.25rem !important; + } + .mt-xl-2 { + margin-top: 0.5rem !important; + } + .mt-xl-3 { + margin-top: 1rem !important; + } + .mt-xl-4 { + margin-top: 1.5rem !important; + } + .mt-xl-5 { + margin-top: 3rem !important; + } + .mt-xl-auto { + margin-top: auto !important; + } + .me-xl-0 { + margin-right: 0 !important; + } + .me-xl-1 { + margin-right: 0.25rem !important; + } + .me-xl-2 { + margin-right: 0.5rem !important; + } + .me-xl-3 { + margin-right: 1rem !important; + } + .me-xl-4 { + margin-right: 1.5rem !important; + } + .me-xl-5 { + margin-right: 3rem !important; + } + .me-xl-auto { + margin-right: auto !important; + } + .mb-xl-0 { + margin-bottom: 0 !important; + } + .mb-xl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xl-3 { + margin-bottom: 1rem !important; + } + .mb-xl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xl-5 { + margin-bottom: 3rem !important; + } + .mb-xl-auto { + margin-bottom: auto !important; + } + .ms-xl-0 { + margin-left: 0 !important; + } + .ms-xl-1 { + margin-left: 0.25rem !important; + } + .ms-xl-2 { + margin-left: 0.5rem !important; + } + .ms-xl-3 { + margin-left: 1rem !important; + } + .ms-xl-4 { + margin-left: 1.5rem !important; + } + .ms-xl-5 { + margin-left: 3rem !important; + } + .ms-xl-auto { + margin-left: auto !important; + } + .p-xl-0 { + padding: 0 !important; + } + .p-xl-1 { + padding: 0.25rem !important; + } + .p-xl-2 { + padding: 0.5rem !important; + } + .p-xl-3 { + padding: 1rem !important; + } + .p-xl-4 { + padding: 1.5rem !important; + } + .p-xl-5 { + padding: 3rem !important; + } + .px-xl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xl-0 { + padding-top: 0 !important; + } + .pt-xl-1 { + padding-top: 0.25rem !important; + } + .pt-xl-2 { + padding-top: 0.5rem !important; + } + .pt-xl-3 { + padding-top: 1rem !important; + } + .pt-xl-4 { + padding-top: 1.5rem !important; + } + .pt-xl-5 { + padding-top: 3rem !important; + } + .pe-xl-0 { + padding-right: 0 !important; + } + .pe-xl-1 { + padding-right: 0.25rem !important; + } + .pe-xl-2 { + padding-right: 0.5rem !important; + } + .pe-xl-3 { + padding-right: 1rem !important; + } + .pe-xl-4 { + padding-right: 1.5rem !important; + } + .pe-xl-5 { + padding-right: 3rem !important; + } + .pb-xl-0 { + padding-bottom: 0 !important; + } + .pb-xl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xl-3 { + padding-bottom: 1rem !important; + } + .pb-xl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xl-5 { + padding-bottom: 3rem !important; + } + .ps-xl-0 { + padding-left: 0 !important; + } + .ps-xl-1 { + padding-left: 0.25rem !important; + } + .ps-xl-2 { + padding-left: 0.5rem !important; + } + .ps-xl-3 { + padding-left: 1rem !important; + } + .ps-xl-4 { + padding-left: 1.5rem !important; + } + .ps-xl-5 { + padding-left: 3rem !important; + } + .text-xl-start { + text-align: left !important; + } + .text-xl-end { + text-align: right !important; + } + .text-xl-center { + text-align: center !important; + } +} +@media (min-width: 1400px) { + .float-xxl-start { + float: left !important; + } + .float-xxl-end { + float: right !important; + } + .float-xxl-none { + float: none !important; + } + .d-xxl-inline { + display: inline !important; + } + .d-xxl-inline-block { + display: inline-block !important; + } + .d-xxl-block { + display: block !important; + } + .d-xxl-grid { + display: grid !important; + } + .d-xxl-table { + display: table !important; + } + .d-xxl-table-row { + display: table-row !important; + } + .d-xxl-table-cell { + display: table-cell !important; + } + .d-xxl-flex { + display: flex !important; + } + .d-xxl-inline-flex { + display: inline-flex !important; + } + .d-xxl-none { + display: none !important; + } + .flex-xxl-fill { + flex: 1 1 auto !important; + } + .flex-xxl-row { + flex-direction: row !important; + } + .flex-xxl-column { + flex-direction: column !important; + } + .flex-xxl-row-reverse { + flex-direction: row-reverse !important; + } + .flex-xxl-column-reverse { + flex-direction: column-reverse !important; + } + .flex-xxl-grow-0 { + flex-grow: 0 !important; + } + .flex-xxl-grow-1 { + flex-grow: 1 !important; + } + .flex-xxl-shrink-0 { + flex-shrink: 0 !important; + } + .flex-xxl-shrink-1 { + flex-shrink: 1 !important; + } + .flex-xxl-wrap { + flex-wrap: wrap !important; + } + .flex-xxl-nowrap { + flex-wrap: nowrap !important; + } + .flex-xxl-wrap-reverse { + flex-wrap: wrap-reverse !important; + } + .gap-xxl-0 { + gap: 0 !important; + } + .gap-xxl-1 { + gap: 0.25rem !important; + } + .gap-xxl-2 { + gap: 0.5rem !important; + } + .gap-xxl-3 { + gap: 1rem !important; + } + .gap-xxl-4 { + gap: 1.5rem !important; + } + .gap-xxl-5 { + gap: 3rem !important; + } + .justify-content-xxl-start { + justify-content: flex-start !important; + } + .justify-content-xxl-end { + justify-content: flex-end !important; + } + .justify-content-xxl-center { + justify-content: center !important; + } + .justify-content-xxl-between { + justify-content: space-between !important; + } + .justify-content-xxl-around { + justify-content: space-around !important; + } + .justify-content-xxl-evenly { + justify-content: space-evenly !important; + } + .align-items-xxl-start { + align-items: flex-start !important; + } + .align-items-xxl-end { + align-items: flex-end !important; + } + .align-items-xxl-center { + align-items: center !important; + } + .align-items-xxl-baseline { + align-items: baseline !important; + } + .align-items-xxl-stretch { + align-items: stretch !important; + } + .align-content-xxl-start { + align-content: flex-start !important; + } + .align-content-xxl-end { + align-content: flex-end !important; + } + .align-content-xxl-center { + align-content: center !important; + } + .align-content-xxl-between { + align-content: space-between !important; + } + .align-content-xxl-around { + align-content: space-around !important; + } + .align-content-xxl-stretch { + align-content: stretch !important; + } + .align-self-xxl-auto { + align-self: auto !important; + } + .align-self-xxl-start { + align-self: flex-start !important; + } + .align-self-xxl-end { + align-self: flex-end !important; + } + .align-self-xxl-center { + align-self: center !important; + } + .align-self-xxl-baseline { + align-self: baseline !important; + } + .align-self-xxl-stretch { + align-self: stretch !important; + } + .order-xxl-first { + order: -1 !important; + } + .order-xxl-0 { + order: 0 !important; + } + .order-xxl-1 { + order: 1 !important; + } + .order-xxl-2 { + order: 2 !important; + } + .order-xxl-3 { + order: 3 !important; + } + .order-xxl-4 { + order: 4 !important; + } + .order-xxl-5 { + order: 5 !important; + } + .order-xxl-last { + order: 6 !important; + } + .m-xxl-0 { + margin: 0 !important; + } + .m-xxl-1 { + margin: 0.25rem !important; + } + .m-xxl-2 { + margin: 0.5rem !important; + } + .m-xxl-3 { + margin: 1rem !important; + } + .m-xxl-4 { + margin: 1.5rem !important; + } + .m-xxl-5 { + margin: 3rem !important; + } + .m-xxl-auto { + margin: auto !important; + } + .mx-xxl-0 { + margin-right: 0 !important; + margin-left: 0 !important; + } + .mx-xxl-1 { + margin-right: 0.25rem !important; + margin-left: 0.25rem !important; + } + .mx-xxl-2 { + margin-right: 0.5rem !important; + margin-left: 0.5rem !important; + } + .mx-xxl-3 { + margin-right: 1rem !important; + margin-left: 1rem !important; + } + .mx-xxl-4 { + margin-right: 1.5rem !important; + margin-left: 1.5rem !important; + } + .mx-xxl-5 { + margin-right: 3rem !important; + margin-left: 3rem !important; + } + .mx-xxl-auto { + margin-right: auto !important; + margin-left: auto !important; + } + .my-xxl-0 { + margin-top: 0 !important; + margin-bottom: 0 !important; + } + .my-xxl-1 { + margin-top: 0.25rem !important; + margin-bottom: 0.25rem !important; + } + .my-xxl-2 { + margin-top: 0.5rem !important; + margin-bottom: 0.5rem !important; + } + .my-xxl-3 { + margin-top: 1rem !important; + margin-bottom: 1rem !important; + } + .my-xxl-4 { + margin-top: 1.5rem !important; + margin-bottom: 1.5rem !important; + } + .my-xxl-5 { + margin-top: 3rem !important; + margin-bottom: 3rem !important; + } + .my-xxl-auto { + margin-top: auto !important; + margin-bottom: auto !important; + } + .mt-xxl-0 { + margin-top: 0 !important; + } + .mt-xxl-1 { + margin-top: 0.25rem !important; + } + .mt-xxl-2 { + margin-top: 0.5rem !important; + } + .mt-xxl-3 { + margin-top: 1rem !important; + } + .mt-xxl-4 { + margin-top: 1.5rem !important; + } + .mt-xxl-5 { + margin-top: 3rem !important; + } + .mt-xxl-auto { + margin-top: auto !important; + } + .me-xxl-0 { + margin-right: 0 !important; + } + .me-xxl-1 { + margin-right: 0.25rem !important; + } + .me-xxl-2 { + margin-right: 0.5rem !important; + } + .me-xxl-3 { + margin-right: 1rem !important; + } + .me-xxl-4 { + margin-right: 1.5rem !important; + } + .me-xxl-5 { + margin-right: 3rem !important; + } + .me-xxl-auto { + margin-right: auto !important; + } + .mb-xxl-0 { + margin-bottom: 0 !important; + } + .mb-xxl-1 { + margin-bottom: 0.25rem !important; + } + .mb-xxl-2 { + margin-bottom: 0.5rem !important; + } + .mb-xxl-3 { + margin-bottom: 1rem !important; + } + .mb-xxl-4 { + margin-bottom: 1.5rem !important; + } + .mb-xxl-5 { + margin-bottom: 3rem !important; + } + .mb-xxl-auto { + margin-bottom: auto !important; + } + .ms-xxl-0 { + margin-left: 0 !important; + } + .ms-xxl-1 { + margin-left: 0.25rem !important; + } + .ms-xxl-2 { + margin-left: 0.5rem !important; + } + .ms-xxl-3 { + margin-left: 1rem !important; + } + .ms-xxl-4 { + margin-left: 1.5rem !important; + } + .ms-xxl-5 { + margin-left: 3rem !important; + } + .ms-xxl-auto { + margin-left: auto !important; + } + .p-xxl-0 { + padding: 0 !important; + } + .p-xxl-1 { + padding: 0.25rem !important; + } + .p-xxl-2 { + padding: 0.5rem !important; + } + .p-xxl-3 { + padding: 1rem !important; + } + .p-xxl-4 { + padding: 1.5rem !important; + } + .p-xxl-5 { + padding: 3rem !important; + } + .px-xxl-0 { + padding-right: 0 !important; + padding-left: 0 !important; + } + .px-xxl-1 { + padding-right: 0.25rem !important; + padding-left: 0.25rem !important; + } + .px-xxl-2 { + padding-right: 0.5rem !important; + padding-left: 0.5rem !important; + } + .px-xxl-3 { + padding-right: 1rem !important; + padding-left: 1rem !important; + } + .px-xxl-4 { + padding-right: 1.5rem !important; + padding-left: 1.5rem !important; + } + .px-xxl-5 { + padding-right: 3rem !important; + padding-left: 3rem !important; + } + .py-xxl-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; + } + .py-xxl-1 { + padding-top: 0.25rem !important; + padding-bottom: 0.25rem !important; + } + .py-xxl-2 { + padding-top: 0.5rem !important; + padding-bottom: 0.5rem !important; + } + .py-xxl-3 { + padding-top: 1rem !important; + padding-bottom: 1rem !important; + } + .py-xxl-4 { + padding-top: 1.5rem !important; + padding-bottom: 1.5rem !important; + } + .py-xxl-5 { + padding-top: 3rem !important; + padding-bottom: 3rem !important; + } + .pt-xxl-0 { + padding-top: 0 !important; + } + .pt-xxl-1 { + padding-top: 0.25rem !important; + } + .pt-xxl-2 { + padding-top: 0.5rem !important; + } + .pt-xxl-3 { + padding-top: 1rem !important; + } + .pt-xxl-4 { + padding-top: 1.5rem !important; + } + .pt-xxl-5 { + padding-top: 3rem !important; + } + .pe-xxl-0 { + padding-right: 0 !important; + } + .pe-xxl-1 { + padding-right: 0.25rem !important; + } + .pe-xxl-2 { + padding-right: 0.5rem !important; + } + .pe-xxl-3 { + padding-right: 1rem !important; + } + .pe-xxl-4 { + padding-right: 1.5rem !important; + } + .pe-xxl-5 { + padding-right: 3rem !important; + } + .pb-xxl-0 { + padding-bottom: 0 !important; + } + .pb-xxl-1 { + padding-bottom: 0.25rem !important; + } + .pb-xxl-2 { + padding-bottom: 0.5rem !important; + } + .pb-xxl-3 { + padding-bottom: 1rem !important; + } + .pb-xxl-4 { + padding-bottom: 1.5rem !important; + } + .pb-xxl-5 { + padding-bottom: 3rem !important; + } + .ps-xxl-0 { + padding-left: 0 !important; + } + .ps-xxl-1 { + padding-left: 0.25rem !important; + } + .ps-xxl-2 { + padding-left: 0.5rem !important; + } + .ps-xxl-3 { + padding-left: 1rem !important; + } + .ps-xxl-4 { + padding-left: 1.5rem !important; + } + .ps-xxl-5 { + padding-left: 3rem !important; + } + .text-xxl-start { + text-align: left !important; + } + .text-xxl-end { + text-align: right !important; + } + .text-xxl-center { + text-align: center !important; + } +} +@media (min-width: 1200px) { + .fs-1 { + font-size: 2.5rem !important; + } + .fs-2 { + font-size: 2rem !important; + } + .fs-3 { + font-size: 1.75rem !important; + } + .fs-4 { + font-size: 1.5rem !important; + } +} +@media print { + .d-print-inline { + display: inline !important; + } + .d-print-inline-block { + display: inline-block !important; + } + .d-print-block { + display: block !important; + } + .d-print-grid { + display: grid !important; + } + .d-print-table { + display: table !important; + } + .d-print-table-row { + display: table-row !important; + } + .d-print-table-cell { + display: table-cell !important; + } + .d-print-flex { + display: flex !important; + } + .d-print-inline-flex { + display: inline-flex !important; + } + .d-print-none { + display: none !important; + } +} +/*# sourceMappingURL=bootstrap.min.css.map */ diff --git a/static/felcloud/website/css/colors/dark.css b/static/felcloud/website/css/colors/dark.css new file mode 100644 index 0000000..e9d5a91 --- /dev/null +++ b/static/felcloud/website/css/colors/dark.css @@ -0,0 +1,301 @@ +/*------------------------------------------------------------------ +Project: Antler - Hosting Provider & WHMCS Template +Description: Antler Responsive Premium Template Designed for all web hosting providers +Author: inebur (Rúben Rodrigues) +Author URI: http://inebur.com/ +Author Envato: https://themeforest.net/user/inebur +Copyright: 2021 inebur +Version: 2.4 + + * Dark Color Skin + -------------------------------------------------------------------*/ + +/* Dark Light */ +svg #svg-ico { + fill: #4c555d; +} +svg #svg-concept { + stroke: #4c555d; +} +.golink { + color: #4c555d !important; + border-bottom: solid 1px #4c555d; +} +.golink:hover { + color: #4c555d !important; +} +.bg-pink { + background-color: #4c555d !important; +} +.c-pink { + color: #4c555d !important; +} +.bb-pink { + border-bottom: solid 1px #4c555d !important; +} +.popover { + border: solid 1px #4c555d; +} +.popover .arrow::before { + border-top-color: #4c555d; +} +.popover .popover-header { + background-color: #4c555d; +} +::selection { + background: #4c555d; +} +.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item a:hover { + color: #4c555d; +} +.nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service + .media-body + a:hover { + color: #4c555d; +} +.megamenu .start-offer .inner { + background-color: #4c555d; +} +.megamenu .service-list .service.special .media-body a:hover { + color: #4c555d; +} +.megamenu .service-list .service .media-body a:hover { + color: #4c555d; +} +.megamenu-list .service-list .service .media-body a:hover { + color: #4c555d; +} +.team .wrapper:hover .team-info .desc { + color: #4c555d; +} +.wpc-cloud-range .noUi-connect { + background-color: #4c555d; +} +.wpc-cloud-range .noUi-tooltip:before { + border-color: #4c555d transparent transparent transparent; +} +.wpc-cloud-range .noUi-tooltip { + background-color: #4c555d; +} +.wpc-cloud-range .noUi-horizontal .noUi-handle { + background-color: #4c555d; +} +.wpc-vps-info .title .info { + color: #4c555d; +} +.fullrock .closer { + color: #4c555d !important; +} +.form-control:focus { + border: solid 1px #4c555d !important; +} +.sec-bg5 { + background-color: #4c555d; +} +.total-grad { + background: linear-gradient(-60deg, #4c555d 0%, #212529 100%) !important; +} +.total-grad-inverse { + background: linear-gradient(240deg, #212529 0%, #4c555d 100%); +} +.total-grad-pink-blue-intense { + background: linear-gradient(240deg, #3f004a 50%, #000000 100%); +} +.total-grad-pink-blue-intensee { + background: linear-gradient(-240deg, #3f004a 50%, #000000 100%); +} + +.menu-wrap.fixed { + background: #33003b; +} +.btn-default-pink { + color: #4c555d; + border: 1px solid #4c555d; +} +.btn-default-pink:hover { + background-color: #4c555d; +} +.btn-default-grad-purple-fill { + background-image: linear-gradient( + to right, + #212529, + #4c555d 40%, + #4c555d 40%, + #212529 + ); +} +.btn-default-grad-purple-fill:hover { + background-image: linear-gradient( + to right, + #212529, + #4c555d 40%, + #4c555d 40%, + #212529 + ); +} +.btn-default-pink-fill { + background-color: #4c555d !important; +} +.owl-theme .owl-dots .owl-dot.active span { + border: solid 1px #4c555d !important; +} +.pricing .wrapper .title { + color: #4c555d; +} +.pricing .list-info { + background-color: #4c555d; +} +.slick #slider .plan-container .title { + color: #4c555d; +} +.tabs-header .btn-secondary:not(:disabled):not(.disabled).active { + background-color: #3e0048 !important; +} +.tabs.offers-tabs .tabs-header .active { + border-left: solid 2px #4c555d; + color: #4c555d; +} +.tabs.offers-tabs .tabs-header .active:hover { + color: #4c555d; +} +.fill-input:focus { + border-color: #4c555d !important; +} +.countdown .wrapper .clock div:first-child { + border: solid 1px #4c555d; + background-color: #4c555d; +} +.accordion.faq .panel-title.active { + border-bottom: solid 1px #4c555d; +} +.blog .sidebar .heading.active { + color: #4c555d; +} +.blog .sidebar .posts .tabs-header li.active { + color: #4c555d; + border-bottom-color: #4c555d; +} +.blog .sidebar .line.active:before { + background-color: #4c555d; +} +.blog .media .media-heading a:hover { + color: #4c555d; +} +.blog .wrap-blog .social-icon i { + color: #4c555d; +} +.blog .sidebar .categories .heading a.active { + color: #4c555d; +} +.blog .sidebar .categories .heading a:after { + color: #4c555d; +} +.blog .sidebar .categories .heading span { + color: #4c555d; +} +.circle-section .title-round { + color: #4c555d; +} +.domain-prices li { + color: #4c555d; +} +.maping .datacenters { + background: #4c555d; +} +.footer .soc-icons i { + color: #4c555d; +} +.included i { + color: #4c555d; +} +.soc-icons-apply span { + color: #4c555d; +} +.bigline { + border: solid 1px #4c555d; +} +.smallline { + border: solid 1px #4c555d; +} +.knowledge a { + color: #4c555d; +} +.godown span { + color: #4c555d; +} +.cd-filter-block input[type="radio"]:checked + label::before, +.cd-filter-block input[type="checkbox"]:checked + label::before { + border: none !important; + box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; + background: white !important; +} +.cd-filter-block select:hover { + border: solid 1px #4c555d !important; +} +.cd-filter-block input:focus, +.cd-filter-block select:focus { + border-color: #4c555d !important; +} +.range-slider-input::-webkit-slider-runnable-track { + background: #4c555d; +} +.range-slider-input::-webkit-slider-thumb { + background: #4c555d; +} +.zoo-content .icoo i { + background-color: #4c555d; +} +.services .service-wrap .pay img { + border: solid 1px #4c555d; +} +.page-item.active .page-link { + background-color: #4c555d !important; + border-color: #4c555d !important; +} +.cd-filter-block input.range-slider-input { + background-color: #3e0048 !important; +} +.range-slider-input::-webkit-slider-thumb { + background-color: #4c555d !important; +} +.range-slider-input::-moz-range-thumb { + background-color: #4c555d !important; +} +/* Dark Dark */ +.bg-purple { + background-color: #212529 !important; +} +.c-purple { + color: #212529 !important; +} +.sec-grad-white-to-purple { + background: linear-gradient(90deg, #fff 70%, #212529 0%) !important; +} +.btn-default-purple { + color: #212529; + border: 1px solid #212529; +} +.btn-default-purple:hover { + background-color: #212529; +} +.btn-default-purple-fill { + background-color: #212529 !important; +} +.pricing .table .title { + color: #212529; +} +.accordion.faq .panel-title.active { + color: #212529 !important; +} +.wpc-vps-info .price-wrap .title { + background-color: #212529; +} +/* Custom Dark */ +.megamenu .start-offer .inner .inner-content { + color: #efefef; +} diff --git a/static/felcloud/website/css/custom.css b/static/felcloud/website/css/custom.css new file mode 100644 index 0000000..3c6ed33 --- /dev/null +++ b/static/felcloud/website/css/custom.css @@ -0,0 +1,1525 @@ +/* ***************************************************** + + ** Custom Stylesheet ** + + Any custom styling you want to apply should be + defined here. + +***************************************************** */ +.elevate { + font-size: 12px; + font-weight: normal; +} + +.nav-sdbar { + position: fixed; + z-index: 10000; + top: 30%; + display: none; +} +.custom { + padding-right: 0 !important ; + padding-left: 0 !important ; +} + +.show { + display: block; +} + +.floating { + padding-bottom: 37px !important ; +} + +/* .nav-sdbar::before { + display: block; + content :" "; + height: 110%; + width: 100%; + background-color: white; + position: absolute; + border-radius: 0 25px 25px 0; + top: -30px; + box-shadow: black ; + left : -70%; + z-index: -1; +} */ +.tg-anim-sdbar { + display: block; + /* opacity: .9; */ + content: " "; + height: 110%; + width: 130%; + /* background: linear-gradient(180deg,#212529 3%,#4c555d 98%); */ + background: white; + position: absolute; + border: 10px solid #fdd700; + border-radius: 0 25px 25px 0; + top: -30px; + box-shadow: black; + left: -90%; + z-index: -1; + box-shadow: 2px 5px 15px 0 rgba(110, 110, 110, 0.1); + animation: 1; +} + +i.title { + margin-bottom: 0; + transform: scale(0.8); + padding: 0 10px 0 10px; +} + +/* .sidebar { + padding: 20px 10px 20px 10px; +} +.nav-item { + padding: 20px; +} */ +.tgmenu { + opacity: 0; + /* color :#fdd700; */ + color: rgb(42, 38, 38); + font-size: large; + font-weight: bold; + left: -25%; +} + +/* .tgmenu:hover{ + opacity: 1; +} */ + +nav a { + color: black; +} + +.sdnvbar { + color: white; + /* color : #fdd700; */ + /* transform: scale(1.6); */ + margin: 0px 0px 30px 30px; + left: -15%; +} +.navCorrection { + background: linear-gradient(-240deg, #3f004a 50%, #000000 100%) !important; +} + +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + /* -webkit-appearance: none; + margin: 0; */ +} +/* .hover-detector{ +position: absolute; +width : 65%; +height: 100%; +z-index: 10000; +opacity: 0; +} */ + +/* .sdnvbar::before { + content: ' '; + background-color: #fdd700; + width: 100%; + height: 100%; + z-index: -1; +} */ + +.sc-anime-change-fw { + animation: fullScale 1s; + animation-fill-mode: forwards; +} + +.sc-anime-change-bw { + animation: fullScale 0.8s; + animation-direction: reverse; + animation-fill-mode: backwards; +} + +@keyframes fullScale { + from { + transform: scale(1); + } + to { + transform: scale(0.8) translate(10%); + } +} + +.tooltip { + position: relative; + display: inline-block; + border-bottom: 1px dotted black; /* If you want dots under the hoverable text */ +} + +/* Tooltip text */ +.tooltip .tooltiptext { + visibility: hidden; + width: 120px; + background-color: black; + color: #fff; + text-align: center; + padding: 5px 0; + border-radius: 6px; + + /* Position the tooltip text - see examples below! */ + position: absolute; + z-index: 1; +} + +/* Show the tooltip text when you mouse over the tooltip container */ +.tooltip:hover .tooltiptext { + visibility: visible; +} + +input[type="range"] { + /* position: absolute; */ +} + +.openstackImg { + align-items: center; +} + +.payment-list li { + cursor: pointer; +} + +.compu { + margin-top: 2em; +} + +.downArrow { + float: right; +} + +.customFlex { + align-items: flex-start !important; + flex-direction: row-reverse !important; + justify-content: space-between !important; + padding: 0 !important; +} +/* fixing responsive console */ +.navbar-fix { + padding-bottom: 15px !important; +} + +@media only screen and (max-width: 768px) { + .navbar-fix { + padding-bottom: 0px !important; + } + #dvid { + display: none; + } + .comp, + .blo { + display: none; + } + + .obj, + .loa, + .floa { + display: none; + } +} + +@media only screen and (min-width: 768px) { + .downArrow { + display: none; + } +} + +.testy { + font-size: 100px; +} + +@media screen and (min-width: 768px) { + .subheading { + max-width: 44%; + } +} +input::-webkit-outer-spin-button, +input::-webkit-inner-spin-button { + /* -webkit-appearance: none; + margin: 0; */ +} + +.nav-sdbar { + transform: scale(0.9); +} +.modified { + transform: scale(0.8) translate(0, -20%); + font-size: small; +} +.mix, +.gap { + width: calc(100% / 4 - (((3 - 1) * 1rem) / 1)); +} +.bdgmod { + font-size: large; + margin-left: 20px; +} +.titletd { + padding: 0px 0px 0px 0px; +} + +.navHome li a:hover { + color: #fdd700; +} + +table.dataTable tbody tr.selected { + background-color: lightblue; +} + +.arabic { + direction: rtl; +} +.arab-Heading { + padding-left: 50%; + display: none !important; +} + +.navCorrection { + background: linear-gradient(-240deg, #3f004a 50%, #000000 100%) !important; +} +.modalCardContent { + width: 1000px !important; + text-align: center; +} +.modalSimple { + margin: 0 28% !important; +} +.panel-right-saas { + max-width: 37% !important; +} +.try-it-panel { + max-width: 16%; +} + +.site-menubar-fold .site-menu > .site-menu-item > .correction-os { + height: 60px; + line-height: 60px; + text-align: center; +} +#ostack-logo { + width: 16px; + margin-right: 12px; +} +.site-menubar-fold + .site-menu + > .site-menu-item + > .correction-os + > #ostack-logo { + width: auto; + margin: auto; + scale: 0.8; +} +@media only screen and (min-width: 768px) and (max-width: 1198px) { + #ostack-logo { + /* scale: 0.28 !important; */ + } +} +@media only screen and (max-width: 768px) { + .cloudLogo { + display: block !important; + } + .projectsButtons { + margin-left: 20px !important; + } + .modal-content { + padding-right: 1.0715rem !important; + padding-left: 1.0715rem !important; + margin-right: auto !important; + margin-left: auto !important; + } + .modalCardContent { + width: 350px !important; + } + #spinnerCompute { + width: 10% !important; + } + .modalSimple { + margin: 1em !important; + } + .modal-dialog { + max-width: 100% !important; + } + .email-text { + min-width: 205px !important; + } + .closeUser { + padding: 0px 25px !important; + } + .titleCalc { + margin: 1em !important; + } + #email-input, + #existed_users { + margin-bottom: 1em !important; + } + #addProjectsModal, + #addGroupUsersModal { + margin: 0 !important; + padding-right: 0px; + } + #added_user_email { + margin-bottom: 1em !important; + } + .usersPanel { + overflow-x: scroll; + } + .panel-right-saas { + max-width: 100% !important; + } + .try-it-panel { + max-width: 100%; + } +} + +.navbar-container { + /* background-color: #263238 !important; */ +} +.blocktable th { + text-align: center !important; +} +.blocktable td { + text-align: center !important; +} + +.priceCalculator thead, +.priceCalculator tbody { + text-align: center !important; + vertical-align: middle !important; +} +.priceCalculator { + max-height: 600px !important; + overflow-y: scroll !important; +} + +.computeTable th, +.floatIpTable th, +.commitsTable th { + text-align: center !important; + vertical-align: middle !important; +} + +.computeTable td, +.floatIpTable td, +.commitsTable td { + text-align: center !important; + vertical-align: middle !important; +} + +.hrSidbar { + border: 1px solid gray; + width: 85%; +} + +.logMenuImg { + margin-top: 5px; + transform: scale(1.5); + margin-top: 0; +} + +.imgFooter { + transform: scale(1.2) translate(-250px, -100px) !important; + opacity: 10% !important; +} + +.footParagraph { + color: white !important; +} +.footer .footer-menu .menu-item a { + color: white !important; +} + +/* .soc-iconsDiv { */ +/* margin: 8% 0 !important; */ +/* } */ +.phonemImg { + width: 8% !important; +} + +.crafted { + color: white; +} + +@media only screen and (max-width: 768px) { + .floatIpImg { + display: none !important ; + } + + .testLoad { + display: block !important; + } + .loadBalDesktop { + display: none !important; + } +} + +.loadBalDesktop:first-child { + padding-left: 6em !important ; +} +.highPerfo { + max-width: 90% !important; +} + +.dropdown-menu { + min-width: 0 !important; +} + +.cloudLogo { + height: 3.286rem; + transform: translateY(-6px); +} +.navLogo { + height: 2.8rem; + transform: translate(6%); +} + +.p-slider__input { + height: 1.625rem; + font-size: 1em; +} + +.inputsVariable { + width: 140px !important; +} + +.mb-2em { + margin-bottom: 2em !important; +} +/* .warningMessage { + color: red; +} + +#displayInput { + background-color: #f1f4f5 !important; + margin-left: 2.5rem; + text-align: center !important; +} +#rangeInput { + cursor: pointer !important; + padding: 0 !important; +} +.font-s { + font-size: 2em !important; +} +@media screen and (max-width: 992px) { + .mobile-space { + margin-bottom: 2em; + } + #displayInput { + margin: 0 !important; + } +} */ + +.pt { + padding: 1.75rem 2.25rem 0 !important; +} + +#instanceNumber, +#objStorNum, +#floatIpNum, +#loadBalNum { + width: 100% !important; + text-align: center !important; + height: 2.5em !important; +} +.wrap { + /* border-radius: 20px !important; */ + /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; */ +} +.padding-2em { + padding: 2em; +} +.padTopBot-0 { + padding-top: 0 !important; + padding-bottom: 0 !important; +} + +.customPanel { + padding: 1em 2em !important; + margin-bottom: 2em !important; +} +.iconCalculator { + color: #74d37e !important; +} +.customHeader { + padding-top: 0 !important; + padding-left: 0 !important; +} +.bord { + box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, + rgba(9, 30, 66, 0.08) 0px 0px 0px 1px !important; + font-size: 21px !important; + text-align: center !important; + border-radius: 20px !important; + height: 220px !important; + max-width: 220px !important; +} + +del { + text-decoration: line-through; +} +.textAlignCenter th, +.za { + text-align: center !important ; +} +.textAlignCenter td { + text-align: center !important; +} + +.padRight { + padding-right: 2em !important; +} + +.paymentPeriod { + /* height: 50px !important; */ + /* max-width: 45% !important; */ + text-align: center !important; + /* padding-top: 15px !important; */ + border-radius: 15px !important; + /* padding: 1em !important; */ + margin-bottom: 1em; + font-size: 18px; + + /* margin-top: 10px !important;dacc */ + /* margin-left: 10px !important; */ + cursor: pointer !important; +} +.Scroll { + height: 500px !important; + overflow-y: auto !important; + padding: 1em !important; +} + +.priceCalculator tbody tr:nth-of-type(odd) { + background-color: rgb(226 243 251 / 30%) !important; +} +.priceCalculator tbody tr:nth-of-type(odd):hover { + background-color: #f3f7f9 !important; +} + +.testTd { + white-space: pre-wrap !important ; +} +.PriceInputs { + padding: 0.5em; +} + +/* #carousele { + display: flex !important; + justify-content: space-between !important; + width: 200px !important; + align-items: center !important; + margin: auto !important; + box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; + padding:1em !important; +} + + +#periods { + list-style: none; + padding: 0; + margin: 0; +} + +#periods li { + font-size: 1.5em; + font-weight: bold; + display: none; +} + +#periods li.visible { + display: block; +} +#prev,#next { + all: unset !important; + cursor: pointer !important; + font-size: 2em !important; +} */ + +#carousele { + display: flex !important; + justify-content: space-between !important; + width: 200px !important; + align-items: center !important; + margin: auto !important; + box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, + rgba(0, 0, 0, 0.06) 0px 1px 2px 0px !important; + padding: 1em !important; +} +.calc { + /* position: fixed; + right:9px; + top:156px; */ + z-index: 1000; + max-width: 13.9% !important ; + padding: 2em 1em 0 1em; + background-color: white; + border-radius: 0.286rem; + box-shadow: 0 1px 1px rgb(0 0 0 / 5%); + padding-bottom: 1em !important; +} + +#prev:hover, +#next:hover { + color: blue; /* Change color on hover */ +} + +#periods { + list-style: none; + padding: 0; + margin: 0; +} + +#periods li { + font-size: 1.5em; + font-weight: bold; + display: none; + animation: fadein 0.5s; +} + +#periods li.visible { + display: block; +} + +#prev, +#next { + all: unset !important; + cursor: pointer !important; + font-size: 2em !important; +} + +@keyframes fadein { + from { + opacity: 0; + } + to { + opacity: 1; + } +} +.pad-2 { + padding: 2em 0em 0em 1.6em !important; + border-radius: 20px !important; +} + +.pos1 { + position: fixed; + top: 156px; + right: 9px; +} +.pos2 { + position: fixed; + top: 84px; + right: 9px; +} + +.iconCalc { + margin-left: 30% !important; +} + +.display-none { + visibility: hidden !important; +} + +.priceModif { + padding-top: 3em !important; +} + +/* testing cards */ +/* background: linear-gradient(-45deg, #fe0847, #feae3f); */ +.carde { + position: relative; + max-width: 300px; + height: auto; + border-radius: 15px; + -webkit-border-radius: 15px; + -moz-border-radius: 15px; + -ms-border-radius: 15px; + -o-border-radius: 15px; + margin: 0 auto; + padding: 40px 20px; + box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2); + transition: 0.5s; + -webkit-transition: 0.5s; + -moz-transition: 0.5s; + -ms-transition: 0.5s; + -o-transition: 0.5s; + overflow: hidden; +} + +.carde:hover { + transform: scale(1.1); + -webkit-transform: scale(1.1); + -moz-transform: scale(1.1); + -ms-transform: scale(1.1); + -o-transform: scale(1.1); +} + +.col-sm-4:nth-child(1) .carde, +.col-sm-4:nth-child(1) .carde .titleCard .fa { + /* background: linear-gradient(-45deg, #263238, #181616); */ + background-color: white; +} + +.col-sm-4:nth-child(2) .carde, +.col-sm-4:nth-child(2) .carde .titleCard .fa { + /* background: linear-gradient(-45deg, #411e4a, #121212); */ + background-color: white; +} + +.col-sm-4:nth-child(3) .carde, +.col-sm-4:nth-child(3) .carde .titleCard .fa { + background: linear-gradient(123deg, #fbff00, #ff8b54); +} + +.carde:before { + content: ""; + position: absolute; + bottom: 0; + left: 0; + width: 100%; + height: 40%; + background: rgba(255, 255, 255, 0.1); + z-index: 1; + transform: skewY(-5deg) scale(1.5); + -webkit-transform: skewY(-5deg) scale(1.5); + -moz-transform: skewY(-5deg) scale(1.5); + -ms-transform: skewY(-5deg) scale(1.5); + -o-transform: skewY(-5deg) scale(1.5); +} + +.titleCard .fa { + /* color: #fff; */ + font-size: 60px; + width: 100px; + height: 100px; + border-radius: 50%; + -webkit-border-radius: 50%; + -moz-border-radius: 50%; + -ms-border-radius: 50%; + -o-border-radius: 50%; + text-align: center; + line-height: 100px; + box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2); +} + +.titleCard h2 { + position: relative; + margin: 10px 0 37px; + padding: 0; + /* color: #fff; */ + font-size: 22px; + z-index: 2; +} + +.price { + position: relative; + z-index: 2; +} + +.price h4 { + margin: 0; + padding: 20px 0; + /* color: #fff; */ + font-size: 20px; + text-align: left; + margin-left: 2em; +} +.icon-svg-cards { + width: 55px !important; +} + +.option { + position: relative; + z-index: 2; +} + +.option ul { + margin: 0; + padding: 0; +} + +.option ul li { + margin: 0 0 10px; + padding: 0; + list-style: none; + color: black; + font-size: 16px; +} + +.carde a { + position: relative; + z-index: 2; + /* background: #fff; */ + color: #262626; + width: 150px; + height: 40px; + line-height: 40px; + border-radius: 40px; + display: block; + text-align: center; + margin: 20px auto 0; + -webkit-border-radius: 40px; + -moz-border-radius: 40px; + -ms-border-radius: 40px; + -o-border-radius: 40px; + font-size: 16px; + cursor: pointer; + /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2); */ +} + +.carde a:hover { + text-decoration: none; +} + +.exclude { + display: none !important; +} + +.price-old { + position: relative; +} +.price-old::before { + content: ""; + position: absolute; + top: 50%; + left: 0; + width: 100%; + height: 2.3px; + background-color: red; + transform: translateY(-50%) rotate(-45deg); +} +.mb1em { + margin-bottom: 1em !important; + font-weight: normal !important; + color: black; +} +.a-periods { + color: black !important; + background-color: #ffe200 !important; + border-radius: 10px !important; +} +.a-periods-yearly { + color: black !important; + border: 2px solid black; + border-radius: 10px !important; +} + +/* changing sideBar theme color */ +.updateNewColor { + background: linear-gradient(-240deg, #3f004a 50%, #000000 100%) !important; + top: 66px !important; + height: 100% !important; +} +.btn-outline-info, +.btn-outline.btn-info { + color: #9413ab !important; + background-color: transparent; + border-color: #9413ab !important; +} +.btn-outline.btn-info:hover { + background-color: #ebebeb !important; +} +.btn-outline.btn-info:focus { + background-color: #ebebeb !important; +} +a.list-group-item.active, +a.list-group-item.active:focus, +a.list-group-item.active:hover { + color: #fff !important; + background-color: #482252 !important; +} +#btnDelete { + background: #ed213a; /* fallback for old browsers */ + background: -webkit-linear-gradient( + to right, + #93291e, + #ed213a + ); /* Chrome 10-25, Safari 5.1-6 */ + background: linear-gradient( + to right, + #93291e, + #ed213a + ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */ + color: white; + border-radius: 20px; + padding: 1em; + font-weight: bold; +} +/* end changing theme */ + +.list-group-item-dark { + background-color: #3f004a; +} +.list-group-item { + border-radius: 20px !important; +} +.calcChoices { + box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25) !important ; + border-radius: 20px !important; + background-color: #fbd713 !important ; + color: #33003b !important ; + height: 50px !important ; +} +#chatPanel { + position: fixed; + top: 14%; + right: 1%; + width: 24.5%; + box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, + rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; +} + +@media only screen and (max-width: 768px) { + .example-wrap { + margin-bottom: 20px !important; + } + .tab-panel-voucher { + overflow-x: scroll !important; + } + #resolvticketbtn, + #closeticketbtn { + font-size: 10px !important; + padding: 6px !important; + } + .calcChoices { + margin-bottom: 1em !important; + } + #chatPanel { + position: static; /* Sets position to initial value */ + width: 91% !important; + margin: 1em !important; + } + .navLogo { + display: none !important; + } + .saas-correction { + margin: 0em 2em !important; + } + .slider { + margin: 0px 0px 30px !important; + } + .saas-tab-panel { + overflow-y: scroll !important; + } + .openstackImg { + width: 50%; + align-items: center; + } + .logo-menu { + margin-left: 2em; + } + .contact { + margin-bottom: 2em; + } + .filerUl { + display: flex !important; + flex-wrap: wrap !important; + } + .pos1, + .pos2 { + position: inherit !important; + } + .calc { + max-width: 100% !important; + } +} + +th { + color: #3f004a !important; +} + +input.inputPacks[type="radio"] { + visibility: hidden !important; +} + +/* .carde input[type="radio"]:checked + .carde { + border: 2px solid blue !important; +} */ + +.carde.selectedCard { + border: 1px solid blue !important; +} +.labelCards { + width: 300px !important; +} +.site-menu-item { + cursor: pointer !important; +} +.preventDoubleClick { + pointer-events: none !important; + cursor: pointer !important; + background-color: rgb(73 19 82 / 80%) !important; +} +/* .allLinks:hover { + cursor: pointer !important; +} */ +div.dataTables_wrapper div.dataTables_paginate { + margin: 0; + text-align: right; + white-space: nowrap; + display: flex; + justify-content: center; + align-items: center; +} + +.cloud { + position: relative; + display: inline-block; + margin: 0 5px; + width: 30px; + height: 30px; + background-color: #11c26d; + border-radius: 50%; + box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); + transition: all 0.3s ease-in-out; +} +/* .cloud:before { + content: ""; + position: absolute; + top: -10px; + left: 5px; + width: 15px; + height: 15px; + border-radius: 50%; + background-color: #fff; + box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); + transform: rotate(-45deg); +} */ +/* .cloud:after { + left: -8px; + transform: rotate(45deg); +} */ +.cloud:hover { + background-color: #3f004a; + cursor: pointer; +} +.cloud:hover .content { + display: block; +} + +.content { + position: absolute; + top: 50%; + left: -60px; + width: 160px; + transform: translateY(-50%); + display: none; + padding: 10px; + background-color: #853897; + color: white; + border-radius: 5px; + box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); + font-size: 14px; + line-height: 1.5; + text-align: center; +} +.flavorCarac { + position: absolute; + width: 90px; + transform: translate(-5.8%, -60%); + display: none; + padding: 5px; + background-color: #853897; + color: white; + border-radius: 5px; + box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1); + font-size: 14px; + line-height: 1.5; + text-align: center; +} + +.flavorB:hover .flavorCarac { + display: block; +} +.panel-group .panel-title[aria-expanded="false"]::before { + opacity: 1 !important; +} +.projectsTable th, +.projectsTable tr, +.addUsersTable tr { + text-align: center !important; +} + +.usersTable th, +.addUsersTable th, +.usersTable tr { + text-align: center !important; +} + +.headLabels { + font-size: 1.2em; + color: black; +} + +.email-container, +.groups-container { + margin-top: 0.45em; +} +.email-input { + display: inline-block; + position: relative; + margin-right: 5px; +} +.email-text { + width: auto; + display: inline-block; + background-color: #f9f9f9; + padding: 6px 0px 6px 16px; + border: none; + color: #5a5a5a; + border-radius: 7px; + min-width: 218px; +} +.delete-button { + top: -8px; + right: 0; + cursor: pointer; + color: red; + font-weight: bold; + border: none; + background: none; +} +.rangeProject { + width: 100% !important; +} +.tooltipe, +.labelQuota { + color: black !important; +} +.pad-customize { + padding-top: 1.3em !important; +} +.pad1em { + padding-top: 1em !important; +} +.dropdown-menu.dropleft { + right: auto; + left: 100%; + transform: translateX(10px); +} +/* Common styles for both toggleDisable and toggleDisableGroup */ +input.toggleDisable[type="checkbox"], +input.toggleDisableGroup[type="checkbox"], +input.toggleDisableGroupVoucher[type="checkbox"], +input.toggleCustomerPayment[type="checkbox"], +input.toggleDisableGroupCompute[type="checkbox"] { + position: relative; + width: 40px; + height: 20px; + -webkit-appearance: none; + background: #c6c6c6; + outline: none; + border-radius: 20px; + box-shadow: inset 0 0 5px rgba(255, 0, 0, 0.2); + transition: 0.7s; + cursor: pointer; +} + +/* Checked state styles for both toggleDisable and toggleDisableGroup */ +input.toggleDisable:checked[type="checkbox"], +input.toggleDisableGroup:checked[type="checkbox"], +input.toggleDisableGroupVoucher:checked[type="checkbox"], +input.toggleCustomerPayment:checked[type="checkbox"], +input.toggleDisableGroupCompute:checked[type="checkbox"] { + background: #03a9f4; +} + +/* Styles for the slider thumb for both toggleDisable and toggleDisableGroup */ +input.toggleDisable[type="checkbox"]:before, +input.toggleDisableGroup[type="checkbox"]:before, +input.toggleDisableGroupVoucher[type="checkbox"]:before, +input.toggleCustomerPayment[type="checkbox"]:before, +input.toggleDisableGroupCompute[type="checkbox"]:before { + content: ""; + position: absolute; + width: 20px; + height: 20px; + border-radius: 20px; + top: 0; + left: 0; + background: #ffffff; + transform: scale(1.1); + box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); + transition: 0.5s; +} + +/* Checked state styles for the slider thumb for both toggleDisable and toggleDisableGroup */ +input.toggleDisable:checked[type="checkbox"]:before, +input.toggleDisableGroup:checked[type="checkbox"]:before, +input.toggleDisableGroupVoucher:checked[type="checkbox"]:before, +input.toggleCustomerPayment:checked[type="checkbox"]:before, +input.toggleDisableGroupCompute:checked[type="checkbox"]:before { + left: 20px; +} + +*::-webkit-scrollbar-track, +*::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); + border-radius: 10px; + background-color: #f5f5f5; +} + +*::-webkit-scrollbar, +*::-webkit-scrollbar { + width: 8px; + background-color: #f5f5f5; +} + +*::-webkit-scrollbar-thumb, +*::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); + background-color: #a3a3a3; +} +.tickettab th, +.tickettab td { + text-align: center; + vertical-align: middle; + cursor: pointer !important; +} +.chat-wrapper, +.chatAgent { + max-height: 440px; + min-height: 440px; + overflow-y: auto; + border-radius: 8px; + box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px; +} + +#supportdiscussion { + background: white; +} +.chat-content { + border-radius: 0px 20px 0 20px; + max-width: 95%; + word-wrap: break-word; + background-color: #fbd713; + color: #33003b; +} +.chat-time { + color: #33003b; +} +.chat-content::before { + border-left-color: #fbd713; +} + +.chat-left .chat-content { + color: white; + background-color: #873f93; +} + +.btnVouchers { + scale: 0.9; + height: 35px; +} + +.discount { + display: none !important; +} + +@keyframes checkmark { + 0% { + opacity: 0; + transform: scale(0.6); + } + 100% { + opacity: 1; + transform: scale(1); + } +} + +.copy-icon { + cursor: pointer; +} + +.copy-icon i { + display: inline-block; +} + +.copied .copy-icon i.fa-copy { + display: none; +} + +.copied .copy-icon i.fa-check { + display: inline-block; + color: green; + animation: checkmark 0.3s ease-in-out; +} +.copy-icon { + cursor: pointer; + position: relative; +} + +.copy-icon::after { + content: attr(data-tooltip); + display: none; + position: absolute; + top: -30px; + left: 50%; + transform: translateX(-50%); + padding: 5px 10px; + background-color: #333; + color: #fff; + font-size: 12px; + border-radius: 4px; + white-space: nowrap; +} + +.copy-icon:hover::after { + display: inline-block; +} + +.copied .copy-icon::after { + content: "Copied!"; +} + +.hidden-text { + color: transparent !important; +} + +#paymentinit { + margin: 1em !important; +} + +.pricingTable th, +.pricingTable td, +.pricingTableBs th, +.pricingTableBs td, +.pricingTableNt th, +.pricingTableNt td, +.pricingTableLb th, +.pricingTableLb td, +.allPayTable th, +.SaaSTable th, +.SaaSTable td, +.payMethTable th, +.payMethTable td, +.voucherTable th, +.voucherTable td, +.customerTable th, +.customerTable td, +.invoicesTable th, +.invoicesTable td, +.allPostPaidTable th, +.allPostPaidTable td, +.currencyTable th, +.currencyTable td { + text-align: center !important; + vertical-align: middle !important; +} + +#lastStep { + font-size: 1.5em !important; +} +.tdPay { + text-align: center; + vertical-align: middle; +} + +.card-marg { + margin: 3em; + height: 180px; +} +.cardImg { + max-width: 100%; + max-height: 100%; +} + +/* Add this CSS to your stylesheet */ +.tooltipRenew-container { + position: relative; + display: inline-block; +} + +.tooltipRenew { + display: none; + position: absolute; + background-color: #333; + color: #fff; + padding: 5px; + border-radius: 5px; + top: 50%; + transform: translate(5px, -50%); +} + +.tooltipRenew-container:hover .tooltipRenew { + display: block; +} + +.imgSaaS { + aspect-ratio: 3/2 !important; + object-fit: contain !important; +} + +.btnSaaS { + background-color: #78278b !important; +} +.nx-page { + opacity: 0; + visibility: hidden; + transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out; +} + +.nx-page.shown { + opacity: 1; + visibility: visible; +} + +#lastStep { + color: #482252 !important; +} + +.mb-2em { + margin-bottom: 2em; +} + +.wizardStyle { + box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, + rgba(9, 30, 66, 0.13) 0px 0px 1px 1px; + margin-bottom: 1em; + padding: 2em; +} +.mb-3em { + margin-bottom: 2.8em !important; +} +.reduceWidth { + width: 70%; +} + +/* .pieSpan { + font-size: 1px; +} */ +.jqstooltip { + height: 50px; + width: 120px; +} + +.jqsfield { + font-size: 14px !important; +} + +.keyTabSpark { + background-color: #78278b; + color: #78278b; + font-size: 10px; +} + +#DataTables_Table_2_previous, +#DataTables_Table_2_next { + display: none !important; +} + +.z-index { + z-index: 9999; +} + +.hamburger { + font-size: 18px !important; +} +.site-menu-sub { + background: linear-gradient(-240deg, #3f004a 50%, #210c24 100%) !important ; + z-index: 99999; +} +#pageSkylineCorrection { + transition: opacity 0.3s ease !important; +} diff --git a/static/felcloud/website/css/filter.css b/static/felcloud/website/css/filter.css new file mode 100644 index 0000000..dde216d --- /dev/null +++ b/static/felcloud/website/css/filter.css @@ -0,0 +1,781 @@ +/* -------------------------------- +Main Components +-------------------------------- */ +.cd-header { + position: relative; + height: 150px; + background-color: #331d35; +} +.cd-header h1 { + color: #ffffff; + line-height: 150px; + text-align: center; + font-size: 2.4rem; + font-weight: 300; +} +@media only screen and (min-width: 1170px) { + .cd-header { + height: 180px; + } + .cd-header h1 { + line-height: 180px; + } +} +.cd-main-content:after { + content: ""; + display: table; + clear: both; +} +.cd-main-content.is-fixed .cd-tab-filter-wrapper { + position: fixed; + top: 0; + left: 0; + width: 100%; +} +.cd-main-content.is-fixed .cd-gallery { + padding-top: 76px; +} +.cd-main-content.is-fixed .cd-filter { + position: fixed; + height: 100vh; + overflow: hidden; +} +.cd-main-content.is-fixed .cd-filter-trigger { + position: fixed; +} +@media only screen and (min-width: 768px) { + .cd-main-content.is-fixed .cd-gallery { + padding-top: 90px; + } +} +@media only screen and (min-width: 1170px) { + .cd-main-content.is-fixed .cd-gallery { + padding-top: 100px; + } +} + +/* -------------------------------- +xtab-filter +-------------------------------- */ +.cd-tab-filter-wrapper { + background-color: #ffffff; + box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); + z-index: 1; +} +.cd-tab-filter-wrapper:after { + content: ""; + display: table; + clear: both; +} +.cd-tab-filter { + /* tabbed navigation style on mobile - dropdown */ + position: relative; + height: 50px; + width: 140px; + margin: 0 auto; + z-index: 1; +} +.cd-tab-filter::after { + /* small arrow icon */ + content: ""; + position: absolute; + right: 14px; + top: 50%; + bottom: auto; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); + display: inline-block; + width: 16px; + height: 16px; + background: url("../img/filter/cd-icon-arrow.svg") no-repeat center center; + -webkit-transition: all 0.3s; + -moz-transition: all 0.3s; + transition: all 0.3s; + pointer-events: none; +} +.cd-tab-filter ul { + position: absolute; + top: 0; + left: 0; + background-color: #ffffff; + box-shadow: inset 0 -2px 0 #a3d133; +} +.cd-tab-filter li { + display: none; +} +.cd-tab-filter li:first-child { + /* this way the placehodler is alway visible */ + display: block; +} +.cd-tab-filter a { + display: block; /* set same size of the .cd-tab-filter */ + height: 50px; + width: 140px; + line-height: 50px; + padding-left: 14px; +} +.cd-tab-filter a.selected { + background: #a3d133; + color: #ffffff; +} +.cd-tab-filter.is-open::after { + /* small arrow rotation */ + -webkit-transform: translateY(-50%) rotate(-180deg); + -moz-transform: translateY(-50%) rotate(-180deg); + -ms-transform: translateY(-50%) rotate(-180deg); + -o-transform: translateY(-50%) rotate(-180deg); + transform: translateY(-50%) rotate(-180deg); +} +.cd-tab-filter.is-open ul { + box-shadow: inset 0 -2px 0 #a3d133, 0 2px 10px rgba(0, 0, 0, 0.2); +} +.cd-tab-filter.is-open ul li { + display: block; +} +.cd-tab-filter.is-open .placeholder a { + /* reduces the opacity of the placeholder on mobile when the menu is open */ + opacity: 0.4; +} +@media only screen and (min-width: 768px) { + .cd-tab-filter { + /* tabbed navigation style on medium devices */ + width: auto; + cursor: auto; + } + .cd-tab-filter::after { + /* hide the arrow */ + display: none; + } + .cd-tab-filter ul { + background: transparent; + position: static; + box-shadow: none; + text-align: center; + } + .cd-tab-filter li { + display: inline-block; + } + .cd-tab-filter li.placeholder { + display: none !important; + } + .cd-tab-filter a { + display: inline-block; + padding: 0 1em; + width: auto; + color: #9a9a9a; + text-transform: uppercase; + font-weight: 700; + font-size: 1.3rem; + } + .no-touch .cd-tab-filter a:hover { + color: #a3d133; + } + .cd-tab-filter a.selected { + background: transparent; + color: #a3d133; /* create border bottom using box-shadow property */ + box-shadow: inset 0 -2px 0 #a3d133; + } + .cd-tab-filter.is-open ul li { + display: inline-block; + } +} +@media only screen and (min-width: 1170px) { + .cd-tab-filter { + /* tabbed navigation on big devices */ + width: 100%; + float: right; + margin: 0; + -webkit-transition: width 0.3s; + -moz-transition: width 0.3s; + transition: width 0.3s; + } + .cd-tab-filter.filter-is-visible { + /* reduce width when filter is visible */ + width: 80%; + } +} + +/* -------------------------------- +xgallery +-------------------------------- */ +.cd-gallery { + padding: 26px 5%; + width: 100%; +} +.cd-gallery li { + margin-bottom: 1.6em; + box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); + display: none; +} +.cd-gallery li.gap { + /* used in combination with text-align: justify to align gallery elements */ + opacity: 0; + height: 0; + display: inline-block; +} +.cd-gallery img { + display: block; + width: 100%; +} +.mixcontainer .cd-fail-message { + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + border-radius: 15px; + background: #fff; + padding: 30px; + text-align: center; + display: none; +} +.mixcontainer .sec-main .cd-fail-message { + box-shadow: none; + padding: 30px 0px 0px 0px; +} +.mixitup-container-failed .cd-fail-message { + width: 100%; + display: inline-block !important; +} +@media (max-width: 767px) { + .mixitup-container-failed .cd-fail-message { + margin-bottom: 80px; + } +} +@media only screen and (min-width: 768px) { + .cd-gallery { + padding: 40px 3%; + } + .cd-gallery ul { + text-align: justify; + } + .cd-gallery ul:after { + content: ""; + display: table; + clear: both; + } + .cd-gallery li { + width: 48%; + margin-bottom: 2em; + } +} +@media only screen and (min-width: 1170px) { + .cd-gallery { + padding: 50px 2%; + float: right; + -webkit-transition: width 0.3s; + -moz-transition: width 0.3s; + transition: width 0.3s; + } + .cd-gallery li { + width: 23%; + } + .cd-gallery.filter-is-visible { + /* reduce width when filter is visible */ + width: 80%; + } +} + +/* -------------------------------- +xfilter +-------------------------------- */ +.cd-filter { + position: absolute; + top: 0; + left: 0; + width: 280px; + background: #ffffff; + box-shadow: 4px 4px 20px transparent; + z-index: 2; /* Force Hardware Acceleration in WebKit */ + -webkit-transform: translateZ(0); + -moz-transform: translateZ(0); + -ms-transform: translateZ(0); + -o-transform: translateZ(0); + transform: translateZ(0); + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + -webkit-transform: translateX(-100%); + -moz-transform: translateX(-100%); + -ms-transform: translateX(-100%); + -o-transform: translateX(-100%); + transform: translateX(-100%); + -webkit-transition: -webkit-transform 0.3s, box-shadow 0.3s; + -moz-transition: -moz-transform 0.3s, box-shadow 0.3s; + transition: transform 0.3s, box-shadow 0.3s; +} +.cd-filter .cd-close { + position: absolute; + top: 0px; + right: 5px; + height: 45px; + line-height: 45px; + width: 45px; + color: #414142; + font-size: 1.3rem; + text-align: center; + background: #fed800; + opacity: 0; + font-size: 20px !important; + border-radius: 50px; + box-shadow: 3px 1px 5px rgba(0, 0, 0, 0.1); + -webkit-transition: opacity 0.3s; + -moz-transition: opacity 0.3s; + transition: opacity 0.3s; + z-index: 3; +} +.no-touch .cd-filter .cd-close:hover { + background: #32255f; +} +.cd-filter.filter-is-visible { + -webkit-transform: translateX(0); + -moz-transform: translateX(0); + -ms-transform: translateX(0); + -o-transform: translateX(0); + transform: translateX(0); + box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.2); +} +.cd-filter.filter-is-visible .cd-close { + opacity: 1; +} +@media only screen and (min-width: 1170px) { + .cd-filter { + width: 20%; + } + .cd-filter form { + padding: 70px 10%; + } +} +.cd-filter-trigger { + position: absolute; + top: 0; + left: 0; + line-height: 50px; + width: 60px; /* image replacement */ + overflow: hidden; + text-indent: 100%; + color: transparent; + white-space: nowrap; + z-index: 3; +} +.cd-filter-trigger.filter-is-visible { + pointer-events: none; +} +@media only screen and (min-width: 1170px) { + .cd-filter-trigger { + width: auto; + text-indent: 0; + color: #9a9a9a; + font-size: 1.3rem; + font-weight: 700; + padding-left: 24px; + background-position: left center; + -webkit-transition: color 0.3s; + -moz-transition: color 0.3s; + transition: color 0.3s; + } + .no-touch .cd-filter-trigger:hover { + color: #a3d133; + } + .cd-filter-trigger.filter-is-visible, + .cd-filter-trigger.filter-is-visible:hover { + color: #ffffff; + } +} + +/* -------------------------------- +xcustom form elements +-------------------------------- */ +.cd-filter-block { + position: relative; +} +.cd-filter-block h4 { + /* filter block title */ + position: relative; + margin-bottom: 5px; + padding: 10px 0 10px 20px; + color: #9a9a9a; + text-transform: uppercase; + font-weight: 700; + font-size: 1.3rem; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + cursor: pointer; +} +.no-touch .cd-filter-block h4:hover { + color: #a3d133; +} +.cd-filter-block h4::before { + /* arrow */ + font-family: "Font Awesome 5 Free"; + content: "\f107"; + position: absolute; + left: 0; + top: 17px; + width: 16px; + height: 16px; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); + -webkit-transition: -webkit-transform 0.3s; + -moz-transition: -moz-transform 0.3s; + transition: transform 0.3s; +} +.cd-filter-block h4.closed::before { + -webkit-transform: translateY(-50%) rotate(-90deg); + -moz-transform: translateY(-50%) rotate(-90deg); + -ms-transform: translateY(-50%) rotate(-90deg); + -o-transform: translateY(-50%) rotate(-90deg); + transform: translateY(-50%) rotate(-90deg); +} +.cd-filter-block input, +.cd-filter-block select, +.cd-filter-block .radio-label::before, +.cd-filter-block .checkbox-label::before { + /* shared style for input elements */ + font-family: "Open Sans", sans-serif; + border-radius: 0; + background-color: #ffffff; + border: none; +} +.cd-filter-block input, +.cd-filter-block select { + width: 100%; + padding: 15px 60px 15px 30px; + border-radius: 50px; + font-size: 14px; + cursor: pointer; + background-color: #ffffff !important; + border: solid 1px #fcb813 !important; + -webkit-appearance: none; + -moz-appearance: none; + -ms-appearance: none; + -o-appearance: none; + appearance: none; + box-shadow: none; +} +.cd-filter-block input:hover, +.cd-filter-block select:hover { + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.cd-filter-block label i { + font-size: 20px; + color: #d8d8d8; + top: 42px; + right: 40px; + position: absolute; +} +.cd-filter-block input:focus, +.cd-filter-block select:focus { + outline: none; + background-color: #ffffff; +} +.cd-filter-block input { + /* custom style for the search element */ + border-color: transparent; + background-color: #e6e6e6; /* prevent jump - ios devices */ +} +.cd-filter-block input::-webkit-search-cancel-button { + display: none; +} +.cd-filter-block .cd-select { + /* select element wrapper */ + position: relative; +} +.cd-filter-block .cd-select::after { + /* switcher arrow for select element */ + content: ""; + position: absolute; + z-index: 1; + right: 30px; + top: 27px; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); + display: block; + width: 16px; + height: 16px; + background: url("../img/filter/cd-icon-arrow.svg") no-repeat center center; + pointer-events: none; +} +.cd-filter-block select::-ms-expand { + display: none; +} +.cd-filter-block .list li { + position: relative; + margin-bottom: 0.8em; +} +.cd-filter-block .list li:last-of-type { + margin-bottom: 0; + list-style: none; +} +.cd-filter-block input[type="radio"], +.cd-filter-block input[type="checkbox"] { + /* hide original check and radio buttons */ + position: absolute; + left: 0; + top: 0; + margin: 0; + padding: 0; + opacity: 0; + z-index: 2; +} +.cd-filter-block .checkbox-label, +.cd-filter-block .radio-label { + padding-left: 24px; + font-size: 1.4rem; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.cd-filter-block .checkbox-label::before, +.cd-filter-block .checkbox-label::after, +.cd-filter-block .radio-label::before, +.cd-filter-block .radio-label::after { + /* custom radio and check boxes */ + content: ""; + display: block; + position: absolute; + top: 50%; + -webkit-transform: translateY(-50%); + -moz-transform: translateY(-50%); + -ms-transform: translateY(-50%); + -o-transform: translateY(-50%); + transform: translateY(-50%); +} +.cd-filter-block .checkbox-label::before, +.cd-filter-block .radio-label::before { + width: 19px; + height: 18px; + margin-left: 0; +} +.cd-filter-block .checkbox-label::after, +.cd-filter-block .radio-label::after { + /* check mark - hidden */ + display: none; +} +.cd-filter-block .checkbox-label::after { + /* check mark style for check boxes */ + width: 16px; + height: 16px; + /* background: url("../img/filter/cd-icon-check.svg") no-repeat center center; */ +} +.cd-filter-block .radio-label::before, +.cd-filter-block .radio-label::after { + border-radius: 50%; +} +.cd-filter-block .radio-label::after { + /* check mark style for radio buttons */ + width: 10px; + height: 10px; + background: linear-gradient(0deg, #fcb813 45.31%, #fcdb26 100%) !important; + left: 5px; + border: 2px solid black; +} +.cd-filter-block input[type="radio"]:checked + label::before, +.cd-filter-block input[type="checkbox"]:checked + label::before { + border-color: #a3d133; + background-color: #a3d133; +} +.cd-filter-block input[type="radio"]:checked + label::after, +.cd-filter-block input[type="checkbox"]:checked + label::after { + display: block; + /* background-color: red; */ +} +#ex1Slider .slider-selection { + background: #bababa; +} +.tooltip.in { + filter: alpha(opacity=90); + opacity: 0.9; +} +.tooltip.top .tooltip-arrow { + bottom: -5px; + left: 50%; + margin-left: -5px; + border-width: 5px 5px 0; + border-top-color: #000; +} +.tooltip-arrow { + position: absolute; + width: 0; + height: 0; +} +ol, +ul { + list-style: none; +} +blockquote, +q { + quotes: none; +} +blockquote:before, +blockquote:after, +q:before, +q:after { + content: ""; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} + +/* -------------------------------- +Custom +-------------------------------- */ +.cd-gallery { + padding: 50px 0px 0px 0px; +} +.cd-gallery li { + box-shadow: none; +} +.cd-gallery .wrapper .title { + font-size: 18px; + font-family: "Open Sans"; +} +.cd-gallery.domains .wrapper .title { + font-size: 32px; + font-family: "Open Sans"; +} +.cd-tab-filter a.selected { + border: none !important; + background: #fdd700 !important; + color: #fff !important; + box-shadow: none !important; +} +.cd-tab-filter a.selected:hover { + text-transform: none !important; + text-decoration: none !important; +} +.cd-tab-filter a { + text-transform: none; + font-size: 15px !important; + font-family: "Open Sans"; + color: #808080; +} +.no-touch .cd-tab-filter a:hover { + text-decoration: none !important; +} +.no-touch .cd-filter .cd-close:hover { + background-color: #313131 !important; + text-decoration: none !important; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.cd-filter.filter-is-visible { + font-family: "Open Sans"; + box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.1); +} +.cd-filter-block h4 { + text-transform: capitalize !important; + font-weight: 600 !important; + font-size: 16px !important; + color: #212122 !important; +} +.cd-filter-block .cd-filter-content input[type="search"] { + border: solid 1px #e0e0e0; + font-size: 14px !important; + background: transparent; +} +.cd-filter-block .cd-filter-content { + padding: 0px; +} +.cd-filter-block .checkbox-label::before, +.cd-filter-block .radio-label::before { + border: none; + box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; +} +.cd-filter-block .checkbox-label, +.cd-filter-block .radio-label { + position: relative; + display: grid !important; + font-size: 16px !important; + color: #000; +} +.action-content { + position: relative; +} +.action { + bottom: 0; + right: 0; + top: 0 !important; + left: 0; + position: absolute; + display: inline-block; + height: 100%; + border-radius: 15px; + background: rgba(0, 0, 0, 0.7); + top: 0px; + text-align: center; + opacity: 0; + transition: all 0.3s; + z-index: 1; +} +.action:hover { + opacity: 1; +} +.action a { + margin-right: 20px; + font-size: 16px; + color: #fff; +} +.action a:last-child { + margin-right: 0px; +} +.action a:hover { + color: #fdd700; + text-decoration: none; +} +.action a i { + color: #fff; + font-size: 32px; + padding: 0px; +} +.action a i:hover { + color: #fdd700; + text-decoration: none; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.action .metatag { + position: relative; + top: 50%; + -webkit-transform: translateY(-50%); + -ms-transform: translateY(-50%); + transform: translateY(-50%); +} +.action .rating { + font-size: 24px; + padding-top: 15px; + width: 100%; +} +.action .rating i { + font-size: 18px; + color: #808080; + padding: 2px; +} +.action .rating i:hover { + color: #fdd700; + text-decoration: none; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} diff --git a/static/felcloud/website/css/style.min.css b/static/felcloud/website/css/style.min.css new file mode 100644 index 0000000..7218cdb --- /dev/null +++ b/static/felcloud/website/css/style.min.css @@ -0,0 +1,6319 @@ +html { + overflow-x: hidden; +} +body { + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; + background-color: #f6f6f6; + font-family: "Open Sans", sans-serif; +} +a { + text-decoration: none; +} +.pb-80 { + padding-bottom: 80px !important; +} +.pb-100 { + padding-bottom: 100px !important; +} +.pt-35 { + padding-top: 35px !important; +} +.pt-80 { + padding-top: 80px !important; +} +.pt-150 { + padding-top: 150px !important; +} +.mt-50 { + margin-top: 50px !important; +} +.mt-80 { + margin-top: 80px !important; +} +.mt-120 { + margin-top: 120px !important; +} +.mb-80 { + margin-bottom: 80px !important; +} +.mb-100 { + margin-bottom: 100px !important; +} +.bg-yellow { + background-color: #fdd700 !important; + color: #fff !important; +} +.bg-pink { + color: #fff !important; +} +.bg-rgba5 { + background: rgba(0, 0, 0, 0.5) !important; +} +.bg-rgba3 { + background: rgba(0, 0, 0, 0.3) !important; +} +.bg-grey { + background-color: #4c4a4a !important; + color: #fff !important; +} +.bg-purple { + color: #fff !important; +} +.c-yellow { + color: #fdd700 !important; +} +.c-grey-light { + color: #aaa !important; +} +.c-grey { + color: #4c4a4a !important; +} +.c-black { + color: #000 !important; +} +.ltgh { + text-decoration: line-through; +} +.gocheck { + font-size: 18px; +} +.golink { + font-family: "Open Sans" !important; + background-color: transparent; + cursor: pointer !important; + padding: 2px 0; + border: none; + outline: 0; + font-weight: 300; +} +.golink:hover { + cursor: pointer !important; + border: transparent !important; + text-decoration: none !important; +} +.db { + display: block !important; +} +.tooltip { + z-index: 999; +} +.b-radius15 { + border-radius: 15px; +} +.overlay { + position: relative; +} +.overlay:before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + background-color: rgba(0, 0, 0, 0.7); +} +.overlay-video { + position: relative; +} +.overlay-video:before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + z-index: 0; + background-color: rgba(0, 0, 0, 0.7); +} +.overlay-image-grad:before { + content: ""; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; + width: 100%; + height: 100%; + opacity: 0.7; + background: linear-gradient(240deg, #000 50%, #3f004a 100%); +} +.full { + -webkit-background-size: cover; + -moz-background-size: cover; + -o-background-size: cover; + background-size: cover; + background-position: center; + background-repeat: no-repeat; +} +.exapath { + background-image: url(../patterns/exapath.svg); + background-repeat: repeat; +} +.cpupath { + background-image: url(../patterns/cpupath.svg); + background-repeat: repeat; +} +.motpath { + background-image: url(../patterns/motpath.svg); + background-repeat: repeat; +} +.promopath { + background-image: url(../patterns/promopath.svg); + background-repeat: repeat; +} +.exapath-w { + background-image: url(../patterns/exapath-w.svg); + background-repeat: repeat; +} +.cpupath-w { + background-image: url(../patterns/cpupath-w.svg); + background-repeat: repeat; +} +.motpath-w { + background-image: url(../patterns/motpath-w.svg); + background-repeat: repeat; +} +.promo-w { + background-image: url(../patterns/promo-w.svg); + background-repeat: repeat; +} +.item1 { + background-image: url(../img/topbanner01.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item2 { + background-image: url(../img/topbanner02.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item3 { + background-image: url(../img/topbanner03.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item4 { + background-image: url(../img/topbanner04.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item5 { + background-image: url(../img/topbanner05.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item6 { + background-image: url(../img/topbanner06.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item7 { + background-image: url(../img/topbanner07.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item8 { + background-image: url(../img/topbanner08.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item9 { + background-image: url(../img/topbanner09.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item10 { + background-image: url(../img/topbanner10.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item11 { + background-image: url(../img/topbanner11.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item12 { + background-image: url(../img/topbanner12.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item13 { + background-image: url(../img/topbanner13.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item14 { + background-image: url(../img/topbanner14.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item15 { + background-image: url(../img/topbanner15.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item16 { + background-image: url(../img/topbanner16.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.item17 { + background-image: url(../img/topbanner17.jpg); + background-repeat: no-repeat; + background-position: top center; + background-size: cover; +} +.img-gaming { + min-height: 100%; + min-width: 1024px; + width: 100%; + height: auto; + top: 0; + left: 0; + position: absolute; +} +.vc-parent { + position: relative; + width: 100%; + height: 100%; + display: table; +} +.vc-child { + display: table-cell; + vertical-align: middle; +} +.popover { + border-radius: 10px !important; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); +} +.popover .popover-header { + padding: 15px; + color: #fff; + border-top-left-radius: 8px; + border-top-right-radius: 8px; +} +.popover .popover-body { + padding: 15px; + line-height: 28px; +} +.mfp-content { + z-index: 999999; +} +.map { + height: 383px; +} +.opa-4 { + opacity: 0.4; +} +.opa-6 { + opacity: 0.6; +} +.opa-8 { + opacity: 0.8; +} +.sec-bx { + box-shadow: none !important; +} +::selection { + color: #fff; + text-shadow: none; +} +.form-control { + padding: 10px 15px; + outline: 0; + border-radius: 10px; + font-size: 15px; + font-family: "Open Sans"; + color: #4c4a4a; + box-shadow: none; +} +.form-control:focus { + border: 0; + outline: 0; + -webkit-box-shadow: none; + box-shadow: none; +} +select.form-contol { + font-size: 15px !important; + font-family: "Open Sans" !important; + border: 0 !important; + outline: solid 1px #efefef !important; +} +input:-webkit-autofill { + background-color: #e6fff3 !important; + background-image: none !important; + color: #000 !important; +} +.f-15 { + font-size: 15px !important; +} +.f-20 { + font-size: 20px !important; +} +.blockquote { + border-left: 2px solid #aaa; + padding-left: 40px; +} +.sec-main { + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + border-radius: 15px; + position: relative; + padding: 80px 80px; +} +.sec-sec { + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + border-radius: 15px; + position: relative; + padding: 30px 30px; +} +.sec-uping { + margin-top: -435px; + position: relative; + z-index: 1; +} +.sec-up { + margin: -100px 0 100px; + position: relative; + z-index: 1; +} +.sec-up-slider { + margin: -120px 0 100px; + position: relative; + z-index: 1; +} +.sec-normal { + margin: 2em 0; + position: relative; + z-index: 0; +} +.sec-bg1 { + background-color: #fff; +} +.sec-bg2 { + background-color: #f6f6f6; +} +.sec-bg3 { + background-color: #15212a; +} +.sec-bg4 { + background-color: #fdd700; +} +.sec-bg6 { + background-color: #1d262f; +} +.sec-grad-yellow-to-grey-left { + background: linear-gradient(90deg, #fdd700 70%, #d9dde4 10%) !important; +} +.sec-grad-yellow-to-grey-right { + background: linear-gradient(90deg, #d9dde4 70%, #fdd700 10%) !important; +} +.sec-grad-yellow-to-white-right { + background: linear-gradient(90deg, #fff 70%, #fdd700 10%) !important; +} +.sec-grad-yellow-to-black-right { + background: linear-gradient(90deg, #15212a 70%, #fdd700 10%) !important; +} +.sec-grad-black-to-yellow-left { + background: linear-gradient(90deg, #fdd700 30%, #15212a 0) !important; +} +.sec-grad-grey-to-grey { + background: linear-gradient(-60deg, #3a6173 0, #16222a 100%) !important; +} +.total-grad { + position: absolute; + display: block; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; +} +.total-grad-inverse { + position: absolute; + display: block; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; +} +.total-grad-grey { + background: linear-gradient(-60deg, #3a6173 0, #16222a 100%) !important; + position: absolute; + display: block; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; +} +.total-grad-grey-inverse { + background: linear-gradient(240deg, #16222a 0, #3a6173 100%); + position: absolute; + display: block; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; +} +.total-grad-pink-blue-intense { + position: absolute; + display: block; + z-index: -1; + top: 0; + right: 0; + bottom: 0; + left: 0; +} +.section-heading { + font-family: "Open Sans Bold"; + font-size: 52px; + margin-top: 0; + margin-bottom: 20px; + text-transform: capitalize; + position: relative; + display: inline-block; + color: #181b22; + line-height: 52px; +} +.section-heading.light { + color: #fff; +} +.section-subheading { + font-family: "Inter", sans-serif; + position: relative; + color: #4c4a4a; + font-size: 18px; + line-height: 34px; +} +.path-left { + position: absolute; + height: 100%; + right: 30%; + top: 0; +} +.path-right { + position: absolute; + height: 100%; + left: 70%; + top: 0; +} +.nav-menu { + position: relative; + width: 100%; + z-index: 9; +} +.nav-menu .navigation { + display: flex; + height: 42px; + align-items: center; +} +.nav-menu .main-menu { + display: inline-block; + display: -moz-inline-stack; + zoom: 1; +} +.nav-menu .main-menu li { + list-style-type: none; +} +.nav-menu .main-menu a:active, +.nav-menu .main-menu a:focus, +.nav-menu .main-menu a:hover { + text-decoration: none; +} +.menu-wrap .logo-menu { + max-height: 46px; + display: grid; + width: 139px; +} +.menu-wrap.fixed .logo-menu { + max-height: 42px; + display: grid; + width: 125px; +} +.nav-menu .main-menu > .menu-item { + float: left; + list-style-type: none; +} +.nav-menu .main-menu > .menu-item a:active, +.nav-menu .main-menu > .menu-item a:hover { + text-decoration: none; +} +.nav-menu .main-menu > .menu-item > .sub-menu { + opacity: 0; + visibility: hidden; + position: absolute; + z-index: 9; + padding: 20px 30px; + border-radius: 12px; + background-color: #fff; + top: 100%; + margin-top: 10px; + -webkit-transition: all 0.2s ease; + transition: all 0.2s ease; +} +.nav-menu .main-menu .menu-item .menu-large .service-list .service .svg { + display: table; + height: 44px; + width: 44px; + margin: 10px 15px 0 0; +} +.nav-menu .main-menu .menu-item .menu-large .menu-item { + padding: 10px 18px 10px 15px; +} +.nav-menu .main-menu .menu-item .menu-large .menu-item a { + color: #e8e8e8; + font-size: 13px; + white-space: nowrap; +} +.nav-menu .main-menu .menu-item .menu-large .menu-item a:hover { + color: #fdd700; +} +.nav-menu .main-menu .menu-item .menu-large .media-body { + display: table-cell; + vertical-align: top; +} +.nav-menu .main-menu .menu-item .menu-large .service-list .service { + margin: 10px 0; + display: flex; +} +.nav-menu .main-menu .menu-item .menu-large .service-list .service .media { + padding: 0 0 10px 0; +} +.nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service + .media-left + i { + text-align: left; +} +.nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service + .media-body + a { + padding: 0; + line-height: 34px; + color: #313131; + display: inline-block; +} +.nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service + .media-body + p { + color: #525252; + font-size: 14px; + font-weight: 400; + font-family: "Open Sans"; +} +.nav-menu .main-menu .menu-item .menu-large .service-list .service.special i { + color: #fdd700; +} +.nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service.special + .media-body + a { + color: #212122; + border: none; +} +.nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service.special + .media-body + a:hover { + color: #fdd700; +} +.nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service.special + .media-body + p { + color: #212122; +} +.nav-menu .main-menu .menu-item .menu-large li.start-offer { + display: block; + margin-top: 20px; + float: right; + width: 245px; +} +.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner { + border: dashed 2px #fdd700; + padding: 20px; + text-align: center; +} +.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .title { + color: #fdd700; + font-size: 22px; +} +.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner p { + font-style: italic; + color: #4c4a4a; + font-size: 14px; +} +.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .val { + font-size: 13px; + text-decoration: line-through; +} +.nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .dis { + font-size: 20px; + margin-bottom: 20px; +} +.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item { + padding: 10px 0; +} +.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item:last-child { + padding-bottom: 20px; +} +.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item a { + color: #313131; + font-size: 14px; + white-space: nowrap; +} +.nav-menu .main-menu > .menu-item > .sub-menu > .menu-item > .sub-menu { + opacity: 0; + -webkit-transition: 0.1s; + -moz-transition: 0.1s; + -ms-transition: 0.1s; + -o-transition: 0.1s; + transition: 0.1s; +} +.nav-menu .main-menu .menu-item { + list-style-type: none; + font-weight: 900; +} +.menu.badge.feat { + font-size: 12px; + padding: 5px 10px; + margin-top: 3px; + position: absolute; + right: -1px; + border-bottom-left-radius: 15px; + border-top-left-radius: 15px; +} +.plans.badge.feat { + color: #fff; + font-size: 12px; + position: absolute; + right: 10px; + top: 10px; + z-index: 1; +} +.plans.badge.feat.left { + position: absolute; + right: auto; + left: 10px !important; +} +a.plans.badge.feat { + top: -40px; + padding: 8px 15px; + right: 10px; + position: absolute; + background-color: #fdd700; + border: none; + color: #000; + cursor: pointer; +} +a.plans.badge.feat:hover { + color: #fff; + background-color: #4c4a4a; + text-decoration: none; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.nav-menu .main-menu a { + font: 16px "Open Sans Semibold"; + margin-right: 35px; + color: #fff; + position: relative; + padding: 25px 0 15px 0; + cursor: pointer; + text-decoration: none; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.nav-menu .main-menu a.v-stroke { + padding: 25px 0 25px 0; +} +.nav-menu .main-menu a.v-stroke:hover::after { + height: 30px; + transition: all 0.2s ease-in-out; +} +.nav-menu .main-menu a.v-stroke:before { + content: ""; + position: absolute; + top: 55px; + left: 50%; + width: 2px; + height: 0; + background: #fff; + transition: all 0.2s ease-in-out; +} +.menu-wrap.fixed .nav-menu .main-menu a.v-stroke:before { + content: none; + transition: none; +} +.nav-menu .main-menu a.v-stroke:hover::before { + height: 30px; + transition: all 0.2s ease-in-out; +} +.nav-menu .main-menu a.h-stroke:hover::after { + width: 100%; + transition: all 0.2s ease-in-out; +} +.nav-menu .main-menu a.h-stroke:before { + content: ""; + position: absolute; + top: 55px; + bottom: 0; + right: 0; + height: 2px; + width: 0%; + background: #fff; + transition: all 0.2s ease-in-out; +} +.nav-menu .main-menu a.h-stroke:hover::before { + width: 100%; + transition: all 0.2s ease-in-out; +} +.active { + font-family: "Open Sans Bold" !important; + font-weight: 900 !important; +} +.active2 { + font-family: "Open Sans Bold" !important; + color: #ee5486 !important; + font-weight: 900 !important; +} +.nav-menu .menu-toggle { + background-color: transparent; + border: none; + outline: 0; + display: none; + float: right; +} +.nav-menu .menu-toggle .icon { + display: block; + width: 24px; + height: 4px; + border-radius: 0; + background-color: #181b22; + margin-top: 0; + margin-bottom: 3px; +} +.menu-wrap { + position: absolute; + width: 100%; + padding: 25px 0 0 0; + background-color: transparent; + z-index: 9; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.menu-wrap.line { + background-color: transparent; + border-bottom: 1px solid #e6e7e8; + border-top: 0; +} +.menu-wrap.fixed { + opacity: 1; + animation-name: fadeInOpacity; + animation-iteration-count: 1; + animation-timing-function: ease-in; + animation-duration: 0.3s; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); + padding-top: 0; + padding: 13px 0 13px 0; + position: fixed; + width: 100%; + top: 0; + z-index: 1000; +} +.menu-wrap.fixed .main-menu > .menu-item > a:before { + bottom: -12px; +} +.menu-wrap.fixed .main-menu > .menu-item > .sub-menu { + top: 50px !important; +} +.menu-wrap.fixed .main-menu > .menu-item > .sub-menu.menu-large { + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); + top: 50px !important; +} +.menu-wrap.light.fixed .logo-menu { + top: -25px; +} +.menu-wrap.active .menu-toggle { + top: 0 !important; + right: 0; +} +.menu-wrap.mobile .logo-responsive { + display: none; +} +.menu-item div.badge { + font-family: "Open Sans"; +} +#nav-toggle { + position: relative; + cursor: pointer; + padding: 17px 37px 20px 2px; +} +#nav-toggle span:after, +#nav-toggle span:before, +.menu-wrap #nav-toggle span { + cursor: pointer; + height: 2px; + width: 36px; + background: #fff; + position: absolute; + display: block; + content: ""; +} +#nav-toggle span:before { + top: -10px; +} +#nav-toggle span:after { + bottom: -10px; +} +.active #nav-toggle span:before { + background: #fdd700 !important; +} +.active #nav-toggle span:after { + background: #fdd700 !important; +} +#nav-toggle span, +#nav-toggle span:after, +#nav-toggle span:before { + transition: all 250ms ease-in-out; +} +#nav-toggle.active span { + background-color: transparent; +} +#nav-toggle.active span:after, +#nav-toggle.active span:before { + top: 0; +} +#nav-toggle.active span:before { + transform: rotate(45deg); +} +#nav-toggle.active span:after { + transform: rotate(-45deg); +} +.toplang { + position: absolute; + display: grid; + display: -ms-grid; + z-index: 2; + right: 15px; + top: 150px; +} +.toplang .btn { + font-size: 12px !important; + padding: 6px !important; + border-radius: 8px !important; + height: 30px !important; +} +.toplang input { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +.top-banner .subheading { + font-family: "Open Sans"; + color: #fff; + position: relative; + line-height: 32px; + font-size: 18px; + margin-bottom: 50px; +} +.top-banner .subheading.left { + margin-left: 0; +} +.top-banner .subheading { + color: #fff; +} +.top-banner .subheading span { + width: 100%; + text-align: center; + font-family: "Open Sans"; +} +.top-banner.overlay .heading { + color: #fff; +} +.top-banner.overlay .subheading { + color: #fff; +} +.top-banner.overlay .btn { + font-size: 18px; + padding: 15px; + font-family: Open Sans; +} +.top-banner .heading { + position: relative; + margin-bottom: 20px; + color: #fff; + display: inline-block; + font-family: "Open Sans Bold"; + line-height: 78px; + font-size: 72px; + letter-spacing: 1px; +} +.top-header { + overflow: hidden; + position: relative; + background-size: cover; + background-repeat: no-repeat; + padding-top: 150px; + padding-bottom: 90px; +} +.top-header.overlay:before { + background-color: rgba(0, 0, 0, 0.7); +} +.top-header .wrapper { + position: relative; +} +.top-header .wrapper .heading { + font-family: "Open Sans Bold"; + font-size: 72px; + text-transform: capitalize; + color: #fff; +} +.top-header .wrapper .subheading { + font-family: "Open Sans"; + color: #fff; + position: relative; + font-size: 22px; + margin-bottom: 50px; +} +.top-header .wrapper .subheding { + font-family: "Open Sans"; + font-size: 18px; + color: #eaeaea; + line-height: 32px; +} +.top-header .wrapper .subheding .link { + color: #fff; + padding-left: 8px; + padding-right: 10px; +} +.top-header .wrapper .subheding i { + font-size: 10px; +} +.top-header .wrapper .subheding .link:first-child { + padding-left: 0; +} +.top-header .wrapper .subheding .link.active { + color: #fdd700; + font-weight: 700; +} +.top-header .wrapper .subheding .link:hover { + text-decoration: none; + color: #fdd700; +} +.btn { + text-transform: capitalize; + cursor: pointer !important; + border: 1px solid #4c4a4a; + border-radius: 50px; + color: #4c4a4a; + font-size: 16px; + margin: 0; + padding: 15px 30px; + position: relative; + background-color: transparent; + letter-spacing: 0.2px; + font-family: "Open Sans Bold"; + box-shadow: 0 2px 8px 0 rgb(62 62 79 / 23%); + -webkit-transition: all 0.3s linear 0s; + -moz-transition: all 0.3s linear 0s; + -ms-transition: all 0.3s linear 0s; + transition: all 0.3s linear 0s; +} +.btn:hover { + box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3); + -webkit-transform: translateY(-5px); + transform: translateY(-5px); +} +.btn-default-pink:hover { + color: #fff; +} +.btn-default-purple:hover { + color: #fff; +} +.btn-default:hover { + outline: medium none !important; + text-decoration: none !important; + color: #fff !important; + background-color: #4c4a4a !important; + border-color: #4c4a4a !important; +} +.btn-default-grad-purple-fill { + color: #fff; + border: none; + background-size: 300% 100%; + -moz-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + transition: all 0.4s ease-in-out; +} +.btn-default-grad-purple-fill:hover { + color: #fff; + background-position: 100% 0; + -moz-transition: all 0.4s ease-in-out; + -o-transition: all 0.4s ease-in-out; + -webkit-transition: all 0.4s ease-in-out; + transition: all 0.4s ease-in-out; +} +.btn-default-pink-fill { + color: #fff !important; + border: none; +} +.btn-default-pink-fill:hover { + background-color: #4c4a4a !important; + color: #fff !important; + border: none; +} +.btn-default-yellow-fill { + background-color: #fdd700 !important; + color: #000 !important; + border: none; +} +.btn-default-yellow-fill:hover { + background-color: #4c4a4a !important; + color: #fff !important; + border: none; +} +.btn-default-purple-fill { + color: #fff !important; + border: none; +} +.btn-default-purple-fill:hover { + background-color: #4c4a4a !important; + color: #fff !important; + border: none; +} +.btn-default-fill { + background-color: #4c4a4a !important; + color: #fff !important; + border: none; +} +.btn-default-fill:hover { + background-color: #fdd700 !important; + color: #000 !important; + border: none; +} +.btn.question { + top: -2px; + text-transform: uppercase; + padding: 8px 12px; + font-size: 10px; +} +.btn.focus, +.btn:focus { + outline: 0 !important; + box-shadow: none !important; +} +.btn-secondary:not(:disabled):not(.disabled).active { + opacity: 1; + color: #000 !important; + background-color: #fdd700; + border: solid 1px #fdd700; + border-radius: 18px; + padding: 12px 14px; +} +.btn-group > .btn:not(:last-child):not(.dropdown-toggle) { + border-radius: 18px; + padding: 12px 14px; + color: #4c4a4a; +} +.btn-secondary:not(:disabled):not(.disabled) { + opacity: 0.6; + background-color: #fff; + border-color: #efefef; + border-radius: 15px; + padding: 13px 12px 12px 12px; +} +.btn-group > .btn:not(:first-child) { + opacity: 0.6; + background-color: #fff; + border: solid 1px #d6d6d6; + border-radius: 18px; + padding: 12px 14px; + color: #4c4a4a; + -ms-grid-row: 2; + -ms-grid-column: 2fr; +} +.btn-group .btn + .btn { + margin-left: 5px; +} +.btn-group.toplang .btn + .btn { + margin-left: 0; +} +.btn-secondary:hover { + background-color: #4c4a4a; +} +.owl-item.loading { + min-height: 150px; + background: url(AjaxLoader.gif) no-repeat center center; +} +.item, +.owl-item { + height: 100vh; + min-height: 600px !important; +} +.owl-carousel .fix .top-banner .heading { + margin-bottom: 5px !important; +} +.owl-carousel .owl-nav button.owl-next, +.owl-carousel .owl-nav button.owl-prev { + opacity: 0.2; + top: 50%; + outline: 0; + position: absolute; + background: #fdd700 !important; + padding: 15px 19px !important; +} +.owl-carousel .owl-nav button.owl-prev:hover { + opacity: 0.5; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.owl-carousel .owl-nav button.owl-next:hover { + opacity: 0.5; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.owl-carousel .vc-parent.fix { + height: 75% !important; +} +.owl-prev { + left: 0; +} +.owl-next { + right: 0; +} +.owl-carousel .owl-dots.disabled { + display: none !important; +} +.owl-controls .owl-buttons div { + border-radius: 50px !important; + zoom: 1; + margin: 25px; + font-size: 16px; + -moz-border-radius: 30px; + background: #000; + filter: Alpha(Opacity=50); + opacity: 0.5; + cursor: pointer; +} +.owl-controls.clickable .owl-buttons div:hover { + filter: Alpha(Opacity=100); + opacity: 1; + text-decoration: none; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.owl-controls.clickable .owl-page:hover span { + filter: Alpha(Opacity=100); + opacity: 1; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.owl-carousel .owl-video-tn { + background-size: cover; + padding-bottom: 56.25%; + padding-top: 25px; +} +.owl-video-frame iframe { + position: absolute; + top: 0; + left: 0; + min-width: 100%; + min-height: 100%; +} +.owl-theme .owl-nav.disabled + .owl-dots { + position: absolute; + top: initial; + text-align: center; + margin: 0 auto; + width: 100%; + display: block; + z-index: 9; + bottom: 17%; +} +.owl-theme .owl-dots .owl-dot span { + width: 40px; + display: block; + border: solid 1px #4c4a4a !important; + background: 0 0 !important; + padding: 0 !important; + margin: 0 2px !important; +} +.owl-theme .owl-dots .owl-dot { + outline: 0 !important; + display: -ms-grid; +} +.owl-carousel button.owl-dot { + padding: 10px 0 !important; +} +.custom-element-right { + position: absolute; + width: 100%; + max-height: 500px; + right: -300px; + overflow: auto; + margin: auto; + top: 0; + bottom: 0; +} +.chars { + position: absolute; + display: inline-grid; + text-align: center; + right: -400px; + top: -200px; +} +.chars div { + padding-top: 20px; +} +.chars p { + color: #fff; + font-size: 13px; +} +.owl-carousel .animatype { + font-size: 28px; +} +.owl-carousel .subheading .feat { + line-height: 42px; +} +.covervid-wrapper { + position: absolute; + z-index: -1; + top: 0; + left: 0; + right: 0; + width: 100%; + height: 100%; +} +.covervid-video { + height: auto !important; +} +.pricing .wrapper { + position: relative; + background: #fff; + border-radius: 15px; + margin-top: 50px; +} +.pricing.special .wrapper.active { + padding-bottom: 52px; +} +.pricing.special .wrapper { + position: relative; + background-color: #fff; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); +} +.pricing .wrapper .title { + font-family: "Open sans Bold"; + font-size: 26px; +} +.pricing .wrapper.active i { + font-size: 42px; + color: #121e25; + margin-bottom: 20px; +} +.pricing .table .title { + font-size: 26px; + font-family: "Open Sans SemiBold"; +} +.period { + font-family: "Open Sans Semibold"; + font-size: 20px; +} +.fromer { + font-family: "Open Sans Italic"; + line-height: 32px; + font-size: 16px; + color: #4c4a4a; +} +.pricing .info { + font-family: "Open Sans"; + color: #4c4a4a; + font-size: 13px; + margin: 15px 0; +} +.pricing .heading { + text-transform: capitalize; + color: #181b22; + font: bold 48px "Open Sans Bold"; +} +.pricing .subheading { + color: #181b22; + margin-top: 10px; + margin-bottom: 16px; + font-family: "Open Sans"; +} +.pricing .list-info { + padding: 30px 60px 40px 60px; + border-bottom-right-radius: 15px; + border-bottom-left-radius: 15px; + margin: 0; + list-style-type: none; +} +.pricing .list-info i { + color: #fff !important; + float: left; + padding: 5px 0; +} +.pricing .list-info i span:first-child { + font-size: 14px; +} +.pricing .wrapper .top-content { + padding: 30px 40px 30px 40px; +} +.pricing .wrapper .top-content .svg { + height: 60px; + width: 60px; +} +.pricing.special .wrapper a { + margin-top: 20px; +} +.pricing.special .list-info li { + padding: 10px 0; + font-size: 16px; + font-family: "Open Sans Semibold"; + color: #fff; +} +.pricing.tablepage .list-info li { + border-top: 1px solid #efefef; + padding: 12px 0; + font-size: 14px; + font-family: "Open Sans"; + color: #121e25; +} +.pricing.tablepage .active .list-info li { + border-top: 1px solid #34383a; +} +.pricing.tablepage .active .list-info li { + border-top: 1px solid #63b790; +} +.pricing .list-info li sub { + bottom: -0.3px; +} +.pricing .wrapper i { + font-size: 42px; + color: #121e25; + margin: 0 15px 0 0; +} +.pricing .wrapper.active i { + font-size: 42px; + color: #121e25; + margin-bottom: 20px; +} +.pricing.table.tablepage { + background-color: #efefef; +} +.pricing .wrapper.active { + border: 1px solid #fdd700; + background-color: #fdd700; +} +.pricing.p-top { + padding-top: 68px; +} +.section-heading.light { + color: #fff; +} +.section-subheading.small-text { + font-size: 18px; +} +.pricing.slider { + background-color: #fff; + padding-top: 60px; + padding-bottom: 30px; +} +.pricing.slider .heading { + font: normal 24px "Open Sans"; + text-align: left; + color: #181b22; + margin-bottom: 3px; +} +.pricing.slider .subheading { + text-align: left; + color: #181b22; +} +.pricing.slider .swiper-pagination-switch { + display: none; +} +.pricing.slider .desc { + font: 16px "Open Sans"; + color: #858f95; + margin-top: 32px; + line-height: 24px; +} +.pricing.slider .section-subheading { + margin-bottom: 72px; +} +.pricing.slider .wrapper { + padding-bottom: 0; + margin-top: 0; + border: solid 1px #90a4ae; +} +.pricing.slider .info { + background-color: #efefef; + margin-right: 30px; + margin-top: -15px; + padding: 17px 0 26px 25px; + position: relative; +} +.pricing.slider .soc-icons i { + font-size: 22px; + color: #181b22; +} +.pricing.slider .btn { + border-radius: 0; + margin-top: 24px; + width: 100%; + left: 0; + text-align: center; + padding: 27px 22px; +} +.pricing.slider .btn:hover { + background-color: #181b22; + color: #fdd700; + border-color: #181b22; +} +.pricing.slider .slides-toggle .slide { + width: 25px; + height: 42px; + position: absolute; + top: 40%; + -webkit-transform: translate3d(0, -50%, 0); + -moz-transform: translate3d(0, -50%, 0); + -ms-transform: translate3d(0, -50%, 0); + -o-transform: translate3d(0, -50%, 0); + transform: translate3d(0, -50%, 0); + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.pricing.slider .slides-toggle .slide-prev { + background-image: url(../img/arrow-left-2.png); + left: -83px; +} +.pricing.slider .slides-toggle .slide-prev span { + position: absolute; + display: inline-block; + text-align: right; + left: -20px; + margin-top: 50px; +} +.pricing.slider .slides-toggle .slide-next { + right: 0; +} +.pricing.slider .slides-toggle .slide-prev:hover { + background-image: url(../img/arrow-left-2-act.png); +} +.pricing.slider .slides-toggle .slide-next { + background-image: url(../img/arrow-right-2.png); + left: 0; +} +.pricing.slider .slides-toggle .slide-next span { + display: inline-block; + text-align: left; + margin-top: 50px; +} +.pricing.slider .soc-icons { + display: inline-block; + float: right; + margin-top: -13px; + margin-right: 8px; +} +.pricing.slider .info { + margin-right: 26px; +} +.swiper-wrapper { + padding-left: 99px; + padding-right: 99px; + width: 297px; + transform: translate3d(-99px, 0, 0); + transition-duration: 1.2s; + height: 89px; +} +.newproducts .pricing .wrapper { + font-family: "Open Sans"; +} +.newproducts .pricing .wrapper .list-info i { + padding-left: 5px; + vertical-align: text-top; + color: #fff; + font-size: 20px; +} +.newproducts .pricing .list-info { + padding: 40px; + margin: 0; +} +.best-plans.pricing .wrapper { + margin-top: 58px; + padding-top: 38px; + padding-bottom: 33px; +} +.best-plans.pricing .wrapper.act { + background-color: #242830; +} +.best-plans.pricing .wrapper.act .title { + color: #fff; +} +.best-plans.pricing .wrapper.act .period { + color: #fff; +} +.best-plans.pricing .wrapper.act .btn:hover { + border-color: #fff; +} +.best-plans.pricing .wrapper .title { + font-size: 18px; +} +.best-plans.pricing .wrapper sup { + top: -16px; + font-size: 12px; +} +.best-plans.pricing .wrapper .period { + margin-top: -4px; + margin-bottom: 23px; + font-size: 11px; +} +.best-plans.pricing .wrapper .btn { + padding: 11px 15px; + font-size: 10px; +} +.best-plans.pricing .wrapper.m-top { + margin-top: 0; +} +.best-plans .table { + margin: 0; + font-weight: initial !important; +} +.best-plans .table div.title-table { + font-family: "Open Sans Semibold"; + font-size: 18px; + color: #242830; + display: inline-block; + text-decoration: underline; +} +.best-plans .table td i.fa-times { + font-size: 22px; + color: #4c4a4a; +} +.best-plans .table td i.fa-check { + font-size: 22px; + color: #4c4a4a; +} +.best-plans .table td { + font-family: "Open Sans"; + font-size: 18px; + color: #4c4a4a; + border-top: none; + border-left: solid 1px #d8d8d8; + border-bottom: solid 1px #d8d8d8; + padding: 20px 0px 20px 0px; +} +.best-plans .table.sample td { + border-left: none !important; + text-align: left !important; +} +.best-plans .compare td { + border-left: none !important; +} +.best-plans .compare.min td { + min-width: 300px; +} +.best-plans .compare.min .form-contact { + padding: 0 !important; +} +.best-plans .table tbody td.section-bar { + color: #181b22; + font-size: 16px; + padding-right: 65px; + background-color: #fdd700; + border: none; +} +.best-plans .table tbody td.section-bar span { + margin-right: 30px; + font-size: 12px; +} +.best-plans .table td:first-child { + padding-left: 0; + min-width: 10px; + text-align: left; + border-left: none; + color: #212122; +} +.best-plans .table td .fa-check { + font-size: 29px; +} +.best-plans .btn.left { + margin-right: 35px; + padding: 15px 33px; + background-color: #fdd700; + font-size: 18px; +} +.best-plans .btn-x.w-btn { + letter-spacing: -0.1px; + padding: 15px 47px; +} +#clone thead { + visibility: visible; +} +#clone tbody tr td { + border: none; +} +#clone thead tr td { + position: relative; + border-left: solid 1px #efefef; + box-shadow: 0 10px 10px -3px rgba(110, 110, 110, 0.1); + background-color: #fff; +} +#clone thead tr td:first-child { + border: none; + background-color: transparent; + box-shadow: none; +} +#bottom_anchor { + bottom: 300px; + position: absolute; +} +.section-plans .heading { + font-family: "open sans"; + font-size: 26px; + margin-bottom: 15px; +} +.section-plans .desc { + font-size: 14px; + color: #4c4a4a; + line-height: 28px; +} +.wrapper-h-plans { + position: relative; + background-color: #fff; + border: solid 1px #efefef; +} +.wrapper-h-plans .plans-detail { + width: 100%; +} +.wrapper-h-plans .plans-detail i { + font-size: 28px; +} +.wrapper-h-plans .plans-detail span { + font-size: 14px; + color: #4c4a4a; + vertical-align: super; + margin-left: 5px; +} +.h-plans-info { + color: #fff; + padding: 40px 0; + height: 100%; +} +.h-plans-info .price { + font-size: 22px; + margin-bottom: 2px; +} +.h-plans-info .price .title { + font-size: 37px; + margin-left: 14px; + font-weight: 700; +} +.h-plans-info .price .title .line { + font-size: 18px; + display: inline-block; + margin-left: -20px; +} +.h-plans-info .price .title .title-price { + margin-left: -5px; + display: inline-block; + text-transform: lowercase; +} +.h-plans-info .price .symbol { + font-size: 30px; + display: inline-block; + margin-right: 3px; + position: relative; + top: -8px; +} +.h-plans-info .price .dec { + font-size: 30px; + display: inline-block; +} +.h-plans-info .heading { + padding: 10px; + border: dashed 1px #fff; + margin: 10px 0 18px; + font-size: 16px; +} +.h-plans-info .title { + font-family: Open Sans; + margin-bottom: 2px; +} +.h-plans-info .desc { + text-transform: lowercase; + font-family: Open Sans; + line-height: 17px; +} +.h-plans-info .header-wrap { + text-align: left; +} +.h-plans-info .header-wrap .price { + font-size: 22px; +} +.slick #slider .plan-container { + outline: 0; + padding-left: 15px; + padding-right: 15px; +} +.slick #slider .plan-container .wrapper { + position: relative; + background-color: #fff; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + border-radius: 15px; + margin-top: 50px; +} +.slick #slider .plan-container .wrapper .top-content { + padding: 40px 60px 20px 60px; +} +.slick #slider .plan-container .wrapper .list-info { + padding: 20px 60px 40px 60px; + border-bottom-right-radius: 15px; + border-bottom-left-radius: 15px; + background-color: #ee5486; + margin: 0; + list-style-type: none; +} +.slick #slider .plan-container .wrapper .list-info i { + color: #fff !important; + float: left; + padding: 5px 0; + font-size: 38px; + margin: 0 15px 0 0; +} +.slick #slider .plan-container .title { + font-size: 26px; + font-family: "Open Sans Bold"; +} +.slick #slider .plan-container .price { + color: #181b22; + font-family: "Open Sans Semibold"; + font-size: 32px; +} +.slick #slider .plan-container .price sup { + top: -0.4em; + font-size: 12px; +} +.slick #slider .plan-container .info { + font-family: "Open Sans"; + font-weight: lighter; + color: #455a64; + font-size: 14px; + margin-bottom: 15px; +} +.slick #slider .plan-container .wrapper a { + margin: 20px 0; +} +.slick #slider .plan-container .list-info li { + padding: 10px 0; + font-size: 16px; + font-family: "Open Sans Semibold"; + color: #fff; +} +.slick-slide { + opacity: 1; +} +.slick-active { + display: block; + max-width: 10% !important; + max-height: 20% !important; + opacity: 1; +} +.slick-slide img { + display: inline-block !important; +} +.slick #slider .plan-container .svg { + height: 50px; + width: 50px; +} +.slick-center { + opacity: 1; + transition: transform 0.6s ease-in-out; +} +.slick-next, +.slick-prev { + z-index: 1; + position: absolute; + top: 50%; + display: inline-block; + padding: 15px; + -webkit-transform: translate(0, -50%); + -ms-transform: translate(0, -50%); + transform: translate(0, -50%); + cursor: pointer; + border: none; + outline: 0; + text-align: right; + border-radius: 50%; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + background-color: #fff; +} +.slick-next { + text-align: left !important; +} +.slick-next:focus, +.slick-next:hover, +.slick-prev:focus, +.slick-prev:hover { + background-color: #fdd700; + outline: 0; + color: #212122; + opacity: 1; + -webkit-transition: all 0.1s linear 0s; + -moz-transition: all 0.1s linear 0s; + -ms-transition: all 0.1s linear 0s; + transition: all 0.1s linear 0s; +} +.slick-next:focus:before, +.slick-next:hover:before, +.slick-prev:focus:before, +.slick-prev:hover:before { + opacity: 1; +} +.slick-next.slick-disabled:before, +.slick-prev.slick-disabled:before { + opacity: 0.25; +} +.slick-next:before, +.slick-prev:before { + font-family: Cloudicon; + font-size: 40px; + line-height: 1; + opacity: 0.5; + color: #212122; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} +.slick-prev { + left: 100px; +} +[dir="rtl"] .slick-prev { + right: 25px; + left: auto; +} +.slick-prev:before { + content: "\e99b"; + display: block; +} +[dir="rtl"] .slick-prev:before { + content: "\e99b"; + display: block; +} +.slick-next { + right: 100px; +} +[dir="rtl"] .slick-next { + right: auto; + left: 25px; +} +.slick-next:before { + content: "\e9e4"; + display: block; +} +[dir="rtl"] .slick-next:before { + content: "\e9e4"; + display: block; +} +.tabs-item.active { + display: block; +} +.tabs-item { + display: none; +} +.tabs-header li { + display: inline-block; + list-style-type: none; +} +.tabs-header ul { + padding: 0; +} +.tabs.offers-tabs .tabs-header li { + font-family: "Open Sans"; + font-size: 18px; + border-left: solid 2px #4c4a4a; + padding: 0 0 0 30px; + cursor: pointer; + color: #181b22; + margin-top: 30px; + text-align: left; + -webkit-transition: 0.3s; + margin-top: 50px; +} +.tabs.offers-tabs .tabs-header .active { + padding: 0 0 0 50px; +} +.tabs.offers-tabs .tabs-header i { + font-size: 48px; +} +.tabs.offers-tabs .tabs-header div { + margin-top: 15px; +} +.tabs.offers-tabs .tabs-header li:hover { + color: #fdd700; + cursor: pointer; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.tabs.offers-tabs .tabs-content .heading { + font-family: "Open Sans"; + font-size: 18px; + color: #181b22; + margin-bottom: 10px; +} +.tabs.offers-tabs .tabs-content p { + font-weight: 100; + font-family: "Open Sans"; + font-size: 16px; + line-height: 32px !important; +} +.tabs.offers-tabs .tabs-content .info { + font-size: 13px; + font-family: "Open Sans"; + line-height: 26px; + margin-bottom: 25px; +} +.tabs.offers-tabs .tabs-content .tabs-item.active { + position: relative; +} +.tabs .btn-select-plan { + position: absolute; + margin-top: 50px; +} +.tabs .btn-select-plan ul { + z-index: 9; + display: inline-grid; +} +.tabs.offers-tabs .tabs-content .info-content p { + color: #aaa; +} +.tabs-header .btn-secondary:not(:disabled):not(.disabled).active { + opacity: 1; + font-size: 14px; + color: #fff !important; + border: none; + border-radius: 50px; + padding: 15px 25px; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); +} +.tabs-header .btn-group > .btn:not(:first-child) { + /* opacity: 0.8; */ + background-color: #fdd700; + color: #000; + border: none; + border-radius: 50px; + padding: 15px 25px; + font-size: 14px; + margin-bottom: 8px; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); +} +.tabs-header .btn-group > .btn:not(:last-child):not(.dropdown-toggle) { + background-color: #fdd700; + font-size: 14px; + color: #000; + border: none; + border-radius: 50px; + padding: 15px 25px; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); +} +.dropdown-menu.show { + width: 100%; + border: 0 none; + padding-bottom: 30px; + text-align: center; + background-color: transparent; + transform: initial !important; + position: static !important; +} +.dropdown-menu.show a { + color: #aaa; + font-size: 15px; + margin: 0; + border: none; + padding: 7px; + background-color: transparent; +} +.dropdown-menu.show a:hover { + color: #fdd700 !important; +} +.services .heading { + font-family: "Open Sans"; + font-size: 20px; + color: #464646; + text-transform: capitalize; +} +.services .info { + font-size: 16px; + color: #81868e; +} +.services .service-wrap .line { + height: 1px; + width: 100%; + background-color: #eaeaeb; + position: relative; +} +.services .service-wrap .line:before { + content: ""; + height: 2px; + background-color: #fdd700; + width: 50%; + position: absolute; + top: -1px; +} +.services .service-wrap .info { + padding-right: 80px; +} +.services .service-wrap .service-section { + border-radius: 15px; + background-color: #fff; + position: relative; + padding: 50px; + margin-top: 50px; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.services .service-wrap .service-section .title { + font-family: "Open Sans SemiBold"; + font-size: 22px; + color: #212122; + margin-top: 20px; + margin-bottom: 14px; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.services .service-wrap .service-section .subtitle { + line-height: 34px; + font-size: 16px; + font-family: "Open Sans"; + color: #4c4a47; + margin-bottom: 0; +} +.services .service-wrap .service-section a { + margin-top: 30px; +} +.services .service-wrap .service-section.service { + border-right: 0; +} +.services .service-wrap .service-section i { + font-size: 60px; +} +.services .service-wrap .service-section .svg { + height: 60px; + width: 60px; +} +.services.blog .service-wrap .service-section { + border-top-right-radius: 0; + border-top-left-radius: 0; +} +.services .service-wrap .service-section .svg.animal { + width: 100%; + height: 100%; +} +.services.blog .service-wrap img { + width: 100%; + border-top-right-radius: 15px; + border-top-left-radius: 15px; + margin-top: 50px; +} +.services .service-wrap { + border-bottom: 0; +} +.services.padd { + padding-top: 75px; +} +.services.padd .service-wrap { + margin-top: 64px; +} +.history-section .history-separate.first { + margin-bottom: 50px; +} +.history-section .history-separate.last { + margin-bottom: 0; +} +.history-section .wrappper.last { + margin-bottom: 0; +} +.history-section .wrappper .title { + font-family: "Open Sans"; + font-size: 18px; + line-height: 30px; +} +.history-section .wrappper .desc { + font-family: "Open Sans"; + font-size: 14px; + color: #5b6164; + line-height: 26px; +} +.history-section .wrappper .date { + font-size: 12px; + margin-top: 30px; + color: #4c4a4a; +} +.history-section .wrappper .date .year { + font-family: "Open Sans Bold"; + font-size: 12px; +} +.history-section .wrappper .read a { + color: #fff; + padding: 7px 10px; + font-size: 13px; + background-color: #fdd700; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.history-section .wrappper .read a:hover { + text-decoration: none; + background-color: #212122; + color: #fff; +} +.history-section .wrappper.right { + text-align: left; + margin-left: -9px; +} +.history-section .link-pages { + background-color: #fdd700; + color: #181b22; + font: bold 24px "Open Sans Bold"; + display: inline-block; + text-align: center; + padding: 51px 41px 43px; + line-height: 34px; + margin-top: 24px; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.history-section .link-pages:hover { + text-decoration: none; + background-color: #181b22; + color: #fdd700; +} +.history-section .img-wrap { + position: relative; +} +.history-section .img { + width: 100%; + margin: 0; +} +.history-section .wrappper { + text-align: left; + margin-top: 50px; +} +.history-section .row { + height: auto; + display: flex; + padding-bottom: 80px; + -moz-align-items: center; + -ms-align-items: center; + -o-align-items: center; + align-items: center; +} +.history-section .row:last-child { + padding-bottom: 0; +} +.history-section.feat01 .row .info-content { + padding-bottom: 0; +} +.history-section .row .info-content h4 { + margin-bottom: 20px; + line-height: 34px; +} +.history-section .row .info-content p { + font-size: 18px; + line-height: 38px; + font-family: "Open Sans"; + color: #4c4a4a; +} +.history-section hr { + display: none; +} +.help { + position: relative; +} +.help .help-container { + position: relative; + height: 145px; + margin-top: 50px; + border-radius: 15px; + background-color: #fff; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); +} +.help .help-container:hover { + -webkit-transform: translateY(-5px); + transform: translateY(-5px); + -webkit-transition: all 0.3s linear 0s; + -moz-transition: all 0.3s linear 0s; + -ms-transition: all 0.3s linear 0s; + transition: all 0.3s linear 0s; +} +.help .help-item { + position: absolute; + top: 0; + right: 0; + bottom: 0; + left: 0; + display: block; + border: 0; + font-size: 0; + padding: 0; + overflow: hidden; + transition: all 0.3s ease; +} +.help .help-item:before { + content: ""; + position: absolute; + top: 35px; + bottom: 0; + left: 28%; + width: 1px; + height: 50%; + background: #ebebeb; + transition: all 0.3s ease; +} +.help .help-item.dark:before { + background: #414142; +} +.help .help-item:before.right { + right: 28%; +} +.help .help-item .img { + position: relative; + width: 28%; + height: 100%; +} +.help .help-item .ico { + position: absolute; + top: 50%; + left: 50%; + width: 55px; + height: 55px; + transform: translate(-50%, -50%); +} +.help .help-item .inform { + width: 72%; + padding: 0 30px; +} +.help .help-item .inform .title { + font-size: 19px; + font-weight: 700; + color: #212122; +} +.help .help-item .inform .description { + font-size: 16px; + line-height: 26px; + color: #818182; + margin-top: 5px; +} +.help .help-item .img, +.help .help-item .inform { + display: inline-block; + vertical-align: middle; +} +.team { + position: relative; + z-index: 1; +} +.team .heading { + font: 24px "Open Sans Semibold"; + color: #181b22; + margin-top: 0; + margin-bottom: 3px; +} +.team .subheading { + font-size: 14px; + color: #5a5a5a; + font-style: italic; +} +.team .desc { + font-family: "Open Sans"; + color: #4c4a4a; + font-size: 17px; + margin-top: 15px; + line-height: 28px; +} +.team .soc-icons-wrap { + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0; + position: absolute; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.team .soc-icons-wrap i { + color: #fff; + width: 35px; + font-weight: 700; + font-size: 14px; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.team .soc-icons-wrap i:hover { + color: #fdd700; +} +.team .soc-icons-wrap .icons { + right: 0; + top: 20px; + left: 0; + position: absolute; + z-index: 2; + text-align: center; + display: inline-block; + margin-top: 130px; + padding: 10px; +} +.team .soc-icons-wrap .icons i { + border-radius: 15px; + background-color: rgba(0, 0, 0, 0.5); + padding: 10px; +} +.team .soc-icons-wrap .icons i:hover { + color: #fdd700; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.team .team-info { + text-align: center; + border-radius: 15px; + padding: 50px; + background-color: #fff; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.team .team-info .svg { + margin-bottom: 30px; + width: 100%; +} +.team .wrapper { + position: relative; + margin-top: 50px; +} +.team .wrapper .img-section img { + width: 100%; +} +.team .wrapper:hover .team-info { + position: relative; + z-index: 1; +} +.team .wrapper:hover .team-info .desc, +.team .wrapper:hover .team-info .heading, +.team .wrapper:hover .team-info .subheading { + position: relative; + z-index: 1; +} +.team .wrapper:hover .team-info .desc { + color: #181b22; +} +.team .wrapper:hover .soc-icons-wrap { + opacity: 1; +} +.services .service-wrap .pay img { + padding: 30px; + width: 200px; + margin: 0 20px 20px 0; +} +.form-contact { + border-radius: 15px; + width: 100%; + position: relative; + padding: 80px; + display: inline-block; +} +.form-contact .info a { + color: #22262f; +} +.form-contact .info a:hover { + text-decoration: underline; +} +.form-contact p { + font-size: 15px; + font-family: "Open Sans"; + color: #4c4a4a; + line-height: 32px; +} +.form-contact #msgSubmit { + display: none; +} +.question .heading { + font-family: "Open Sans"; + font-size: 18px; + color: #181b22; + line-height: 27px; +} +.question .heading .large-text { + font-family: "Open Sans"; + font-size: 30px; +} +.modal-header { + display: initial; +} +.modal-content { + border-radius: 15px; +} +.modal-dialog { + min-height: calc(100vh - 60px); + display: flex; + flex-direction: column; + justify-content: center; + overflow: auto; +} +.modal-content iframe.movie { + width: 100%; + height: 450px; +} +.subcribe .heading { + font-family: "Open Sans Bold"; + color: #fff; + font-weight: 700; + margin-left: 46px; +} +.subcribe.news { + margin: 40px 0; +} +.subcribe input:-moz-placeholder { + font-size: 18px; + font-family: "Open Sans"; + color: #67687b; +} +.subcribe input::-webkit-input-placeholder { + font-size: 13px; + font-family: "Open Sans"; + color: #67687b; +} +.general-input { + position: relative; + width: 100%; + display: flex; +} +.fill-input { + width: 100%; + font-size: 16px; + font-family: "Open Sans"; + color: #000; + border: solid 1px #efefef; + border-radius: 50px; + padding: 14px 20px 14px 30px; + background-color: #fff; + outline: 0; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.general-input input.btn { + border: none; + right: 0; + position: absolute; +} +.subcribe .form { + margin-top: 0; + padding-left: 0; + padding-right: 0; + display: flex; + width: 100%; +} +.subcribe .form span { + margin-top: 0; + color: #fff; + font-size: 14px; + display: inline-block; + margin-bottom: 5px; +} +.subcribe .form p { + color: #4c4a4a; + font: 13px "Open Sans"; +} +.subcribe form p { + font-size: 14px; + font-family: "Open Sans"; + color: #aaa; +} +.countdown .wrapper { + width: 100%; + position: relative; +} +.countdown .wrapper .heading { + font-size: 18px; + font-family: "Open Sans"; + color: #181b22; + text-align: center; +} +.countdown .wrapper .clock { + text-align: left; + font-family: "Open Sans"; + font-size: 52px; +} +.countdown .wrapper .clock div { + border-radius: 100px; + margin: 10px 50px 15px 0; + display: inline-block; + padding: 20px 40px; + border: solid 1px #d8d8d8; + text-align: center; +} +.countdown .wrapper .clock div:first-child { + color: #fff; +} +.countdown .wrapper .clock span { + border: none; + font-family: "Open Sans"; + padding: 0; + font-size: 16px; + display: block; + margin: 0; +} +.casestudy .wrapper { + background-color: #212122; +} +.casestudy img { + opacity: 0.5; + position: absolute; + bottom: 0; + left: 0; + width: 100%; +} +.casestudy .img { + position: relative; +} +.casestudy .content-info { + font-size: 13px; + font-family: "Open Sans"; + margin-top: 9px; + line-height: 30px; + text-align: left; + color: #fff; +} +.casestudy .content-info em { + margin-bottom: 20px; +} +.casestudy .slider-container { + height: 100%; +} +.casestudy .casestudy { + text-align: left; + margin-left: 11px; +} +.casestudy .social-icons i { + color: #91a3ad; + border: 1px solid #91a3ad; + padding: 10px 12px; + width: 40px; + display: inline-block; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.casestudy .social-icons i:hover { + color: #fdd700; +} +.casestudy .swiper-pagination-switch { + display: none; +} +.casestudy .author { + font-size: 32px; + font-family: "Open Sans Bold"; + margin-bottom: 15px; + text-align: left; + text-transform: capitalize; + color: #fff; +} +.casestudy .content-info p { + font-size: 18px; + margin-bottom: 25px; +} +.casestudy .icon-quote { + margin-top: -18px; +} +.casestudy.bg-info { + background-color: #f2efe8; +} +.casestudy .swiper-slide { + position: relative; + left: -97px; +} +.faq .accordion.faq .btn { + margin-top: 83px; + font-size: 18px; + padding: 21px 86px; +} +.faq.light { + background-color: #fff; +} +.tabs-item .accordion.faq { + padding-top: 0; +} +.accordion.faq { + padding-top: 0; +} +.accordion.faq .panel-wrap { + margin-bottom: 5px; +} +.accordion.faq .panel-title { + border-bottom: solid 1px #4c4a4a; + background-color: transparent; + font-family: "Open Sans Semibold"; + color: #414142; + padding: 20px 10px 20px 0; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.accordion.faq .panel-title .fa-minus { + display: none; + color: #212122; +} +.accordion.faq .panel-title.active { + font-family: "Open Sans Semibold" !important; +} +.accordion.faq .panel-title.active .fa-minus { + display: inline-block; +} +.accordion.faq .panel-title.active .fa-plus { + display: none; +} +.accordion.faq .panel-title.active .square { + color: #fdd700; + background-color: #181b22; +} +.accordion.faq .wrapper-collapse .list { + background-color: transparent; + padding: 0; +} +.accordion.faq .wrapper-collapse .list li { + font-size: 18px; + font-family: "Open Sans"; + list-style-type: none; + padding: 20px 0; +} +.accordion.faq .btn { + background-color: #fdd700; + display: inline-block; + margin-top: 71px; + font-size: 20px; + padding: 21px 72px; +} +.accordion.faq .btn:hover { + background-color: #181b22; + color: #fdd700; +} +.accordion.faq.light .panel-title.active { + font-family: "Open Sans SemiBold"; + background-color: #f2efe8; +} +.accordion.faq.light .wrapper-collapse .list { + background-color: #f2efe8; +} +.accordion.faq.light .wrapper-collapse .list li { + border-top: 1px solid #e0ddd7; +} +.accordion .panel-title { + margin: 0; + position: relative; + background-color: #f8f8f8; + padding: 9px 35px 10px; + color: #e32526; + font-size: 22px; + cursor: pointer; +} +.accordion .panel-collapse { + display: none; +} +.blog.padd { + padding-bottom: 8px; +} +.blog .sidebar .search-group { + position: relative; +} +.blog .sidebar .search-group::-webkit-input-placeholder { + font-family: "Open Sans Bold"; + color: #121e25; +} +.blog .sidebar .search-group:-moz-placeholder { + font-family: "Open Sans Bold"; + color: #121e25; +} +.blog .sidebar .search-group::-moz-placeholder { + font-family: "Open Sans Bold"; + color: #121e25; +} +.blog .sidebar .search-group:-ms-input-placeholder { + font-family: "Open Sans Bold"; + color: #121e25; +} +.blog .sidebar .search-group .search { + background-color: #efefef; + color: #121e25; + border: 1px solid transparent; + outline: 0; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; + padding: 10px 15px; + width: 100%; +} +.blog .sidebar .search-group .search:focus { + border-color: #fdd700; +} +.blog .sidebar .search-group .input-search { + position: absolute; + top: 33px; + right: 18px; +} +.blog .sidebar .heading.active { + font: 22px "Open Sans"; + letter-spacing: 0.5px; + margin: 50px 0 20px 0; +} +.blog .sidebar .tabs .tabs-content { + display: inline-block; + width: 100%; +} +.blog .sidebar .tabs .tabs-header li { + font-size: 15px; + border-bottom: 1px solid #efefef; + font-family: "Open Sans"; + padding: 0 0 20px 0; + margin: 0 10px; + cursor: pointer; +} +.blog .sidebar .posts .tabs-header li.active { + font: 15px "Open Sans"; + padding: 0 0 20px 0; +} +.blog .sidebar .categories .line:not(.active) { + background-color: #efefef; +} +.blog .shopping .sidebar .categories .line:not(.active):before { + content: none; +} +.blog .sidebar .line { + margin-bottom: 15px; + height: 1px; + width: 100%; + position: relative; + background-color: #efefef; +} +.blog .sidebar .line.active:before { + content: ""; + height: 1px; + width: 50%; + position: absolute; + top: -1px; +} +.blog .sidebar .tags { + margin-top: 57px; +} +.blog .sidebar .tags .tag a { + background-color: #efefef; + color: #181b22; + padding: 8px 15px; + font-size: 15px; + margin-bottom: 12px; +} +.blog .sidebar .tags .heading.active a { + color: #fdd700; +} +.blog .sidebar .tags .line { + margin-bottom: 12px; +} +.blog .sidebar .tags .line.active { + margin-bottom: 24px; +} +.blog .sidebar .tags .line:not(.active) { + background-color: #474c57; +} +.blog .sidebar .tags .line:not(.active):before { + content: none; +} +.blog .sidebar .tags .tag a:hover { + background-color: #fdd700; + color: #181b22; +} +.blog .sidebar .tags .line { + margin-bottom: 50px; +} +.blog .sidebar .posts .img { + border-radius: 10px; + width: 50%; + float: left; + margin: 0 15px 0 0; +} +.blog .social-icons { + text-align: left; + margin-right: 5px; +} +.blog .share-txt { + font-size: 13px; + font-family: "Open Sans"; + letter-spacing: 0.5px; + margin-bottom: 15px; + color: #181b22; +} +.blog .social-icons i { + color: #424242; + border: 1px solid #eaeaeb; + padding: 12px 15px; + margin-left: -4px; + display: inline-block; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.blog .social-icons .fa:not(.fa-share-alt) { + border-right: 0; +} +.blog .social-icons .fa:hover { + color: #fdd700; +} +.blog .social-icons .fa.fa-google-plus { + padding: 12px; + border-right: 1px solid #eaeaeb; +} +.blog .social-icons .fa.fa-share-alt { + color: #fdd700; + background-color: #181b22; + margin-left: 1px; +} +.blog .media { + position: relative; + display: inline-flex; + text-align: left; + margin-top: 50px; + padding-bottom: 30px; +} +.blog .media.answer { + padding-left: 40px; +} +.blog .media .media-heading { + color: #4c4a4a; + font-family: "Open Sans SemiBold"; + font-size: 18px; +} +.blog .media .media-heading a { + color: #212122; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.blog .media .media-heading a:hover { + text-decoration: none; +} +.blog .media .media-body { + padding-left: 60px; +} +.blog .media .date { + font-family: "Open Sans"; + color: #75777d; +} +.blog .media .date a { + color: #75777d; + font-size: 12px; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.blog .media .date a:hover { + text-decoration: none; + color: #fdd700; +} +.blog .media .date img { + margin-right: 12px; +} +.blog .media a.answer { + float: right; + display: inline-block; + background-color: #fdd700; + padding: 5px 12px; + color: #fff; + font-family: "Open Sans"; + border: solid 1px #fdd700; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.blog .media a.answer:hover { + text-decoration: none; + color: #181b22; + background-color: transparent; + border: solid 1px #212122; +} +.blog .media .text-comments { + font-family: "Open Sans"; + font-size: 14px; + line-height: 28px; + color: #4c4a4a; +} +.blog .media.right { + padding-left: 73px; + margin-top: 30px; +} +.blog.blog .wrap-blog .comments { + padding: 80px; + border-radius: 15px; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); +} +.blog.blog .wrap-blog .livecomment { + padding: 80px; + border-radius: 15px; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); +} +.blog.blog .wrap-blog img { + border-radius: 10px; + width: 100%; +} +.blog.blog .wrap-blog .media img { + width: 170px; +} +.blog.blog .wrap-blog .media-left { + float: left; +} +.blog.blog .wrap-blog.section-bg2 { + padding: 30px; +} +.blog .wrap-blog { + width: 100%; + display: inline-block; +} +.blog .wrap-blog.section-bg1 { + padding: 40px; +} +.blog .wrap-blog.light.m-bottom.last { + width: 100%; +} +.blog .wrap-blog .heading { + font-family: "Open Sans"; + font-size: 18px; + color: #4c4a4a; +} +.blog .wrap-blog .heading.blog { + font-family: "Open Sans"; + font-size: 26px; + margin-bottom: 15px; +} +.blog .wrap-blog .heading.blog a { + color: #212122; +} +.blog .wrap-blog .heading.blog a:hover { + text-decoration: none; +} +.blog .wrap-blog .text-blog { + margin: 20px 0; + font-size: 13px; + color: #4c4a4a; + font-family: "Open Sans"; +} +.blog .wrap-blog .text-blog .timer { + margin-top: 10px; + vertical-align: middle; + display: inline-block; +} +.blog .wrap-blog .text-blog i { + font-size: 22px; +} +.blog .service-wrap .service-section .small b { + font-size: 22px; +} +.blog .wrap-blog .social-icon { + width: 100%; + text-align: right; +} +.blog .wrap-blog .social-icon i { + font-size: 14px !important; + border: 1px solid #efefef; + display: inline-block; + height: 36px; + line-height: 36px; + width: 36px; + text-align: center; + border-radius: 15px; + transition: 0.3s; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.15); + text-decoration: none; +} +.blog .wrap-blog .social-icon i:hover { + color: #fdd700; + text-decoration: none; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.blog .wrap-blog .social { + width: 100%; + display: inline-block; +} +.blog .wrap-blog .infos { + display: none; +} +.blog .wrap-blog .infos i { + display: inline-block; + color: #fdd700; + font-size: 24px; +} +.blog .wrap-blog .infos span { + margin-right: 10px; + font-size: 16px; + color: #fdd700; +} +.blog .wrap-blog .text-blog:last-child { + border: none; + margin-left: 10px; +} +.blog .wrap-blog .text-blog .author { + margin-right: 8px; + color: #212122; + text-decoration: underline; + font-family: "Open Sans ligh"; +} +.blog .wrap-blog .text-blog .author:hover { + text-decoration: none; +} +.blog .wrap-blog .text-blog a { + margin-right: 8px; + margin-left: 8px; + font-family: "Open Sans"; +} +.blog .wrap-blog .text-blog a:hover { + text-decoration: none; +} +.blog .wrap-blog .blog-info { + font-family: "Open Sans"; + color: #4c4a4a; + margin-top: 15px; + line-height: 34px; + font-size: 16px; +} +.blog .wrap-blog .wrapper { + border-radius: 15px; + background-color: #fff; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + padding: 80px; +} +.blog .wrap-blog .wrapper h3 { + font-size: 32px; + font-family: "Open Sans"; +} +.blog .wrap-blog .btn { + color: #181b22; + border-color: #181b22; + background-color: transparent; + padding: 15px 52px; + border-width: 1px; + display: block; + text-align: center; + font-size: 16px; + margin-top: 30px; +} +.blog .wrap-blog .btn:hover { + background-color: #181b22; + color: #fdd700; +} +.blog .sidebar { + border-radius: 15px; + font-family: "Open Sans"; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + padding: 40px; + background-color: #fff; + font-family: "Open Sans"; +} +.blog .sidebar .search-group { + position: relative; +} +.blog .sidebar .heading { + margin-bottom: 15px; + cursor: pointer; +} +.blog .sidebar .heading:last-child { + margin-bottom: 0 !important; +} +.blog .sidebar .categories .heading a { + color: #4c4a4a; + font-size: 18px; +} +.blog .sidebar .categories .heading a.active { + font-size: 18px; +} +.blog .sidebar .categories .heading a:after { + content: ""; +} +.blog .sidebar .categories .heading span { + float: right; +} +.blog .sidebar .search-group a { + top: 12px; + right: 15px; + position: absolute; + font-size: 28px; +} +.blog .sidebar .search-group a:hover { + text-decoration: none; + color: #fdd700; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.blog .sidebar .categories .line { + margin-bottom: 12px; +} +.blog .sidebar .posts .heading-article { + margin-bottom: 5px; +} +.blog .sidebar .posts .heading-article a { + font-family: "Open Sans Semibold"; + font-size: 15px; + color: #212122; +} +.blog .sidebar .posts .item-wrap { + margin-top: 50px; +} +.blog .sidebar .posts .item-wrap:first-child { + margin-top: 0; +} +#sidebar { + position: fixed; + width: 350px; + height: auto; +} +.pagination > li > a { + border: solid 1px #efefef; + background-color: #fff; + margin-right: 5px; + color: #4c4a4a; + font-family: "Open Sans"; + font-size: 18px; + padding: 8px 15px; +} +.pagination > li > a:hover { + text-decoration: none; + background-color: #fdd700; + color: #212122; + font-family: "Open Sans"; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.pagination > li.active > a { + background-color: #fdd700; + color: #fff; + font-family: "Open Sans"; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.pagination > li:last-child > a { + border-radius: 0; +} +.pagination .next, +.pagination .prev { + font-family: "Open Sans"; + font-size: 18px; + color: #212122; + padding: 8px 15px; +} +.pagination .prev { + display: none; +} +.page-item.active .page-link { + z-index: 1; + color: #fff; +} +.pagination > li.active > a:hover { + color: #fff; +} +.pagination .next { + padding: 15px 33px; + margin-left: 30px; + font: 18px "Open Sans Bold"; + border-radius: 0; +} +.footer { + position: relative; + z-index: 0; + background-color: #15212a; + background-position: center; + border: none; +} +.footer .tag { + float: none; + margin-right: 0; + margin-left: 0; +} +.footer .footer-top { + padding: 35px 0 20px 0; +} +.footer .footer-top .col-md-3.col-sm-6 { + margin-bottom: 10px; +} +.footer .logo-footer { + width: 130px; +} +.footer .heading { + font-size: 24px; + font-family: "Open Sans Semibold"; + color: #fff; + margin-bottom: 10px; + display: inline-block; +} +.footer .soc-icons { + padding-top: 0; + padding-left: 0; +} +.footer .soc-icons i:before { + font-size: 18px; +} +.footer .soc-icons a { + display: inline-block; + margin: 0 10px 20px 0; +} +.footer .soc-icons a:hover { + color: #fdd700; + text-decoration: none; +} +.footer .soc-icons a:hover i { + color: #fdd700; +} +.footer .contact { + font-size: 16px; + font-family: "Open Sans"; + color: #b9bac8; +} +.footer .contact a { + color: #b9bac8; +} +.footer .contact a:hover { + text-decoration: none; + color: #fdd700; +} +.footer .contact a:hover i { + color: #fdd700; +} +.footer .contact i { + color: #858585; +} +.footer .contact i:before { + margin-left: 0; + margin-right: 12px; + font-size: 18px; +} +.footer .payment-list { + float: right; + color: #90a4ae; + list-style-type: none; + margin: 0; + display: flex; + align-items: center; +} +.footer .payment-list li { + display: inline-block; + margin-right: 3px; + font-size: 42px; +} +.footer .payment-list li:last-child { + margin-right: 0; +} +.footer .payment-list li p { + margin-bottom: 0; + color: #aaa; + font-family: "Open Sans Semibold"; + font-size: 14px; + margin-right: 20px; + display: table; +} +.footer .payment-list li i { + color: #aaa; +} +.footer .payment-list li i:hover { + color: #fdd700; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.footer .copyrigh { + font-family: "Open Sans Semibold"; + font-size: 14px; + color: #aaa; + padding-top: 10px; + padding-bottom: 30px; +} +.footer h6 { + margin-top: 15px; + color: #b0bec5; + line-height: 24px; +} +.footer .footer-menu { + float: left; + padding: 0; + margin: 0; +} +.footer .footer-menu .menu-item { + font-family: "Open Sans"; + font-size: 18px; + display: block; + list-style-type: none; + margin-top: 15px; + margin-left: 0; + text-align: left; +} +.footer .footer-menu .menu-item a { + color: #aaa; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.footer .footer-menu .menu-item a:hover { + text-decoration: none; + color: #fdd700; +} +.footer .footer-menu { + padding: 0; + float: none; +} +.footer .footer-menu .menu-item.by { + font-size: 14px; + color: #aaa; +} +.footer .footer-bottom { + padding: 0 0 40px 0; +} +.footer .footer-bottom .footer-menu { + position: relative; + top: 3px; +} +.footer .footer-bottom .footer-menu .menu-item { + font-family: "Open Sans Semibold"; + display: inline; + margin-left: 20px; + vertical-align: sub; +} +.footer .soc-icons i { + background-color: #fff; + display: block; + height: 42px; + line-height: 42px; + text-align: center; + border-radius: 15px; + width: 42px; + transition: 0.3s; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.15); +} +.footer .soc-icons i:hover { + color: #fdd700; +} +.footer .soc-icons.top-icons i { + margin-right: 11px; + margin-left: 11px; +} +.footer .logo-bg { + margin: 0; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + bottom: 0; + width: 600px; + position: absolute; + opacity: 0.3; + margin-top: 40px; + z-index: -1; +} +.footer .footer-menu #drop-lng input { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; +} +[type="email"], +[type="number"], +[type="tel"], +[type="url"] { + direction: ltr; +} +.wpc-cloud-range .noUi-target { + height: 7px; + background: #4c4a4a; + border-radius: 15px; + border: none; + box-shadow: none; +} +.wpc-cloud-range .noUi-connect { + border-radius: 15px; + border: none; + box-shadow: none; +} +.wpc-cloud-range .noUi-background { + background-color: #f2efe8; + border-left: 1px solid #b5b4b3; + border-top-right-radius: 11px; + border-bottom-right-radius: 11px; +} +.noUi-marker-horizontal.noUi-marker { + position: absolute; + background: #4c4a4a; + border-radius: 50%; + margin-left: -1px; + width: 4px; + height: 4px; +} +.wpc-cloud-range .noUi-tooltip:before { + content: ""; + width: 0; + height: 0; + border-style: solid; + border-width: 9px 9px 0 9px; + position: absolute; + bottom: -6px; + left: 41px; +} +.wpc-cloud-range .noUi-tooltip { + font-weight: 900; + position: absolute; + width: 100px; + margin-bottom: 12px; + padding: 8px 0; + color: #fff; + font-style: normal; + font-size: 18px; + text-align: center; + cursor: pointer; + border-radius: 8px; + border: none; + line-height: 16px; +} +.wpc-cloud-range .noUi-handle.noUi-handle-lower:after, +.wpc-cloud-range .noUi-handle.noUi-handle-lower:before { + content: none; +} +.wpc-cloud-range .noUi-horizontal .noUi-handle { + box-shadow: none; + right: 0; + top: -11px; + width: 25px; + height: 25px; + margin-left: -10px; + border: transparent; + border-radius: 50%; + cursor: pointer; + outline: 0; +} +.wpc-cloud-range .info-range { + font-size: 16px; + color: #414142; + letter-spacing: 0.5px; + margin-top: 30px; +} +.wpc-cloud-range .info-range .number { + font-family: "Open Sans Bold", sans-serif; +} +.wpc-cloud-range .slider-ui { + padding: 80px 0 0 0; +} +.noUi-pips-horizontal { + padding: 15px 0; + left: 3px; +} +.wpc-vps-info .price-wrap .title { + color: #1f2532; + text-transform: uppercase; + font-size: 18px; + padding: 25px 25px; + display: inline-block; + position: absolute; + top: 0; + -webkit-transition: 1s; + -moz-transition: 1s; + -ms-transition: 1s; + -o-transition: 1s; + transition: 1s; +} +.wpc-vps-info .price-wrap .title:hover { + background-color: #1f2532; + color: #f44336; + text-decoration: none; +} +.wpc-vps-info { + padding-top: 30px; +} +.wpc-vps-info .title i { + opacity: 0.3; + position: absolute; + right: 30px; + bottom: 20px; + font-size: 42px; +} +.wpc-vps-info .title { + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + border-radius: 15px; + margin-top: 40px; + background-color: #fff; + font: 22px "Open Sans Bold", sans-serif; + color: #212122; + padding: 40px; +} +.wpc-vps-info .title .info { + border-top: solid 1px #efefef; + margin-top: 15px; + padding-top: 15px; + display: inline-block; + width: 100%; + font: 26px "Open Sans Semibold", sans-serif; +} +.wpc-vps-info .price-wrap .price { + font: 30px "Open Sans ExtraBold", sans-serif; + color: #fff; + background-color: #1f2532; + padding: 15px 35px; + display: inline-block; +} +.wpc-vps-info .h-plans-info .price { + font-size: 46px !important; + font-family: "Open Sans Bold"; + display: -webkit-inline-box; + color: #414142; +} +.wpc-vps-info .h-plans-info .infos { + padding-bottom: 40px; + line-height: 32px; + font-size: 18px; + font-family: "Open Sans"; + color: #414142; +} +.wpc-vps-info .content-price { + position: relative; + box-shadow: 0 5px 15px 0 rgba(110, 110, 110, 0.1); + background-color: #fff; + border-radius: 15px; + padding: 50px; +} +.range-disabled { + display: none; +} +.search-disabled { + display: none; +} +.run-switch { + position: relative; + cursor: pointer; + margin-bottom: 10px; + z-index: 3; + -webkit-user-select: none; + -khtml-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; +} +.run-switch .an.active, +.run-switch .mo.active { + color: #000; +} +.run-switch .an, +.run-switch .mo { + font-size: 12px; + color: rgb(151, 114, 114); + font-family: "Open sans Semibold" !important; + -webkit-transition: all 0.3s ease; + transition: all 0.3s ease; +} +.run-switch div { + display: inline-block; +} +.run-switch .switch.on:after { + left: 5px; +} +.run-switch .switch { + position: relative; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.23); + vertical-align: middle; + width: 65px; + height: 30px; + margin-left: 15px; + margin-right: 15px; + border-radius: 15px; + background-color: #fdd700; + z-index: 3; +} +.run-switch .switch:after { + position: absolute; + margin-top: -11px; + left: 37.5px; + background-color: #fff; + border-radius: 50%; + content: ""; + width: 22px; + height: 22px; + top: 50%; + transition: all 0.3s ease; +} +#priceon-val { + display: none; +} +.circle-section .circliful { + position: relative; + display: inline-block; +} +.circle-section .circle-wrapper { + text-align: center; +} +.circle-section .circliful:before { + content: ""; + border: 1px solid #d8d8d8; + display: inline-block; + border-radius: 100%; + position: absolute; + top: 30px; + right: 30px; + padding: 59px; + z-index: 0; +} +.circle-info, +.circle-info-half, +.circle-text, +.circle-text-half { + width: 100%; + position: absolute; + text-align: center; + display: inline-block; +} +.circle-section { + text-align: center; +} +.circle-section .circle-text { + line-height: 1 !important; + padding-top: 75px; +} +.circle-section .title-round { + font: 22px "Open Sans Semibold"; + text-transform: capitalize; + margin-top: 85px; +} +.circle-section .circle-wrapper p { + margin-top: 50px; + line-height: 34px; + font-size: 16px; + font-family: "Open Sans"; + color: #4c4a4a; +} +.circle-section .number { + font-family: "Open Sans"; + color: #212122; + font-size: 27px; +} +.circle-section canvas { + z-index: 2; + position: relative; +} +.megamenu { + padding: 0 !important; + background: 0 0 !important; + left: 0; + right: 0; +} +.megamenu .menu-item a { + color: #e8e8e8; + font-size: 13px; + white-space: nowrap; +} +.nav-menu .main-menu .menu-item .megamenu .menu-item a:hover { + color: #69c399; +} +.megamenu .media-body { + display: table-cell; + vertical-align: top; +} +.megamenu .service-list { + padding: 30px; + background-color: #fff; + border-bottom-left-radius: 12px; + border-top-left-radius: 12px; +} +.megamenu .service-list .service { + display: inline-table; + padding: 12px; +} +.megamenu .service-list .service .media { + padding: 0 0 10px 0; +} +.megamenu .service-list .service .media-left { + padding: 10px 15px 15px 0; + color: #9e9e9e; +} +.megamenu .service-list .service .media-left .svg { + height: 44px; + width: 44px; +} +.megamenu .service-list .service .media-body { + display: table-cell; + vertical-align: middle; +} +.megamenu .service-list .service .media-body a { + font: 16px "Open Sans Semibold"; + padding: 0; + line-height: 34px; + color: #313131; + margin-right: 0; +} +.megamenu .service-list .service .media-body p { + font: 14px "Open Sans"; + color: #525252; + line-height: 26px; + margin: 0; + font-weight: 400; +} +.megamenu .service-list .service.special .media-body a { + color: #21252e; + border: none; +} +.megamenu .service-list .service.special .media-body p { + color: #21252e; +} +.megamenu .start-offer { + padding: 0; +} +.megamenu .start-offer .inner { + height: 100%; + border-bottom-right-radius: 12px; + border-top-right-radius: 12px; + padding: 30px; + text-align: left; +} +.megamenu .start-offer .inner .inner-content { + font-size: 14px; + line-height: 28px; + color: #fff; +} +.megamenu .start-offer .inner .title { + color: #fff; + font-family: "Open Sans Bold"; +} +.megamenu .start-offer .inner a { + padding: 17px 26px !important; + font-family: "Open Sans Bold"; + display: inline-block; + line-height: 1; + font-size: 16px; +} +.megamenu-list { + padding: 0 !important; + background-color: transparent !important; + left: 0; + right: 0; +} +.megamenu-list .menu-item a { + color: #e8e8e8; + font-size: 13px; + white-space: nowrap; +} +.megamenu-list .menu-item a:hover { + color: #69c399; +} +.megamenu-list .media-body { + display: table-cell; + vertical-align: top; +} +.megamenu-list .service-list { + padding: 30px; + background-color: #fff; + border-bottom-left-radius: 12px; + border-top-left-radius: 12px; +} +.megamenu-list .service-list .service { + display: inline-table; + padding: 12px; +} +.megamenu-list .service-list .service .media { + padding: 0 0 10px 0; +} +.megamenu-list .service-list .service .media-left { + padding: 10px 15px 15px 0; + color: #9e9e9e; +} +.megamenu-list .service-list .service .media-left .svg { + height: 44px; + width: 44px; +} +.megamenu-list .service-list .service ul { + padding: 0; +} +.megamenu-list .service-list .service .media-body a { + font: 15px "Open Sans semibold"; + padding: 0; + line-height: 38px; + color: #313131; + margin-right: 0; +} +.megamenu-list .service-list .service .media-body a:hover { + color: #ee5586; +} +.megamenu-list .service-list .service .media-body p { + font-size: 12px; + color: #4c4a4a; + line-height: 22px; + margin: 0; +} +.megamenu-list .service-list .service.special .media-body a { + color: #21252e; + border: none; +} +.megamenu-list .service-list .service.special .media-body p { + color: #21252e; +} +.megamenu-list .start-offer { + padding: 0; +} +.megamenu-list .start-offer .inner { + height: 100%; + border-bottom-right-radius: 12px; + border-top-right-radius: 12px; + padding: 30px; + text-align: left; + background-color: #fdd700; +} +.megamenu-list .start-offer .inner .inner-content { + font-size: 14px; + line-height: 28px; + color: #212122; +} +.megamenu-list .start-offer .inner .title { + color: #181b22; + font-family: "Open Sans Bold"; +} +.megamenu-list .start-offer .inner a { + padding: 17px 26px !important; + font-family: "Open Sans Bold"; + display: inline-block; + line-height: 1; + font-size: 16px; +} +.megamenu-list .service .top-head { + position: relative; + display: flex; +} +.megamenu-list .service .top-head .svg { + height: 32px; + width: 32px; +} +.megamenu-list .service .top-head div { + padding: 12px 0 0 12px; +} +.section-404 { + text-align: center; +} +.section-404 .img-responsive { + display: inline-block; +} +.section-404 .input { + vertical-align: middle; + border: solid 1px #fdd700; + padding: 15px; + width: 50%; +} +.section-404 .title { + font-family: "Open Sans"; + font-size: 38px; + color: #212122; + line-height: 40px; +} +.section-404 i { + font-size: 32px; + color: #fdd700; +} +.section-404 .subtitle { + font-family: "Open Sans"; + font-style: italic; + font-size: 15px; + color: #4c4a4a; +} +.section-404 .input-group { + width: 100%; + display: inline-block; + line-height: 19px; + margin-top: 40px; +} +.getready { + position: relative; + padding: 80px 0; +} +.getready .column-support-txt { + position: relative; + display: inline-block; + font-family: "Open Sans"; +} +.getready .column-support-title { + font-family: "Open Sans Semibold"; + font-size: 46px; + color: #fff; + line-height: 1; + margin-bottom: 12px; +} +.getready .column-support-subtitle { + font-size: 18px; + line-height: 30px; + font-family: "Open Sans"; + color: #fff; +} +.getready .btn-floats { + text-align: right; +} +#spinner-area { + background-color: #000; + z-index: 9999; + position: fixed; + top: 0; + left: 0; + bottom: 0; + right: 0; + margin: auto; + opacity: 0.9; +} +.spinner { + position: fixed; + height: 3em; + width: 3em; + overflow: visible; + margin: auto; + top: 0; + left: 0; + bottom: 0; + right: 0; +} +.spinner-txt { + color: #414142; + left: -9px; + margin-top: 50px; + position: absolute; +} +.double-bounce1, +.double-bounce2 { + width: 100%; + height: 100%; + border-radius: 50%; + background-color: #fdd700; + opacity: 0.8; + position: absolute; + top: 0; + left: 0; + -webkit-animation: sk-bounce 2s infinite ease-in-out; + animation: sk-bounce 2s infinite ease-in-out; +} +.double-bounce2 { + -webkit-animation-delay: -1s; + animation-delay: -1s; +} +.onScreen .line { + animation: dash 2s cubic-bezier(0.23, 1, 0.32, 1); + -webkit-animation: dash 2s cubic-bezier(0.23, 1, 0.32, 1); + -webkit-animation-fill-mode: forwards; +} +@-webkit-keyframes sk-bounce { + 0%, + 100% { + -webkit-transform: scale(0); + } + 50% { + -webkit-transform: scale(1); + } +} +@keyframes sk-bounce { + 0%, + 100% { + transform: scale(0); + -webkit-transform: scale(0); + } + 50% { + transform: scale(1); + -webkit-transform: scale(1); + } +} +.cd-top { + display: inline-block; + height: 42px; + width: 42px; + position: fixed; + bottom: 100px; + right: 30px; + overflow: hidden; + text-indent: 100%; + white-space: nowrap; + border-radius: 15px; + background: gold; + visibility: hidden; + opacity: 0; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.15); + -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s; + -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s; + transition: opacity 0.3s 0s, visibility 0s 0.3s; +} +.cd-top.cd-fade-out, +.cd-top.cd-is-visible, +.no-touch .cd-top:hover { + -webkit-transition: opacity 0.3s 0s, visibility 0s 0s; + -moz-transition: opacity 0.3s 0s, visibility 0s 0s; + transition: opacity 0.3s 0s, visibility 0s 0s; +} +.cd-top i { + top: 5px; + color: #fff; + font-size: 31px; + display: inline-flex; + position: absolute; + right: 31px; +} +.cd-top.cd-is-visible { + visibility: visible; + opacity: 1; + z-index: 99; +} +.cd-top.cd-fade-out { + opacity: 0.5; +} +.no-touch .cd-top:hover { + background-color: #e86256; + opacity: 1; +} +.domain-prices { + margin-top: 10px; +} +.domain-prices ul { + margin: 0; + padding: 0; + list-style: none; +} +.domain-prices li { + display: inline-flex; + padding: 10px 20px; + position: relative; + font-size: 18px; +} +.domain-prices li sup { + font-size: 12px; + top: -4px; +} +.domain-prices li .price { + color: #fff !important; + margin-left: 10px; +} +.fullrock { + height: 100%; + width: 100%; + padding: 100px 0; + display: block; + position: fixed; + z-index: 1200; + top: 0; + left: 0; + overflow: auto; +} +.fullrock-content { + position: relative; +} +.fullrock a { + line-height: 28px; + text-decoration: none; + color: #22262f; + transition: 0.3s; +} +.fullrock a:focus, +.fullrock a:hover { + color: #f1f1f1; +} +.fullrock .svg.closer { + height: 50px; + width: 50px; + background-color: #fff; + cursor: pointer; + position: absolute; + top: 25px; + right: 25px; + opacity: 0.6; +} +.fullrock .svg.closer:hover { + opacity: 1; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.fullrock .svg.logo-menu { + position: absolute; + width: 110px; + top: -70px; +} +#myNav { + display: none; +} +#typed-cursor { + opacity: 1; + -webkit-animation: blink 0.9s infinite; + animation: blink 0.9s infinite; +} +.maping .datacenters { + border: solid 2px #fff; + width: 22px; + height: 22px; + border-radius: 24px; + cursor: pointer; + position: absolute; +} +.maping .datacenters.montreal { + top: 38%; + left: 28%; +} +.maping .datacenters.newyork { + top: 44%; + left: 26%; +} +.maping .datacenters.portugal { + top: 46%; + left: 44%; +} +.maping .datacenters.london { + top: 38%; + left: 46.5%; +} +.maping .datacenters.moskow { + top: 35%; + left: 56%; +} +.maping .datacenters.hongkong { + top: 54%; + left: 79%; +} +.maping .datacenters.singapure { + top: 64%; + left: 77%; +} +@keyframes blink { + 0% { + opacity: 1; + } + 50% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +@-webkit-keyframes blink { + 0% { + opacity: 1; + } + 50% { + opacity: 0; + } + 100% { + opacity: 1; + } +} +.balancing .load b { + font-size: 22px; + margin-bottom: 12px; + display: inline-block; + font-family: "Open Sans Semibold"; +} +.balancing .load .info { + font-size: 16px; + line-height: 30px; + color: #4c4a47; +} +.included { + margin-top: 25px; + color: #fff; + line-height: 26px; + font-size: 16px; +} +.sidebar .included h4 { + margin-bottom: 20px; + font-family: "Open Sans"; +} +.included i { + padding-right: 12px; + font-size: 20px; + vertical-align: middle; +} +.sidebar .ordersummary h4 { + margin-bottom: 20px; + font-family: "Open Sans Semibold"; +} +.included ul { + padding-left: 0; +} +.included ul li { + list-style: none; +} +.godown { + border: none; + position: absolute; + left: calc(250px + 55vw - 768px) !important; + margin-top: 200px; + z-index: 2; + -webkit-animation: moverdown 1s infinite alternate; + animation: moverdown 1s infinite alternate; +} +.godown span { + position: absolute; + letter-spacing: 1px; + top: -10px; + font-size: 16px; + left: 0; + font-family: "Open Sans Semibold"; + -webkit-transform: rotate(-90deg) !important; + -moz-transform: rotate(-90deg); + -ms-transform: rotate(-90deg); + -o-transform: rotate(-90deg); +} +@-webkit-keyframes moverdown { + 0% { + transform: translateY(0); + } + 100% { + transform: translateY(-10px); + } +} +@keyframes moverdown { + 0% { + transform: translateY(0); + } + 100% { + transform: translateY(-10px); + } +} +.soc-icons-apply { + position: absolute; + padding-top: 0; + padding-left: 0; + top: 0; + right: 0; + margin-right: 20px; + margin-top: 20px; +} +.soc-icons-apply a { + display: inline-block; + margin: 0 10px 20px 0; +} +.soc-icons-apply a:hover { + color: #fdd700; + text-decoration: none; +} +.soc-icons-apply a:hover pan { + color: #fdd700; +} +.soc-icons-apply span { + font-size: 14px; + background-color: #fff; + display: block; + height: 36px; + line-height: 36px; + text-align: center; + border-radius: 15px; + width: 36px; + transition: 0.3s; + box-shadow: 0 2px 8px 0 rgba(62, 62, 79, 0.15); +} +.soc-icons-apply span:hover { + color: #fdd700; +} +.randomline { + position: absolute; + right: 0; + bottom: 0; + margin-bottom: 50px; +} +.bigline { + width: 50px; + margin-bottom: 8px; +} +.smallline { + position: absolute; + right: 0; + width: 15px; +} +.mfp-fade.mfp-bg { + opacity: 0; + -webkit-transition: all 0.15s ease-out; + -moz-transition: all 0.15s ease-out; + transition: all 0.15s ease-out; +} +.mfp-fade.mfp-bg.mfp-ready { + opacity: 0.8; +} +.mfp-fade.mfp-bg.mfp-removing { + opacity: 0; +} +.mfp-fade.mfp-wrap .mfp-content { + opacity: 0; + -webkit-transition: all 0.15s ease-out; + -moz-transition: all 0.15s ease-out; + transition: all 0.15s ease-out; +} +.mfp-fade.mfp-wrap.mfp-ready .mfp-content { + opacity: 1; +} +.mfp-fade.mfp-wrap.mfp-removing .mfp-content { + opacity: 0; +} +.popup-gallery img { + width: 100%; + padding: 0; +} +.zoo-content { + position: absolute; + right: 0; + height: 100%; + width: 100%; + top: 0; +} +.zoo-content:hover { + opacity: 0; + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; +} +.zoo-content .icoo { + text-align: center; + margin: 0; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); +} +.zoo-content .icoo i { + font-size: 34px; + color: #fff; + border-radius: 50px; + padding: 10px; + border: none; + opacity: 0.8; +} +.config.cd-main-content { + position: initial !important; +} +.config.cd-main-content .cd-filter-content { + padding-left: 0; +} +.config.cd-main-content input.form-control { + width: 65px; +} +.config.cd-main-content .table td { + vertical-align: middle; +} +.config.cd-main-content .table thead td { + font-family: "Open Sans Semibold"; +} +.config.cd-main-content .table tbody { + padding-top: 20px; +} +.config.cd-main-content .cd-filter-block ul { + padding: 0; +} +.cd-filter-block input.range-slider-input { + height: 1px; +} +.range-slider-input::-webkit-slider-thumb { + cursor: pointer; + height: 16px; + width: 16px; + border-radius: 50px; + border: none; +} +.range-slider-input::-moz-range-thumb { + cursor: pointer; + height: 16px; + width: 16px; + border-radius: 50px; + border: none; +} +.ordersummary { + margin-top: 30px; + font-size: 14px; +} +.ordersummary td { + padding: 10px 0 !important; +} +.notfound p { + line-height: 30px; +} +.knowledge a.category { + color: #212122; +} +.color-scheme { + position: fixed; + list-style: none; + display: grid; + zoom: 1; + margin: 0; + z-index: 99; + right: 15px; + top: 230px; + padding: 0; + margin-right: 7px; +} +.color-scheme li { + display: grid; + margin-top: 10px; +} +.color-scheme a { + text-decoration: none; + border-radius: 15px; + display: block; + height: 15px; + width: 15px; +} +.content-btn-demos { + line-height: 48px; + margin-right: 5px; + z-index: 99; + right: 10px; + position: fixed; + top: 350px; +} +.btn-demos { + width: 65px; + height: 62px; + color: #212122; + line-height: 19px; + text-align: center; + vertical-align: middle; + align-items: center; + border-radius: 17px; + font-size: 12px; + background-color: #efefef; + list-style: none; + display: grid; + zoom: 1; + padding: 11px; + font-weight: 900; + font-family: "Open Sans bold"; + box-shadow: 0 5px 10px 0 rgb(62 62 79 / 50%); +} +.btn-demos span { + font-size: 20px; +} +.pink a { + background: #ee5586; +} +.blue a { + background: #68cef5; +} +.green a { + background: #bfd84d; +} +.dark a { + background: #515152; +} +svg { + vertical-align: middle; + border-style: none; +} +.svg.pattern { + position: absolute; + bottom: 0; + top: 0; +} +.infonews small { + color: #bcbcbc !important; +} +.infonews-nav li { + position: relative; + display: inline-block; +} +.infonews-nav a { + color: #bcbcbc !important; + font-size: 13px; + margin-left: 20px; + cursor: pointer; + font-weight: 600; + vertical-align: text-top; +} +.infonews-nav a:last-child { + font-family: Open Sans Extrabold; +} +.infonews-nav a:hover { + text-decoration: none; + color: #fff !important; +} +#my-popover-content p { + font-size: 40px; +} +#my-popover-content { + display: none; +} +svg.blackfriday { + min-height: 100%; + min-width: 1024px; + width: 100%; + height: auto; + position: fixed; + top: 0; + left: 0; +} +#games .gametitle { + position: absolute; + z-index: 9; + bottom: 0; + left: 0; + right: 0; + line-height: 32px; + background: rgba(0, 0, 0, 0.7); + padding: 25px 25px 25px; + border-bottom-left-radius: 15px; + border-bottom-right-radius: 15px; +} +#games .gametitle strong { + font-size: 18px; + display: block; + color: #fff; +} +#games .gametitle .button { + position: absolute; + display: none; + left: 18px; + right: 18px; + bottom: -56px; +} +#games .hoverbg { + height: inherit; + width: 100%; + left: 0; + right: 0; + z-index: 8; + position: absolute; + bottom: -100%; + content: " "; + border-radius: 15px; + opacity: 0; + -o-transition: 0.25s; + -ms-transition: 0.25s; + -moz-transition: 0.25s; + -webkit-transition: 0.25s; + transition: 0.25s; + top: 0; + background: rgba(0, 0, 0, 0.5); +} +#games .refing { + height: 350px; + overflow: hidden; + width: 100%; + position: relative; + border-radius: 15px; + text-align: center; + margin-top: 50px; +} +#games .col:hover { + position: absolute; + left: 0; + top: 0; + transform: translate3d(0, 0, 0); +} +#games .col:hover .hoverbg { + opacity: 1; + border-radius: 15px; + height: inherit; +} +#games .col:hover .gametitle { + background: 0 0; + bottom: 80px; + -webkit-transition: bottom 0.25s ease-in-out; +} +#games .col:hover .gametitle .button { + display: block; + text-align: center; +} +#games .col:hover .button { + bottom: -46px; +} +.agpanel { + position: relative; + padding-left: 75px; +} +.agpanel svg { + position: absolute; + top: 0; + width: 60px; + height: auto; + left: 0; +} +.agpanel p { + line-height: 32px; +} +@media (min-width: 1200px) and (max-width: 5000px) { + .pricing.slider .slides-toggle .slide-prev { + left: -10px; + } + .pricing.slider .plan-container { + margin-right: 26px; + } + .pricing.slider .slider-wrap { + margin-left: 15px; + } +} +@media (max-width: 1399px) { + .owl-buttons { + display: none; + } +} +@media (max-width: 1024px) { + svg.blackfriday { + left: 50%; + margin-left: -512px; + } +} +@media (min-width: 992px) and (max-width: 1199px) { + .blog .sidebar .posts .tabs-header li { + padding: 0 5px 18px 5px; + } + .blog .sidebar .archives .img { + float: none; + margin-bottom: 5px; + } +} +@media (max-width: 1199px) { + .top-header .wrapper .round:before { + top: 12px; + } + .pricing.slider .info { + margin-right: 0; + } + .pricing.slider .slides-toggle .slide-prev { + left: -15px; + } + .pricing.slider .slides-toggle .slide-next { + right: -15px !important; + } + .pricing.slider .slides-toggle .slide-prev span { + display: none !important; + } + .pricing.slider .slides-toggle .slide-next span { + display: none !important; + } + .pricing.slider .wrapper { + width: 300px; + display: inline-block; + } + .tabs.offers-tabs .tabs-content .tabs-item.active:before { + content: none; + } + .history-section .wrappper h3 { + font-size: 20px; + } + .history-section .wrappper .desc { + display: table; + } + .product-title h3 { + font-size: 12px; + padding: 14px; + } + .product-meta { + padding: 0 15px; + margin-top: 35%; + } + #sidebar { + width: auto !important; + } + .team .soc-icons-wrap .icons { + display: inline-block; + margin-top: 140px; + padding: 10px; + } + .countdown .wrapper .heading { + font-size: 40px; + } + .countdown .wrapper .heading { + font-size: 20px; + } + .countdown .wrapper .clock { + font-size: 40px; + } + .countdown .wrapper .clock div { + padding: 20px 37px; + } + .countdown .wrapper .clock span { + font-size: 13px; + } + .btn-order .continue { + padding: 15px 30px; + font-size: 16px; + } + .casestudy .icon-quote { + margin-left: 10px; + } + .casestudy .content-info p:last-child { + display: none; + } + .casestudy .content-info hr { + display: none; + } + .blog .sidebar .heading { + font-size: 14px; + } + .blog .sidebar .archives .item-wrap { + padding-bottom: 0; + } + .wrap-blog .infos i { + font-size: 22px; + } + .footer .footer-menu .menu-item { + margin-left: 0; + } + .footer .soc-icons.m-left { + padding-left: 90px; + } + .footer .logo-bg { + margin-top: 56px; + width: 380px; + } + .wpc-vps-info .content-price { + padding: 50px 40px; + } + .wpc-vps-info .h-plans-info .price { + font-size: 35px !important; + } + .h-plans-info .price .symbol { + font-size: 24px !important; + } + .blog .sidebar .tabs .tabs-header li { + margin: 0 0 30px 0; + width: 100%; + } + .blog .sidebar .posts .img { + width: 100%; + margin-bottom: 15px; + } + .megamenu .start-offer .inner span { + display: none; + } + .megamenu-list .start-offer .inner span { + display: none; + } +} +@media (min-width: 1199px) { + .product-title h3 { + font-size: 13px; + padding: 13px; + } +} +@media (min-width: 1170px) { + .cd-gallery.filter-is-visible { + width: 100% !important; + } + .cd-filter { + width: 100% !important; + } + .cd-filter form { + width: 100% !important; + padding: 0 !important; + } + .cd-gallery li { + width: 31% !important; + } + .cd-filter-trigger.filter-is-visible, + .cd-filter-trigger.filter-is-visible:hover { + color: #4c4a4a; + } + .no-touch .cd-filter-trigger:hover { + text-decoration: none; + } +} +@media (min-width: 767px) and (max-width: 991px) { + .team .soc-icons-wrap .icons { + padding-top: 80px; + } + .nav-menu .main-menu a { + font-family: "Open Sans" !important; + margin-right: 20px !important; + } + .menu-item div.badge { + display: none; + } + .megamenu-list .service-list { + border-radius: 12px; + } + .menu-item.menu-item-has-children.me-2 { + margin-right: 0 !important; + } + .nav-menu .main-menu a.v-stroke { + padding-right: 0 !important; + } + .megamenu .service-list .service .media-body a { + font: 13px "Open Sans Bold" !important; + } + .megamenu .service-list { + border-bottom-right-radius: 12px; + border-top-right-radius: 12px; + } +} +@media (max-width: 991px) { + .nav-menu + .main-menu + .menu-item + .menu-large + .service-list + .service + .media-body + p { + font-size: 11px; + color: #525252; + } + .nav-menu .main-menu .menu-item .menu-large li.start-offer { + width: 205px; + } + .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner { + padding: 20px; + } + .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .title { + font-size: 18px; + } + .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner p { + font-size: 14px; + } + .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .val { + font-size: 13px; + } + .nav-menu .main-menu .menu-item .menu-large li.start-offer .inner .dis { + font-size: 18px; + } + .top-banner .subheading { + line-height: 32px; + font-size: 15px; + margin-top: 0; + } + .top-banner .heading { + font-size: 38px; + font-family: "Open Sans"; + line-height: 45px; + } + .owl-carousel .animatype { + font-size: 32px; + } + .chars { + position: relative; + display: inline-flex; + right: 0; + top: 0; + } + .chars div { + padding-top: 30px; + } + .chars p { + color: #fff; + font-size: 13px; + margin-top: 8px; + line-height: 26px; + } + .pricing .heading { + font-size: 38px; + } + .plan-container .title { + font-size: 20px; + } + .infonews .link { + flex: 0 0 100%; + max-width: 100%; + } + .pricing.slider .wrapper { + width: 230px; + display: inline-block; + } + .section-heading.small-text { + font-size: 28px; + } + .section-subheading.small-text { + font-size: 16px; + } + .pricing .list-info li { + font-size: 13px !important; + } + .tabs.offers-tabs .tabs-content .heading { + font-size: 18px; + margin-bottom: 6px; + } + .tabs.offers-tabs .tabs-content .info { + font-size: 14px; + } + .btn-x { + padding: 10px 50px; + font: 16px "Open Sans"; + border: solid 2px #fdd700; + } + .services.circle-section .heading { + text-align: center; + margin-top: 100px; + } + .services.circle-section .info { + text-align: center; + } + .services.circle-section .skill-section { + margin-bottom: 10px; + } + .services.circle-section .circle-wrapper { + margin-top: 52px; + } + .services .service-wrap .info { + padding-bottom: 30px; + padding-right: 0; + } + .services .service-wrap .service-section.service { + border-top: 1px solid #e7eaed; + border-right: 1px solid #e7eaed; + } + .history-section .img { + margin: 0 auto; + display: block; + } + .history-section .img-wrap:after { + content: none; + } + .history-section .wrappper .title:before { + display: none; + } + .history-section .wrappper img { + width: 15%; + } + .product-title h3 { + font-size: 14px; + padding: 14px; + } + .product-meta { + padding: 0 80px; + margin-top: 35%; + } + #sidebar { + width: auto !important; + position: relative !important; + margin-top: 50px !important; + top: 0 !important; + } + .shop .select.fisrt { + margin: 0; + } + .shop .select.second { + margin: 0; + } + .shop .select { + padding-left: 0; + padding-right: 0; + margin-bottom: 30px; + } + .shop .select i { + right: 10px; + } + .products .wrapper .img-wrap > img { + width: 100%; + } + .products .wrapper { + width: 30%; + } + .product-detail .form-addcart .number-wrap { + margin-left: 0; + margin-bottom: 30px; + } + .product-detail .form-addcart .color-wrap { + margin-left: 0; + } + .product-detail .form-addcart .btn { + margin-top: 30px; + } + .team .soc-icons-wrap .icons { + display: inline-block; + margin-top: 30px; + } + .center.slider .plan-container .period { + font-size: 14px !important; + } + .search-input input.btn { + padding: 16px 35px !important; + font-size: 14px !important; + } + .countdown .wrapper { + width: 100%; + } + .cart .payment-form { + padding: 0; + } + .cart .table tbody .section-bar .check { + width: 100%; + text-align: center; + margin-right: 0; + } + .casestudy .sec-bg1 { + padding: 50px; + text-align: center; + } + .casestudy .content-info div { + display: none; + } + .casestudy .slide-next, + .casestudy .slide-prev { + bottom: 20px; + } + .casestudy .slide-prev { + bottom: 20px; + } + .casestudy .casestudy { + text-align: center; + } + .casestudy .study-img { + text-align: center; + } + .casestudy .social-icons { + text-align: center; + margin-left: 0; + } + .blog .media.right { + padding-left: 0; + } + .blog .media.answer { + padding-left: 30px; + } + .wrap-blog .heading { + font-size: 18px; + } + .blog.blog .wrap-blog .media img { + display: none; + } + .blog .text-blog .social-icon { + text-align: left; + } + .blog .text-blog .social-icon a:first-child { + margin-left: 0; + } + .wrap-blog .social-icon { + width: 100%; + margin-top: 15px; + text-align: left; + } + .wrap-blog .text-blog a { + margin-left: 0; + } + .footer .footer-menu .menu-item { + width: 100%; + font-size: 13px; + } + .footer .heading { + font-size: 22px; + } + .footer h6 { + font-size: 12px; + } + .footer .logo-footer { + width: 165px; + } + .footer .soc-icons i { + height: 34px !important; + line-height: 34px !important; + width: 34px !important; + font-size: 14px; + } + .cd-filter-content a { + display: none; + } + label.checkbox-label a { + display: inline-block !important; + } + .section-404 { + background-size: 90%; + } + .section-404 .title span:first-child { + display: block; + } + .section-404 .subtitle { + font-size: 16px; + } + .getready .column-support-txt { + width: 100%; + margin-bottom: 30px; + } + .opa-pink { + display: none; + } + .getready .btn-floats { + text-align: left; + } + .overview .overview-info { + padding: 30px 0; + } + .blog .media .media-body { + padding-left: 0 !important; + } + .wpc-vps-info .price-wrap { + margin-top: 30px; + } + .wpc-vps-info .title .info { + font-size: 20px; + } + .wpc-vps-info .price-wrap .price { + margin-bottom: 10px; + padding: 14px 40px; + } + .wpc-vps-info .price-wrap .title { + padding: 20.5px 41px; + } + .wpc-vps-info .price-wrap .title { + position: static; + } + .footer .logo-bg { + margin-top: 35px; + width: 360px; + } + .circle-wrapper { + margin-top: 50px; + } + .sec-uping { + margin: initial; + } + .godown { + display: none; + } + .history-section.feat01 hr { + display: block !important; + margin-bottom: 80px; + } + .history-section.feat01 .row .first { + padding-bottom: 50px; + } + .history-section.feat01 .row .second { + padding-top: 50px; + } + .history-section.feat01 .row .third { + padding-bottom: 50px; + } + .history-section .row img.first { + padding-top: 0; + } + #clone { + display: none; + } + .tabs .btn-select-plan { + position: initial; + margin-top: 0; + } + .tabs .btn-select-plan ul { + z-index: 9; + display: block; + margin-bottom: 50px; + } + .tabs .btn-select-plan ul li.mb-2 { + margin-bottom: 0 !important; + } + .top-header .wrapper .subheding { + font-size: 14px; + } + .top-header .wrapper .included { + display: none; + } + .top-header .wrapper .aboutus { + margin-bottom: 0; + } + .countdown .wrapper .clock { + font-size: 32px; + } + .countdown .wrapper .clock div { + margin: 10px 30px 15px 0; + padding: 20px 35px; + } + .countdown .wrapper .clock div:last-child { + margin-right: 0; + } + .countdown .wrapper .clock span { + font-size: 10px; + } + .cd-filter-content .dflex { + display: initial !important; + } + .tabs.offers-tabs .info-content { + margin-top: 30px; + } + .menu-wrap .logo-menu { + width: 90px; + padding-top: 3px; + } + .fullrock .fullrock-content .svg.soon { + margin-top: 30px; + } + .megamenu .service-list { + padding: 20px 40px; + } + .megamenu .start-offer .inner .title { + font-size: 16px; + } + .megamenu .start-offer .inner b { + display: none; + } + .megamenu .service-list { + flex: 0 0 100%; + max-width: 100%; + padding: 20px 40px; + } + .megamenu .start-offer { + display: none; + } + .megamenu-list .service-list { + flex: 0 0 100%; + max-width: 100%; + padding: 20px 40px; + } + .megamenu-list .start-offer { + display: none; + } + .infonews .news { + display: none; + } + .infonews .link { + flex: 0 0 100%; + max-width: 100%; + } +} +@media (min-width: 991px) { + .domain-prices li:first-child { + padding-left: 0; + } + .nav-menu .main-menu > .menu-item > .sub-menu { + margin-left: -65px; + display: block !important; + } + .nav-menu .main-menu > .menu-item > .sub-menu.menu-large { + margin-left: -120px !important; + display: block !important; + } +} +@media (max-width: 767px) { + .cd-main-content { + position: absolute !important; + height: 100% !important; + } + .cd-main-content .cd-filter form { + padding: 60px 20px; + } + .cd-main-content.is-fixed .cd-filter form { + height: 100vh; + overflow: auto; + -webkit-overflow-scrolling: touch; + } + .cd-main-content.sec-up { + margin: 0 !important; + z-index: 3 !important; + } + .cd-main-content .cd-filter .sec-main { + padding: 0 !important; + border-radius: 0 !important; + box-shadow: none !important; + } + .cd-filter .row { + margin: 0 !important; + display: block !important; + } + .cd-filter .container { + margin: 0 !important; + padding: 0 !important; + } + .btn.cd-filter-trigger { + display: inline-block !important; + width: auto !important; + text-indent: initial !important; + } + .cd-main-content.animated { + animation-fill-mode: initial !important; + } + .nav-menu { + padding: 0; + } + .nav-menu .main-menu > .menu-item .fa-caret-right:before { + content: "\f0d7"; + } + .nav-menu .main-menu > .menu-item > .sub-menu a { + color: #72757b; + } + .nav-menu .main-menu > .menu-item > .sub-menu > .menu-item:last-child { + padding-bottom: 0; + } + .nav-menu .main-menu > .menu-item > .sub-menu > .menu-item a { + color: #72757b; + font-size: 15px; + margin: 0; + } + .nav-menu .main-menu > .menu-item > .sub-menu > .menu-item > .sub-menu { + position: static; + display: none; + opacity: 1; + padding: 0; + } + .nav-menu .main-menu > .menu-item > .sub-menu { + position: static; + display: none; + opacity: 1; + visibility: visible; + } + .nav-menu .main-menu > .menu-item:hover > a { + color: #fdd700; + background-color: transparent; + } + .nav-menu .main-menu a { + margin-right: 0 !important; + } + .nav-menu .menu-toggle { + padding: 7px 6px 4px 6px; + display: inline-block; + right: 0; + top: 0; + z-index: 1000; + } + .menu-wrap.line { + border-color: transparent; + } + .menu-wrap .col-sm-9.col-lg-7.col-lg-offset-2.p-0 { + height: 0; + } + .menu-wrap.fixed .nav-menu { + padding: 0 0 10px 0; + } + .menu-wrap.fixed .menu-toggle.top { + top: 5px; + } + .menu-wrap.light .main-menu > .menu-item > .sub-menu { + background-color: #aeb0b5; + } + .menu-wrap.light.fixed .menu-toggle { + top: -49px; + } + .menu-wrap.light.fixed .logo-menu { + position: relative; + top: 0; + } + .menu-wrap.light .menu-toggle { + top: -50px; + } + .menu-wrap.active .nav-menu .main-menu { + transform: translateX(0); + padding: 80px 20px 80px; + list-style-type: none; + } + .menu-wrap { + display: none; + } + .menu-wrap.mobile { + display: block; + } + .menu-wrap.mobile.active .logo-menu { + z-index: 10; + position: relative; + } + .menu-wrap.mobile.active .logo-responsive { + position: relative; + z-index: 99; + display: block !important; + } + .menu-item.active.menu-item-has-children { + background-color: #fdd700; + } + .nav-menu .main-menu { + display: block; + text-align: center; + position: fixed; + height: 100%; + width: 100%; + background: #15212a; + top: 0; + left: 0; + z-index: 999; + overflow-y: auto; + padding: 0 0 30px; + -webkit-transform: translate3d(0, 200%, 0); + -moz-transform: translate3d(0, 200%, 0); + -ms-transform: translate3d(0, 200%, 0); + -o-transform: translate3d(0, 200%, 0); + transform: translate3d(0, 200%, 0); + -webkit-transition: 0.3s; + -moz-transition: 0.3s; + -ms-transition: 0.3s; + -o-transition: 0.3s; + transition: 0.3s; + } + .nav-menu .main-menu .menu-item.active > a { + color: #121e25 !important; + font-weight: 700; + font-size: 13px; + } + .nav-menu .main-menu .menu-item > a { + color: #afafaf; + font-size: 24px; + } + .nav-menu .main-menu .menu-item > a .badge { + font-size: 12px; + margin: 7px 10px; + position: absolute; + } + .nav-menu .main-menu > .menu-item.menu-item-has-children > a:after { + display: none; + content: "\f0d7"; + font: normal normal normal 14px/1 FontAwesome; + position: absolute; + right: -15px; + top: 2px; + } + .nav-menu .main-menu > .menu-item > .sub-menu { + z-index: 9; + padding-top: 20px; + border: none; + box-shadow: none !important; + background-color: transparent; + } + .nav-menu .main-menu > .menu-item.active > .sub-menu { + padding: 20px; + background-color: #fdd700; + } + .nav-menu .main-menu > .menu-item.active > .sub-menu > .menu-item { + border-color: transparent; + padding: 10px 0 10px 0; + } + .nav-menu .main-menu > .menu-item { + width: 100%; + float: none; + margin-left: 0; + padding: 15px 0; + cursor: pointer; + } + .nav-menu .main-menu > .menu-item:last-child { + border-bottom: none; + } + .nav-menu .main-menu > .menu-item > .sub-menu > .menu-item { + border: none; + padding: 5px; + } + .menu-item .sub-menu .menu-item a:hover { + color: #fdd700 !important; + } + .menu-item.active .sub-menu .menu-item a { + color: #121e25 !important; + } + .menu-item.active .sub-menu .menu-item a:hover { + color: #fff !important; + } + .top-banner .heading { + font-size: 52px; + font-family: "Open Sans Semibold"; + line-height: 58px; + } + .top-banner .subheading { + margin-bottom: 20px; + margin-left: 0; + } + .hidden-xs { + display: inline-block !important; + } + .pricing .subheading { + margin-bottom: 50px; + } + h2.section-heading { + font-size: 32px !important; + line-height: 38px; + } + .section-heading.small-text { + font-size: 28px !important; + } + .section-heading.small-text { + font-size: 28px !important; + } + .section-subheading.small-text { + font-size: 16px !important; + } + .section-offer.services .tabs.offers-tabs img { + margin: 0 auto; + max-width: 100%; + } + .pricing.slider .info { + margin-top: 0; + } + .pricing.slider .soc-icons { + display: block; + float: none; + margin-top: 10px; + margin-right: 0; + text-align: left; + padding: 0; + } + .pricing.slider .slides-toggle { + display: none; + } + .pricing.slider .swiper-wrapper .price { + font-size: 38px; + } + .pricing.slider .swiper-wrapper sup { + font-size: 12px; + } + .pricing.slider .slides-toggle .slide-next { + right: -15px; + } + .pricing.slider .slides-toggle .slide-prev { + left: -15px; + } + .pricing.slider .slides-toggle .slide-prev { + left: -80px; + } + .pricing.slider .slides-toggle .slide-next { + right: -80px; + } + .pricing.slider .wrapper { + width: 100% !important; + display: inline-block; + } + .pricing .table .title { + font-size: 14px; + } + .best-plans.pricing .wrapper { + margin-top: 0; + } + .best-plans.pricing .wrapper.first { + margin-top: 50px; + } + .best-plans .table-responsive { + border: none; + margin-bottom: 0; + } + .section-plans .heading { + font-size: 22px; + } + .h-plans-info .header-wrap { + text-align: center; + } + .tabs.offers-tabs .img { + display: block; + margin: 0 auto; + } + .tabs.offers-tabs .tabs-content .info { + padding-right: 0; + } + .tabs.offers-tabs .tabs-content .heading { + margin-top: 30px; + } + .tabs.offers-tabs .tabs-header li { + margin-top: 50px; + } + .circle-section .title-round { + font-size: 18px; + font-weight: 700; + } + .services.circle-section .heading { + margin-top: 34px; + } + .services.circle-section .info { + font-size: 14px; + } + .history-section .wrappper.right { + text-align: center; + padding: 0 15px; + } + .history-section .wrappper { + text-align: center; + } + .service-skills .skills-wrap { + text-align: center; + } + .history-section .history-separate { + margin-bottom: 0; + } + .history-section .history-separate img { + padding: 0 120px 30px; + } + .history-section .wrappper img { + width: 25%; + margin: 0 0 20px 0; + float: none; + } + .filter-menu ul li { + font-size: 13px; + } + .product-meta { + padding: 0 70px; + margin-top: 35%; + } + .details .wrappper .value { + text-align: center; + float: none; + margin: 0; + } + .details .wrappper .quantity { + display: inline-grid; + } + .shop .select { + margin: 0 0 30px; + } + .shop .select.second { + margin: 30px 0 0; + } + .products .wrapper { + width: 49%; + padding-right: 18px; + padding-left: 18px; + float: none; + display: inline-block; + } + .products .btn { + padding: 25px 38px; + font-size: 14px; + } + .team .soc-icons-wrap .icons { + margin-top: 250px; + } + .modal-dialog { + min-height: calc(100vh - 20px); + } + .fill-input { + font-size: 16px !important; + padding: 16px 20px 16px 20px !important; + } + .general-input input.btn { + padding: 17px 17px; + } + .domain-prices li { + padding: 10px 12px !important; + font-size: 14px !important; + } + .subcribe { + display: none; + } + .countdown .wrapper .clock .divider { + margin-top: -38px; + font-size: 25px; + } + .countdown .wrapper .clock span { + font-size: 12px; + margin: 0 20px; + } + .countdown .wrapper .clock div:first-child { + border: none; + background-color: transparent !important; + color: #212122; + } + .cart .table-responsive { + border: none; + } + .cart .data-cart .btn.order { + margin-left: 0; + margin-top: 20px; + } + .cart.end { + padding-top: 50px; + } + .casestudy .author { + padding-left: 0 !important; + } + .casestudy .content-info { + padding-left: 0 !important; + } + .casestudy .ml-4 { + margin-left: 0 !important; + } + .casestudy .slide-prev { + display: none; + } + .casestudy .slide-next { + display: none; + } + .casestudy .casestudy { + text-align: center; + margin-left: 0; + } + .accordion.faq .panel-title { + font-size: 15px; + } + .accordion.faq .panel-title { + font-size: 14px; + line-height: 26px; + } + .accordion.faq .wrapper-collapse .list li { + font-size: 14px; + } + .best-plans .table div.title-table { + font-size: 15px; + } + .best-plans .table td { + font-size: 15px; + } + .wrap-blog { + padding: 0; + } + .wrap-blog > img { + width: 100%; + } + .blog .media.answer { + padding-left: 30px; + } + .blog .sidebar { + margin-top: 80px; + } + .footer { + text-align: center; + } + .footer .footer-top img { + width: 160px; + } + .footer .soc-icons a { + margin: 0 8px 0 5px !important; + } + .footer .payment-list li { + font-size: 18px !important; + } + .footer .payment-list li p { + font-size: 12px !important; + } + .footer .footer-bottom .copyrigh { + margin-bottom: 10px; + font-size: 14px; + } + .footer .footer-menu { + padding: 0; + margin-left: 0; + } + .footer .footer-menu { + float: none; + text-align: center; + padding: 0; + margin-left: 0; + } + .footer .payment-list { + float: none; + display: block; + text-align: center; + padding: 0; + margin-left: 0; + } + .footer .footer-menu .menu-item { + text-align: center; + font-size: 16px; + } + .footer .footer-top .col-md-3.col-sm-6 { + margin-bottom: 50px; + } + .footer .footer-top .col-md-3.col-sm-6:last-child { + margin-bottom: 30px; + } + .footer .col-md-3.col-sm-6 { + margin-bottom: 50px; + } + .footer .col-md-3.col-sm-6:last-child { + margin-bottom: 10px; + } + .footer .footer-bottom .footer-menu { + top: 0 !important; + margin-bottom: 10px; + } + .footer .soc-icons { + text-align: center; + padding-left: 0; + } + .footer .soc-icons i { + font-size: 18px; + } + .footer .logo-bg { + display: none; + } + .cd-tab-filter ul { + display: none; + } + .cd-tab-filter.is-open ul { + display: none; + } + .cd-tab-filter::after { + display: none; + } + .cd-filter-content a { + display: block; + } + .table td { + padding: 0.75rem; + } + .section-404 .input-group { + margin-top: 35px; + } + .section-404 .img { + visibility: hidden; + } + .getready .column-support-subtitle { + font-size: 16px; + line-height: 26px; + } + .sec-main { + padding: 20px; + } + .general-input { + width: 100% !important; + } + .owl-carousel .vc-parent.fix { + height: 65% !important; + } + .custom-element-right { + display: none !important; + } + .blackfriday { + display: none !important; + } + .cd-gallery li { + width: 100%; + margin-bottom: 2em; + } + .overview .overview-info { + text-align: center; + } + .overview .img-over { + text-align: center; + } + .overview .overview-info { + padding: 60px 0; + } + .form-contact i { + display: none; + } + .wpc-cloud-range .info-range { + font-size: 14px; + } + .owl-carousel .animatype { + font-size: 28px; + } + .maping .datacenters { + width: 14px; + height: 14px; + } + .path-left { + display: none; + } + .path-right { + display: none; + } + .top-header { + padding-top: 110px; + padding-bottom: 70px; + } + .top-header .wrapper .heading { + font-size: 42px; + } + .top-header .wrapper .subheading small { + display: none; + } + .soc-icons-apply { + display: none; + } + .countdown .wrapper .clock { + font-size: 32px; + } + .countdown .wrapper .clock div { + border: none !important; + margin: 0 10px 0 0; + padding: 0; + } + .countdown .wrapper .clock span { + font-size: 13px; + margin-top: 0; + } + .notfound p { + font-size: 14px; + } + .notfound br { + display: none; + } + .megamenu .service-list .service .media-body a { + font-size: 14px !important; + } + .megamenu-list .service-list .service .media-body a { + font-size: 14px !important; + } + .count-txt { + font-size: 20px; + } + .count-content .clock#specialclock { + font-size: 20px; + } + .svg.pattern { + display: none; + } + .owl-carousel .subheading .feat { + line-height: 36px; + } + .vc-parent { + min-height: 600px; + } + .infonews { + display: none; + } + .footer .footer-bottom .footer-menu .menu-item { + display: block; + margin-left: 0; + } +} +@media (min-width: 768px) { + .cd-filter { + position: relative; + width: 100% !important; + height: auto !important; + background: 0 0 !important; + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + -o-transform: none !important; + transform: none !important; + } + .cd-filter .cd-close { + opacity: 0 !important; + top: -50px !important; + } + .cd-filter.filter-is-visible { + display: inline-block !important; + width: 100% !important; + box-shadow: none !important; + } + .cd-main-content.is-fixed .cd-filter { + position: relative !important; + height: auto !important; + overflow: initial !important; + } + .cd-filter::before { + display: none !important; + } + .cd-gallery.filter-is-visible { + margin-top: 28% !important; + } + .cd-main-content.is-fixed .cd-gallery { + padding-top: 600px !important; + } + .btn.cd-filter-trigger { + display: none !important; + } + .cd-filter-block .list li { + margin: 0 15px 15px 0 !important; + display: inline-block !important; + } + .cd-filter-block ul { + padding: 0 !important; + } + .menu-wrap.mobile { + display: none; + } + .menu-wrap .nav-menu { + float: left; + } + .nav-menu .main-menu > .menu-item > .sub-menu { + margin-left: -90px; + display: block !important; + } + .nav-menu .main-menu > .menu-item > .sub-menu.menu-large { + margin-left: -140px !important; + display: block !important; + } + .nav-menu .main-menu > .menu-item:hover > .sub-menu { + top: 55px; + opacity: 1; + visibility: visible; + } +} +@media (max-width: 576px) { + .secfeat { + display: none; + } + .chars { + display: none; + } + .domain-prices { + display: none; + } + .top-banner .heading { + font-family: "Open Sans Semibold"; + font-size: 42px; + line-height: 52px; + } + .top-header .wrapper .round:before { + top: 10px; + } + .tabs.offers-tabs .tabs-header ul { + padding: 0; + } + .tabs.offers-tabs .tabs-header li { + flex: 0 0 100%; + max-width: 100%; + } + .tabs.offers-tabs .tabs-header { + padding: 0; + } + .filter-menu ul { + padding: 0 0; + } + .filter-menu ul li { + font-size: 12px; + padding: 10px; + } + .featured.isotope .col-xs-6 { + width: 100% !important; + } + .best-seller .col-xs-6 { + width: 100% !important; + } + .product-meta { + padding: 0 70px; + margin-top: 35%; + } + .products .wrapper { + width: 100%; + } + .team .soc-icons-wrap .icons { + display: inline-block; + margin-top: 250px; + } + .cart .data-cart .order-suma { + margin-left: 0; + padding: 26px 46px; + } + .casestudy img { + width: 100%; + } + .pagination > li > a { + margin-bottom: 20px; + } + .special-footer { + margin-bottom: -150px; + } + .sec-main { + padding: 10px 15px; + margin-top: 2em; + } + .wrap-blog .wrapper { + padding: 60px 15px !important; + } + .blog.blog .wrap-blog .comments { + padding: 60px 30px !important; + } + .blog.blog .wrap-blog .livecomment { + padding: 60px 30px !important; + } + .blog .sidebar { + padding: 50px 15px !important; + } + .circle-section .text-start:first-child { + text-align: left !important; + } + .circle-section .text-start { + text-align: center !important; + } + .btn-demos { + display: none; + } + .casestudy .content-info p { + font-size: 16px; + } + .casestudy .author { + font-size: 28px; + } + .owl-theme .owl-nav.disabled + .owl-dots { + left: 30px; + text-align: left; + width: initial; + } +} +@media (max-width: 420px) { + .top-banner .heading span { + font-size: 40px; + } + .top-header .wrapper .heading { + font-size: 26px; + } + .top-header .wrapper .subheding { + font-size: 14px; + } + .section-heading.small-text { + font-size: 24px !important; + } + .section-heading.small-text { + font-size: 24px !important; + } + .team .soc-icons-wrap .icons { + display: inline-block; + margin-top: 185px; + } + .team .col-md-3.col-sm-6.col-xs-6 { + width: 100%; + } + .countdown .wrapper .clock span { + font-size: 10px; + margin-top: 10px; + } + .table-responsive { + border: none; + } + .payment-form .btn-check { + margin: 5px 5px 0; + } + .accordion.faq .wrapper-collapse .list { + margin-left: 0; + } + .wrap-blog .social { + width: 100%; + text-align: center; + } + .blog .social-icons { + text-align: center; + padding: 0; + } + .blog .media .text-comments { + width: 100%; + } + .pagination > li > a { + font-size: 16px; + padding: 5px 12px; + } + .pagination .next, + .pagination .prev { + font-size: 16px; + padding: 5px 12px; + } + .blog.blog .wrap-blog .media-left { + display: none; + } + .blog .media .media-body { + padding-left: 0; + } + .blog .media a.answer { + float: none; + } + .section-404 .title { + font-size: 38px; + } + .section-404 .input { + width: 100%; + } + .section-404 .input-group .btn { + width: 100%; + margin-top: 15px; + } + .top-header .wrapper .subheading { + font-size: 16px; + } + .wpc-cloud-range .noUi-tooltip { + display: none; + } +} diff --git a/static/felcloud/website/css/swiper.min.css b/static/felcloud/website/css/swiper.min.css new file mode 100644 index 0000000..4078880 --- /dev/null +++ b/static/felcloud/website/css/swiper.min.css @@ -0,0 +1,532 @@ +/** + * Swiper 5.1.0 + * Most modern mobile touch slider and framework with hardware accelerated transitions + * http://swiperjs.com + * Copyright 2014-2019 Vladimir Kharlampidi + * Released under the MIT License + * Released on: October 16, 2019 + */ +@font-face { + font-family: swiper-icons; + src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") + format("woff"); + font-weight: 400; + font-style: normal; +} +:root { + --swiper-theme-color: #007aff; +} +.swiper-container { + margin-left: auto; + margin-right: auto; + position: relative; + overflow: hidden; + list-style: none; + padding: 0; + z-index: 1; +} +.swiper-container-vertical > .swiper-wrapper { + flex-direction: column; +} +.swiper-wrapper { + position: relative; + width: 100%; + height: 100%; + z-index: 1; + display: flex; + transition-property: transform; + box-sizing: content-box; +} +.swiper-container-android .swiper-slide, +.swiper-wrapper { + transform: translate3d(0px, 0, 0); +} +.swiper-container-multirow > .swiper-wrapper { + flex-wrap: wrap; +} +.swiper-container-multirow-column > .swiper-wrapper { + flex-wrap: wrap; + flex-direction: column; +} +.swiper-container-free-mode > .swiper-wrapper { + transition-timing-function: ease-out; + margin: 0 auto; +} +.swiper-slide { + flex-shrink: 0; + width: 100%; + height: 100%; + position: relative; + transition-property: transform; +} +.swiper-slide-invisible-blank { + visibility: hidden; +} +.swiper-container-autoheight, +.swiper-container-autoheight .swiper-slide { + height: auto; +} +.swiper-container-autoheight .swiper-wrapper { + align-items: flex-start; + transition-property: transform, height; +} +.swiper-container-3d { + perspective: 1200px; +} +.swiper-container-3d .swiper-cube-shadow, +.swiper-container-3d .swiper-slide, +.swiper-container-3d .swiper-slide-shadow-bottom, +.swiper-container-3d .swiper-slide-shadow-left, +.swiper-container-3d .swiper-slide-shadow-right, +.swiper-container-3d .swiper-slide-shadow-top, +.swiper-container-3d .swiper-wrapper { + transform-style: preserve-3d; +} +.swiper-container-3d .swiper-slide-shadow-bottom, +.swiper-container-3d .swiper-slide-shadow-left, +.swiper-container-3d .swiper-slide-shadow-right, +.swiper-container-3d .swiper-slide-shadow-top { + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + pointer-events: none; + z-index: 10; +} +.swiper-container-3d .swiper-slide-shadow-left { + background-image: linear-gradient( + to left, + rgba(0, 0, 0, 0.5), + rgba(0, 0, 0, 0) + ); +} +.swiper-container-3d .swiper-slide-shadow-right { + background-image: linear-gradient( + to right, + rgba(0, 0, 0, 0.5), + rgba(0, 0, 0, 0) + ); +} +.swiper-container-3d .swiper-slide-shadow-top { + background-image: linear-gradient( + to top, + rgba(0, 0, 0, 0.5), + rgba(0, 0, 0, 0) + ); +} +.swiper-container-3d .swiper-slide-shadow-bottom { + background-image: linear-gradient( + to bottom, + rgba(0, 0, 0, 0.5), + rgba(0, 0, 0, 0) + ); +} +.swiper-container-css-mode > .swiper-wrapper { + overflow: auto; + scrollbar-width: none; + -ms-overflow-style: none; +} +.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar { + display: none; +} +.swiper-container-css-mode > .swiper-wrapper > .swiper-slide { + scroll-snap-align: start start; +} +.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper { + scroll-snap-type: x mandatory; +} +.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper { + scroll-snap-type: y mandatory; +} +:root { + --swiper-navigation-size: 44px; +} +.swiper-button-next, +.swiper-button-prev { + position: absolute; + top: 50%; + width: calc(var(--swiper-navigation-size) / 44 * 27); + height: var(--swiper-navigation-size); + margin-top: calc(-1 * var(--swiper-navigation-size) / 2); + z-index: 10; + cursor: pointer; + display: flex; + align-items: center; + justify-content: center; + color: var(--swiper-navigation-color, var(--swiper-theme-color)); +} +.swiper-button-next.swiper-button-disabled, +.swiper-button-prev.swiper-button-disabled { + opacity: 0.35; + cursor: auto; + pointer-events: none; +} +.swiper-button-next:after, +.swiper-button-prev:after { + font-family: swiper-icons; + font-size: var(--swiper-navigation-size); + text-transform: none !important; +} +.swiper-button-prev, +.swiper-container-rtl .swiper-button-next { + left: 10px; + right: auto; +} +.swiper-button-prev:after, +.swiper-container-rtl .swiper-button-next:after { + content: "prev"; +} +.swiper-button-next, +.swiper-container-rtl .swiper-button-prev { + right: 10px; + left: auto; +} +.swiper-button-next:after, +.swiper-container-rtl .swiper-button-prev:after { + content: "next"; +} +.swiper-button-next.swiper-button-white, +.swiper-button-prev.swiper-button-white { + --swiper-navigation-color: #ffffff; +} +.swiper-button-next.swiper-button-black, +.swiper-button-prev.swiper-button-black { + --swiper-navigation-color: #000000; +} +.swiper-button-lock { + display: none; +} +.swiper-pagination { + position: absolute; + text-align: center; + transition: 0.3s opacity; + transform: translate3d(0, 0, 0); + z-index: 10; +} +.swiper-pagination.swiper-pagination-hidden { + opacity: 0; +} +.swiper-container-horizontal > .swiper-pagination-bullets, +.swiper-pagination-custom, +.swiper-pagination-fraction { + bottom: 10px; + left: 0; + width: 100%; +} +.swiper-pagination-bullets-dynamic { + overflow: hidden; + font-size: 0; +} +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet { + transform: scale(0.33); + position: relative; +} +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active { + transform: scale(1); +} +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main { + transform: scale(1); +} +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev { + transform: scale(0.66); +} +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev { + transform: scale(0.33); +} +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next { + transform: scale(0.66); +} +.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next { + transform: scale(0.33); +} +.swiper-pagination-bullet { + width: 8px; + height: 8px; + display: inline-block; + border-radius: 100%; + background: #000; + opacity: 0.2; +} +button.swiper-pagination-bullet { + border: none; + margin: 0; + padding: 0; + box-shadow: none; + -webkit-appearance: none; + -moz-appearance: none; + appearance: none; +} +.swiper-pagination-clickable .swiper-pagination-bullet { + cursor: pointer; +} +.swiper-pagination-bullet-active { + opacity: 1; + background: var(--swiper-pagination-color, var(--swiper-theme-color)); +} +.swiper-container-vertical > .swiper-pagination-bullets { + right: 10px; + top: 50%; + transform: translate3d(0px, -50%, 0); +} +.swiper-container-vertical + > .swiper-pagination-bullets + .swiper-pagination-bullet { + margin: 6px 0; + display: block; +} +.swiper-container-vertical + > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic { + top: 50%; + transform: translateY(-50%); + width: 8px; +} +.swiper-container-vertical + > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic + .swiper-pagination-bullet { + display: inline-block; + transition: 0.2s transform, 0.2s top; +} +.swiper-container-horizontal + > .swiper-pagination-bullets + .swiper-pagination-bullet { + margin: 0 4px; +} +.swiper-container-horizontal + > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic { + left: 50%; + transform: translateX(-50%); + white-space: nowrap; +} +.swiper-container-horizontal + > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic + .swiper-pagination-bullet { + transition: 0.2s transform, 0.2s left; +} +.swiper-container-horizontal.swiper-container-rtl + > .swiper-pagination-bullets-dynamic + .swiper-pagination-bullet { + transition: 0.2s transform, 0.2s right; +} +.swiper-pagination-progressbar { + background: rgba(0, 0, 0, 0.25); + position: absolute; +} +.swiper-pagination-progressbar .swiper-pagination-progressbar-fill { + background: var(--swiper-pagination-color, var(--swiper-theme-color)); + position: absolute; + left: 0; + top: 0; + width: 100%; + height: 100%; + transform: scale(0); + transform-origin: left top; +} +.swiper-container-rtl + .swiper-pagination-progressbar + .swiper-pagination-progressbar-fill { + transform-origin: right top; +} +.swiper-container-horizontal > .swiper-pagination-progressbar, +.swiper-container-vertical + > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite { + width: 100%; + height: 4px; + left: 0; + top: 0; +} +.swiper-container-horizontal + > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, +.swiper-container-vertical > .swiper-pagination-progressbar { + width: 4px; + height: 100%; + left: 0; + top: 0; +} +.swiper-pagination-white { + --swiper-pagination-color: #ffffff; +} +.swiper-pagination-black { + --swiper-pagination-color: #000000; +} +.swiper-pagination-lock { + display: none; +} +.swiper-scrollbar { + border-radius: 10px; + position: relative; + -ms-touch-action: none; + background: rgba(0, 0, 0, 0.1); +} +.swiper-container-horizontal > .swiper-scrollbar { + position: absolute; + left: 1%; + bottom: 3px; + z-index: 50; + height: 5px; + width: 98%; +} +.swiper-container-vertical > .swiper-scrollbar { + position: absolute; + right: 3px; + top: 1%; + z-index: 50; + width: 5px; + height: 98%; +} +.swiper-scrollbar-drag { + height: 100%; + width: 100%; + position: relative; + background: rgba(0, 0, 0, 0.5); + border-radius: 10px; + left: 0; + top: 0; +} +.swiper-scrollbar-cursor-drag { + cursor: move; +} +.swiper-scrollbar-lock { + display: none; +} +.swiper-zoom-container { + width: 100%; + height: 100%; + display: flex; + justify-content: center; + align-items: center; + text-align: center; +} +.swiper-zoom-container > canvas, +.swiper-zoom-container > img, +.swiper-zoom-container > svg { + max-width: 100%; + max-height: 100%; + object-fit: contain; +} +.swiper-slide-zoomed { + cursor: move; +} +.swiper-lazy-preloader { + width: 42px; + height: 42px; + position: absolute; + left: 50%; + top: 50%; + margin-left: -21px; + margin-top: -21px; + z-index: 10; + transform-origin: 50%; + animation: swiper-preloader-spin 1s infinite linear; + box-sizing: border-box; + border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color)); + border-radius: 50%; + border-top-color: transparent; +} +.swiper-lazy-preloader-white { + --swiper-preloader-color: #fff; +} +.swiper-lazy-preloader-black { + --swiper-preloader-color: #000; +} +@keyframes swiper-preloader-spin { + 100% { + transform: rotate(360deg); + } +} +.swiper-container .swiper-notification { + position: absolute; + left: 0; + top: 0; + pointer-events: none; + opacity: 0; + z-index: -1000; +} +.swiper-container-fade.swiper-container-free-mode .swiper-slide { + transition-timing-function: ease-out; +} +.swiper-container-fade .swiper-slide { + pointer-events: none; + transition-property: opacity; +} +.swiper-container-fade .swiper-slide .swiper-slide { + pointer-events: none; +} +.swiper-container-fade .swiper-slide-active, +.swiper-container-fade .swiper-slide-active .swiper-slide-active { + pointer-events: auto; +} +.swiper-container-cube { + overflow: visible; +} +.swiper-container-cube .swiper-slide { + pointer-events: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + z-index: 1; + visibility: hidden; + transform-origin: 0 0; + width: 100%; + height: 100%; +} +.swiper-container-cube .swiper-slide .swiper-slide { + pointer-events: none; +} +.swiper-container-cube.swiper-container-rtl .swiper-slide { + transform-origin: 100% 0; +} +.swiper-container-cube .swiper-slide-active, +.swiper-container-cube .swiper-slide-active .swiper-slide-active { + pointer-events: auto; +} +.swiper-container-cube .swiper-slide-active, +.swiper-container-cube .swiper-slide-next, +.swiper-container-cube .swiper-slide-next + .swiper-slide, +.swiper-container-cube .swiper-slide-prev { + pointer-events: auto; + visibility: visible; +} +.swiper-container-cube .swiper-slide-shadow-bottom, +.swiper-container-cube .swiper-slide-shadow-left, +.swiper-container-cube .swiper-slide-shadow-right, +.swiper-container-cube .swiper-slide-shadow-top { + z-index: 0; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} +.swiper-container-cube .swiper-cube-shadow { + position: absolute; + left: 0; + bottom: 0px; + width: 100%; + height: 100%; + background: #000; + opacity: 0.6; + -webkit-filter: blur(50px); + filter: blur(50px); + z-index: 0; +} +.swiper-container-flip { + overflow: visible; +} +.swiper-container-flip .swiper-slide { + pointer-events: none; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; + z-index: 1; +} +.swiper-container-flip .swiper-slide .swiper-slide { + pointer-events: none; +} +.swiper-container-flip .swiper-slide-active, +.swiper-container-flip .swiper-slide-active .swiper-slide-active { + pointer-events: auto; +} +.swiper-container-flip .swiper-slide-shadow-bottom, +.swiper-container-flip .swiper-slide-shadow-left, +.swiper-container-flip .swiper-slide-shadow-right, +.swiper-container-flip .swiper-slide-shadow-top { + z-index: 0; + -webkit-backface-visibility: hidden; + backface-visibility: hidden; +} diff --git a/static/felcloud/website/fonts/cloudicon/cloudicon.css b/static/felcloud/website/fonts/cloudicon/cloudicon.css new file mode 100644 index 0000000..e87efc8 --- /dev/null +++ b/static/felcloud/website/fonts/cloudicon/cloudicon.css @@ -0,0 +1,304 @@ +@font-face { font-family: 'Cloudicon'; src: url('../../fonts/cloudicon/Cloudicon.eot?h7rmut'); src: url('../../fonts/cloudicon/Cloudicon.eot?h7rmut#iefix') format('embedded-opentype'), url('../../fonts/cloudicon/Cloudicon.ttf?h7rmut') format('truetype'), url('../../fonts/cloudicon/Cloudicon.woff?h7rmut') format('woff'), url('../../fonts/cloudicon/Cloudicon.svg?h7rmut#Cloudicon') format('svg'); font-weight: normal; font-style: normal; } +[Cloudicon]:before { font-family: 'Cloudicon'; content: attr(Cloudicon); speak: none; } +[class^="icon-"], [class*=" icon-"] { /* use !important to prevent issues with browser extensions that change fonts */ +font-family: 'Cloudicon' !important; color: #808080; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } +.icon-add:before { content: "\e900"; } +.icon-aid:before { content: "\e901"; } +.icon-alarm:before { content: "\e902"; } +.icon-alert:before { content: "\e903"; } +.icon-alpha:before { content: "\e904"; } +.icon-analytics:before { content: "\e905"; } +.icon-android:before { content: "\e906"; } +.icon-apple:before { content: "\e907"; } +.icon-audio:before { content: "\e908"; } +.icon-award:before { content: "\e909"; } +.icon-ballon:before { content: "\e90a"; } +.icon-basketshop:before { content: "\e90b"; } +.icon-battery:before { content: "\e90c"; } +.icon-bell:before { content: "\e90d"; } +.icon-bitcoin:before { content: "\e90e"; } +.icon-blog:before { content: "\e90f"; } +.icon-bluetooth:before { content: "\e910"; } +.icon-book:before { content: "\e911"; } +.icon-bookmark:before { content: "\e912"; } +.icon-branch:before { content: "\e913"; } +.icon-briefcase:before { content: "\e914"; } +.icon-browser:before { content: "\e915"; } +.icon-brush:before { content: "\e916"; } +.icon-bubble:before { content: "\e917"; } +.icon-builder:before { content: "\e918"; } +.icon-bulb:before { content: "\e919"; } +.icon-businesman:before { content: "\e91a"; } +.icon-calendar:before { content: "\e91b"; } +.icon-card:before { content: "\e91c"; } +.icon-cart:before { content: "\e91d"; } +.icon-cartdown:before { content: "\e91e"; } +.icon-cartnull:before { content: "\e91f"; } +.icon-cartup:before { content: "\e920"; } +.icon-cctv:before { content: "\e921"; } +.icon-center:before { content: "\e922"; } +.icon-ceo:before { content: "\e923"; } +.icon-chart:before { content: "\e924"; } +.icon-check:before { content: "\e925"; } +.icon-clip:before { content: "\e926"; } +.icon-clock:before { content: "\e927"; } +.icon-close:before { content: "\e928"; } +.icon-cloud:before { content: "\e929"; } +.icon-cloudconnect:before { content: "\e92a"; } +.icon-cloudfast:before { content: "\e92b"; } +.icon-cloudfiber:before { content: "\e92c"; } +.icon-cloudlinux:before { content: "\e92d"; } +.icon-cloudmanaged:before { content: "\e92e"; } +.icon-cloudown:before { content: "\e92f"; } +.icon-cloudowner:before { content: "\e930"; } +.icon-cloudsecurity:before { content: "\e931"; } +.icon-cloudserver:before { content: "\e932"; } +.icon-cloudup:before { content: "\e933"; } +.icon-cloudwindows:before { content: "\e934"; } +.icon-cluster:before { content: "\e935"; } +.icon-code:before { content: "\e936"; } +.icon-coffe:before { content: "\e937"; } +.icon-color:before { content: "\e938"; } +.icon-compare:before { content: "\e939"; } +.icon-compass:before { content: "\e93a"; } +.icon-container:before { content: "\e93b"; } +.icon-coupon:before { content: "\e93c"; } +.icon-cpu:before { content: "\e93d"; } +.icon-crown:before { content: "\e93e"; } +.icon-danger:before { content: "\e93f"; } +.icon-database:before { content: "\e940"; } +.icon-dedicated:before { content: "\e941"; } +.icon-delete:before { content: "\e942"; } +.icon-designed:before { content: "\e943"; } +.icon-desktop:before { content: "\e944"; } +.icon-device:before { content: "\e945"; } +.icon-diagram:before { content: "\e946"; } +.icon-diamond:before { content: "\e947"; } +.icon-direction:before { content: "\e948"; } +.icon-directions:before { content: "\e949"; } +.icon-disabled:before { content: "\e94a"; } +.icon-diskette:before { content: "\e94b"; } +.icon-display:before { content: "\e94c"; } +.icon-docbox:before { content: "\e94d"; } +.icon-document:before { content: "\e94e"; } +.icon-dollar:before { content: "\e94f"; } +.icon-domains:before { content: "\e950"; } +.icon-domainserver:before { content: "\e951"; } +.icon-doubleleft:before { content: "\e952"; } +.icon-doubleright:before { content: "\e953"; } +.icon-download:before { content: "\e954"; } +.icon-dribbble:before { content: "\e955"; } +.icon-drink:before { content: "\e956"; } +.icon-drives:before { content: "\e957"; } +.icon-drivessd:before { content: "\e958"; } +.icon-drone:before { content: "\e959"; } +.icon-drop:before { content: "\e95a"; } +.icon-dropbox:before { content: "\e95b"; } +.icon-duality:before { content: "\e95c"; } +.icon-dvd:before { content: "\e95d"; } +.icon-eco:before { content: "\e95e"; } +.icon-ecommerce:before { content: "\e95f"; } +.icon-editable:before { content: "\e960"; } +.icon-email:before { content: "\e961"; } +.icon-emailopen:before { content: "\e962"; } +.icon-empty:before { content: "\e963"; } +.icon-energy:before { content: "\e964"; } +.icon-euro:before { content: "\e965"; } +.icon-eye:before { content: "\e966"; } +.icon-facebook:before { content: "\e967"; } +.icon-factory:before { content: "\e968"; } +.icon-favorite:before { content: "\e969"; } +.icon-features:before { content: "\e96a"; } +.icon-female:before { content: "\e96b"; } +.icon-filter:before { content: "\e96c"; } +.icon-financial:before { content: "\e96d"; } +.icon-firewall:before { content: "\e96e"; } +.icon-flagpoint:before { content: "\e96f"; } +.icon-flash:before { content: "\e970"; } +.icon-folder:before { content: "\e971"; } +.icon-free:before { content: "\e972"; } +.icon-freenetwork:before { content: "\e973"; } +.icon-frequency:before { content: "\e974"; } +.icon-full:before { content: "\e975"; } +.icon-fullscreen:before { content: "\e976"; } +.icon-gaming:before { content: "\e977"; } +.icon-gift:before { content: "\e978"; } +.icon-git:before { content: "\e979"; } +.icon-github:before { content: "\e97a"; } +.icon-glasses:before { content: "\e97b"; } +.icon-global:before { content: "\e97c"; } +.icon-globe:before { content: "\e97d"; } +.icon-goal:before { content: "\e97e"; } +.icon-googleplus:before { content: "\e97f"; } +.icon-graduation:before { content: "\e980"; } +.icon-grow:before { content: "\e981"; } +.icon-hand:before { content: "\e982"; } +.icon-hat:before { content: "\e983"; } +.icon-headphones:before { content: "\e984"; } +.icon-helpdesk:before { content: "\e985"; } +.icon-hierarchy:before { content: "\e986"; } +.icon-house:before { content: "\e987"; } +.icon-housebird:before { content: "\e988"; } +.icon-html5:before { content: "\e989"; } +.icon-inbox:before { content: "\e98a"; } +.icon-index:before { content: "\e98b"; } +.icon-indicateleft:before { content: "\e98c"; } +.icon-indicateright:before { content: "\e98d"; } +.icon-infrastructure:before { content: "\e98e"; } +.icon-Instagram:before { content: "\e98f"; } +.icon-interface:before { content: "\e990"; } +.icon-internet:before { content: "\e991"; } +.icon-inverse:before { content: "\e992"; } +.icon-key:before { content: "\e993"; } +.icon-label:before { content: "\e994"; } +.icon-laptop:before { content: "\e995"; } +.icon-latency:before { content: "\e996"; } +.icon-law:before { content: "\e997"; } +.icon-layers:before { content: "\e998"; } +.icon-learning:before { content: "\e999"; } +.icon-led:before { content: "\e99a"; } +.icon-left:before { content: "\e99b"; } +.icon-less:before { content: "\e99c"; } +.icon-link:before { content: "\e99d"; } +.icon-linkedin:before { content: "\e99e"; } +.icon-linux:before { content: "\e99f"; } +.icon-linuxserver:before { content: "\e9a0"; } +.icon-livechat:before { content: "\e9a1"; } +.icon-location:before { content: "\e9a2"; } +.icon-lock:before { content: "\e9a3"; } +.icon-log:before { content: "\e9a4"; } +.icon-magnetic:before { content: "\e9a5"; } +.icon-mailbox:before { content: "\e9a6"; } +.icon-maintenance:before { content: "\e9a7"; } +.icon-man:before { content: "\e9a8"; } +.icon-managedserver:before { content: "\e9a9"; } +.icon-map:before { content: "\e9aa"; } +.icon-medal:before { content: "\e9ab"; } +.icon-meeting:before { content: "\e9ac"; } +.icon-megaphone:before { content: "\e9ad"; } +.icon-menu:before { content: "\e9ae"; } +.icon-metric:before { content: "\e9af"; } +.icon-mobile:before { content: "\e9b0"; } +.icon-money:before { content: "\e9b1"; } +.icon-monitor:before { content: "\e9b2"; } +.icon-mouse:before { content: "\e9b3"; } +.icon-move:before { content: "\e9b4"; } +.icon-movie:before { content: "\e9b5"; } +.icon-music:before { content: "\e9b6"; } +.icon-mute:before { content: "\e9b7"; } +.icon-navigation:before { content: "\e9b8"; } +.icon-network:before { content: "\e9b9"; } +.icon-notes:before { content: "\e9ba"; } +.icon-objective:before { content: "\e9bb"; } +.icon-on:before { content: "\e9bc"; } +.icon-pacman:before { content: "\e9bd"; } +.icon-paper:before { content: "\e9be"; } +.icon-paypal:before { content: "\e9bf"; } +.icon-phone:before { content: "\e9c0"; } +.icon-pic:before { content: "\e9c1"; } +.icon-pin:before { content: "\e9c2"; } +.icon-pinterest:before { content: "\e9c3"; } +.icon-placard:before { content: "\e9c4"; } +.icon-plane:before { content: "\e9c5"; } +.icon-play:before { content: "\e9c6"; } +.icon-playstore:before { content: "\e9c7"; } +.icon-plug:before { content: "\e9c8"; } +.icon-plus:before { content: "\e9c9"; } +.icon-point:before { content: "\e9ca"; } +.icon-points:before { content: "\e9cb"; } +.icon-pound:before { content: "\e9cc"; } +.icon-preferences:before { content: "\e9cd"; } +.icon-print:before { content: "\e9ce"; } +.icon-privacy:before { content: "\e9cf"; } +.icon-private:before { content: "\e9d0"; } +.icon-progress:before { content: "\e9d1"; } +.icon-protected:before { content: "\e9d2"; } +.icon-protection:before { content: "\e9d3"; } +.icon-qrcode:before { content: "\e9d4"; } +.icon-question:before { content: "\e9d5"; } +.icon-rack:before { content: "\e9d6"; } +.icon-ram:before { content: "\e9d7"; } +.icon-random:before { content: "\e9d8"; } +.icon-rate:before { content: "\e9d9"; } +.icon-recycle:before { content: "\e9da"; } +.icon-redundancy:before { content: "\e9db"; } +.icon-refresh:before { content: "\e9dc"; } +.icon-regression:before { content: "\e9dd"; } +.icon-reload:before { content: "\e9de"; } +.icon-repair:before { content: "\e9df"; } +.icon-report:before { content: "\e9e0"; } +.icon-reseller:before { content: "\e9e1"; } +.icon-resize:before { content: "\e9e2"; } +.icon-ribbon:before { content: "\e9e3"; } +.icon-right:before { content: "\e9e4"; } +.icon-robot:before { content: "\e9e5"; } +.icon-router:before { content: "\e9e6"; } +.icon-sad:before { content: "\e9e7"; } +.icon-savings:before { content: "\e9e8"; } +.icon-science:before { content: "\e9e9"; } +.icon-security:before { content: "\e9ea"; } +.icon-select:before { content: "\e9eb"; } +.icon-servers:before { content: "\e9ec"; } +.icon-settings:before { content: "\e9ed"; } +.icon-shared:before { content: "\e9ee"; } +.icon-shipping:before { content: "\e9ef"; } +.icon-shop:before { content: "\e9f0"; } +.icon-sinal:before { content: "\e9f1"; } +.icon-smile:before { content: "\e9f2"; } +.icon-snapchat:before { content: "\e9f3"; } +.icon-solid:before { content: "\e9f4"; } +.icon-solution:before { content: "\e9f5"; } +.icon-spam:before { content: "\e9f6"; } +.icon-speed:before { content: "\e9f7"; } +.icon-stable:before { content: "\e9f8"; } +.icon-star:before { content: "\e9f9"; } +.icon-statuette:before { content: "\e9fa"; } +.icon-strategy:before { content: "\e9fb"; } +.icon-stream:before { content: "\e9fc"; } +.icon-structure:before { content: "\e9fd"; } +.icon-sun:before { content: "\e9fe"; } +.icon-support:before { content: "\e9ff"; } +.icon-surprise:before { content: "\ea00"; } +.icon-switch:before { content: "\ea01"; } +.icon-sync:before { content: "\ea02"; } +.icon-tablet:before { content: "\ea03"; } +.icon-tag:before { content: "\ea04"; } +.icon-talk:before { content: "\ea05"; } +.icon-target:before { content: "\ea06"; } +.icon-tea:before { content: "\ea07"; } +.icon-technology:before { content: "\ea08"; } +.icon-telescope:before { content: "\ea09"; } +.icon-thumbdown:before { content: "\ea0a"; } +.icon-thumbup:before { content: "\ea0b"; } +.icon-ticket:before { content: "\ea0c"; } +.icon-time:before { content: "\ea0d"; } +.icon-timer:before { content: "\ea0e"; } +.icon-tools:before { content: "\ea0f"; } +.icon-toxic:before { content: "\ea10"; } +.icon-twitter:before { content: "\ea11"; } +.icon-umbrella:before { content: "\ea12"; } +.icon-unlock:before { content: "\ea13"; } +.icon-upgrade:before { content: "\ea14"; } +.icon-upload:before { content: "\ea15"; } +.icon-ups:before { content: "\ea16"; } +.icon-usb:before { content: "\ea17"; } +.icon-user:before { content: "\ea18"; } +.icon-vault:before { content: "\ea19"; } +.icon-video:before { content: "\ea1a"; } +.icon-vimeo:before { content: "\ea1b"; } +.icon-virus:before { content: "\ea1c"; } +.icon-vps:before { content: "\ea1d"; } +.icon-wallet:before { content: "\ea1e"; } +.icon-water:before { content: "\ea1f"; } +.icon-wifi:before { content: "\ea20"; } +.icon-win:before { content: "\ea21"; } +.icon-wind:before { content: "\ea22"; } +.icon-window:before { content: "\ea23"; } +.icon-windows:before { content: "\ea24"; } +.icon-windowserver:before { content: "\ea25"; } +.icon-wine:before { content: "\ea26"; } +.icon-wink:before { content: "\ea27"; } +.icon-woman:before { content: "\ea28"; } +.icon-wordpress:before { content: "\ea29"; } +.icon-youtube:before { content: "\ea2a"; } +.icon-zoom:before { content: "\ea2b"; } \ No newline at end of file diff --git a/static/felcloud/website/fonts/fontawesome/css/all.css b/static/felcloud/website/fonts/fontawesome/css/all.css new file mode 100644 index 0000000..e5324b3 --- /dev/null +++ b/static/felcloud/website/fonts/fontawesome/css/all.css @@ -0,0 +1,5616 @@ +.fa, +.fas, +.far, +.fal, +.fab { + -moz-osx-font-smoothing: grayscale; + -webkit-font-smoothing: antialiased; + display: inline-block; + font-style: normal; + font-variant: normal; + text-rendering: auto; + line-height: 1; +} + +.fa-lg { + font-size: 1.33333em; + line-height: 0.75em; + vertical-align: -0.0667em; +} + +.fa-xs { + font-size: 0.75em; +} + +.fa-sm { + font-size: 0.875em; +} + +.fa-1x { + font-size: 1em; +} + +.fa-2x { + font-size: 2em; +} + +.fa-3x { + font-size: 3em; +} + +.fa-4x { + font-size: 4em; +} + +.fa-5x { + font-size: 5em; +} + +.fa-6x { + font-size: 6em; +} + +.fa-7x { + font-size: 7em; +} + +.fa-8x { + font-size: 8em; +} + +.fa-9x { + font-size: 9em; +} + +.fa-10x { + font-size: 10em; +} + +.fa-fw { + text-align: center; + width: 1.25em; +} + +.fa-ul { + list-style-type: none; + margin-left: 2.5em; + padding-left: 0; +} +.fa-ul > li { + position: relative; +} + +.fa-li { + left: -2em; + position: absolute; + text-align: center; + width: 2em; + line-height: inherit; +} + +.fa-border { + border: solid 0.08em #eee; + border-radius: 0.1em; + padding: 0.2em 0.25em 0.15em; +} + +.fa-pull-left { + float: left; +} + +.fa-pull-right { + float: right; +} + +.fa.fa-pull-left, +.fas.fa-pull-left, +.far.fa-pull-left, +.fal.fa-pull-left, +.fab.fa-pull-left { + margin-right: 0.3em; +} + +.fa.fa-pull-right, +.fas.fa-pull-right, +.far.fa-pull-right, +.fal.fa-pull-right, +.fab.fa-pull-right { + margin-left: 0.3em; +} + +.fa-spin { + -webkit-animation: fa-spin 2s infinite linear; + animation: fa-spin 2s infinite linear; +} + +.fa-pulse { + -webkit-animation: fa-spin 1s infinite steps(8); + animation: fa-spin 1s infinite steps(8); +} + +@-webkit-keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +@keyframes fa-spin { + 0% { + -webkit-transform: rotate(0deg); + transform: rotate(0deg); + } + 100% { + -webkit-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.fa-rotate-90 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)"; + -webkit-transform: rotate(90deg); + transform: rotate(90deg); +} + +.fa-rotate-180 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)"; + -webkit-transform: rotate(180deg); + transform: rotate(180deg); +} + +.fa-rotate-270 { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)"; + -webkit-transform: rotate(270deg); + transform: rotate(270deg); +} + +.fa-flip-horizontal { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)"; + -webkit-transform: scale(-1, 1); + transform: scale(-1, 1); +} + +.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(1, -1); + transform: scale(1, -1); +} + +.fa-flip-horizontal.fa-flip-vertical { + -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"; + -webkit-transform: scale(-1, -1); + transform: scale(-1, -1); +} + +:root .fa-rotate-90, +:root .fa-rotate-180, +:root .fa-rotate-270, +:root .fa-flip-horizontal, +:root .fa-flip-vertical { + -webkit-filter: none; + filter: none; +} + +.fa-stack { + display: inline-block; + height: 2em; + line-height: 2em; + position: relative; + vertical-align: middle; + width: 2.5em; +} + +.fa-stack-1x, +.fa-stack-2x { + left: 0; + position: absolute; + text-align: center; + width: 100%; +} + +.fa-stack-1x { + line-height: inherit; +} + +.fa-stack-2x { + font-size: 2em; +} + +.fa-inverse { + color: #fff; +} + +/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen +readers do not read off random characters that represent icons */ +.fa-500px:before { + content: "\f26e"; +} + +.fa-accessible-icon:before { + content: "\f368"; +} + +.fa-accusoft:before { + content: "\f369"; +} + +.fa-acquisitions-incorporated:before { + content: "\f6af"; +} + +.fa-ad:before { + content: "\f641"; +} + +.fa-address-book:before { + content: "\f2b9"; +} + +.fa-address-card:before { + content: "\f2bb"; +} + +.fa-adjust:before { + content: "\f042"; +} + +.fa-adn:before { + content: "\f170"; +} + +.fa-adobe:before { + content: "\f778"; +} + +.fa-adversal:before { + content: "\f36a"; +} + +.fa-affiliatetheme:before { + content: "\f36b"; +} + +.fa-air-freshener:before { + content: "\f5d0"; +} + +.fa-algolia:before { + content: "\f36c"; +} + +.fa-align-center:before { + content: "\f037"; +} + +.fa-align-justify:before { + content: "\f039"; +} + +.fa-align-left:before { + content: "\f036"; +} + +.fa-align-right:before { + content: "\f038"; +} + +.fa-alipay:before { + content: "\f642"; +} + +.fa-allergies:before { + content: "\f461"; +} + +.fa-amazon:before { + content: "\f270"; +} + +.fa-amazon-pay:before { + content: "\f42c"; +} + +.fa-ambulance:before { + content: "\f0f9"; +} + +.fa-american-sign-language-interpreting:before { + content: "\f2a3"; +} + +.fa-amilia:before { + content: "\f36d"; +} + +.fa-anchor:before { + content: "\f13d"; +} + +.fa-android:before { + content: "\f17b"; +} + +.fa-angellist:before { + content: "\f209"; +} + +.fa-angle-double-down:before { + content: "\f103"; +} + +.fa-angle-double-left:before { + content: "\f100"; +} + +.fa-angle-double-right:before { + content: "\f101"; +} + +.fa-angle-double-up:before { + content: "\f102"; +} + +.fa-angle-down:before { + content: "\f107"; +} + +.fa-angle-left:before { + content: "\f104"; +} + +.fa-angle-right:before { + content: "\f105"; +} + +.fa-angle-up:before { + content: "\f106"; +} + +.fa-angry:before { + content: "\f556"; +} + +.fa-angrycreative:before { + content: "\f36e"; +} + +.fa-angular:before { + content: "\f420"; +} + +.fa-ankh:before { + content: "\f644"; +} + +.fa-app-store:before { + content: "\f36f"; +} + +.fa-app-store-ios:before { + content: "\f370"; +} + +.fa-apper:before { + content: "\f371"; +} + +.fa-apple:before { + content: "\f179"; +} + +.fa-apple-alt:before { + content: "\f5d1"; +} + +.fa-apple-pay:before { + content: "\f415"; +} + +.fa-archive:before { + content: "\f187"; +} + +.fa-archway:before { + content: "\f557"; +} + +.fa-arrow-alt-circle-down:before { + content: "\f358"; +} + +.fa-arrow-alt-circle-left:before { + content: "\f359"; +} + +.fa-arrow-alt-circle-right:before { + content: "\f35a"; +} + +.fa-arrow-alt-circle-up:before { + content: "\f35b"; +} + +.fa-arrow-circle-down:before { + content: "\f0ab"; +} + +.fa-arrow-circle-left:before { + content: "\f0a8"; +} + +.fa-arrow-circle-right:before { + content: "\f0a9"; +} + +.fa-arrow-circle-up:before { + content: "\f0aa"; +} + +.fa-arrow-down:before { + content: "\f063"; +} + +.fa-arrow-left:before { + content: "\f060"; +} + +.fa-arrow-right:before { + content: "\f061"; +} + +.fa-arrow-up:before { + content: "\f062"; +} + +.fa-arrows-alt:before { + content: "\f0b2"; +} + +.fa-arrows-alt-h:before { + content: "\f337"; +} + +.fa-arrows-alt-v:before { + content: "\f338"; +} + +.fa-artstation:before { + content: "\f77a"; +} + +.fa-assistive-listening-systems:before { + content: "\f2a2"; +} + +.fa-asterisk:before { + content: "\f069"; +} + +.fa-asymmetrik:before { + content: "\f372"; +} + +.fa-at:before { + content: "\f1fa"; +} + +.fa-atlas:before { + content: "\f558"; +} + +.fa-atlassian:before { + content: "\f77b"; +} + +.fa-atom:before { + content: "\f5d2"; +} + +.fa-audible:before { + content: "\f373"; +} + +.fa-audio-description:before { + content: "\f29e"; +} + +.fa-autoprefixer:before { + content: "\f41c"; +} + +.fa-avianex:before { + content: "\f374"; +} + +.fa-aviato:before { + content: "\f421"; +} + +.fa-award:before { + content: "\f559"; +} + +.fa-aws:before { + content: "\f375"; +} + +.fa-baby:before { + content: "\f77c"; +} + +.fa-baby-carriage:before { + content: "\f77d"; +} + +.fa-backspace:before { + content: "\f55a"; +} + +.fa-backward:before { + content: "\f04a"; +} + +.fa-balance-scale:before { + content: "\f24e"; +} + +.fa-ban:before { + content: "\f05e"; +} + +.fa-band-aid:before { + content: "\f462"; +} + +.fa-bandcamp:before { + content: "\f2d5"; +} + +.fa-barcode:before { + content: "\f02a"; +} + +.fa-bars:before { + content: "\f0c9"; +} + +.fa-baseball-ball:before { + content: "\f433"; +} + +.fa-basketball-ball:before { + content: "\f434"; +} + +.fa-bath:before { + content: "\f2cd"; +} + +.fa-battery-empty:before { + content: "\f244"; +} + +.fa-battery-full:before { + content: "\f240"; +} + +.fa-battery-half:before { + content: "\f242"; +} + +.fa-battery-quarter:before { + content: "\f243"; +} + +.fa-battery-three-quarters:before { + content: "\f241"; +} + +.fa-bed:before { + content: "\f236"; +} + +.fa-beer:before { + content: "\f0fc"; +} + +.fa-behance:before { + content: "\f1b4"; +} + +.fa-behance-square:before { + content: "\f1b5"; +} + +.fa-bell:before { + content: "\f0f3"; +} + +.fa-bell-slash:before { + content: "\f1f6"; +} + +.fa-bezier-curve:before { + content: "\f55b"; +} + +.fa-bible:before { + content: "\f647"; +} + +.fa-bicycle:before { + content: "\f206"; +} + +.fa-bimobject:before { + content: "\f378"; +} + +.fa-binoculars:before { + content: "\f1e5"; +} + +.fa-biohazard:before { + content: "\f780"; +} + +.fa-birthday-cake:before { + content: "\f1fd"; +} + +.fa-bitbucket:before { + content: "\f171"; +} + +.fa-bitcoin:before { + content: "\f379"; +} + +.fa-bity:before { + content: "\f37a"; +} + +.fa-black-tie:before { + content: "\f27e"; +} + +.fa-blackberry:before { + content: "\f37b"; +} + +.fa-blender:before { + content: "\f517"; +} + +.fa-blender-phone:before { + content: "\f6b6"; +} + +.fa-blind:before { + content: "\f29d"; +} + +.fa-blog:before { + content: "\f781"; +} + +.fa-blogger:before { + content: "\f37c"; +} + +.fa-blogger-b:before { + content: "\f37d"; +} + +.fa-bluetooth:before { + content: "\f293"; +} + +.fa-bluetooth-b:before { + content: "\f294"; +} + +.fa-bold:before { + content: "\f032"; +} + +.fa-bolt:before { + content: "\f0e7"; +} + +.fa-bomb:before { + content: "\f1e2"; +} + +.fa-bone:before { + content: "\f5d7"; +} + +.fa-bong:before { + content: "\f55c"; +} + +.fa-book:before { + content: "\f02d"; +} + +.fa-book-dead:before { + content: "\f6b7"; +} + +.fa-book-open:before { + content: "\f518"; +} + +.fa-book-reader:before { + content: "\f5da"; +} + +.fa-bookmark:before { + content: "\f02e"; +} + +.fa-bowling-ball:before { + content: "\f436"; +} + +.fa-box:before { + content: "\f466"; +} + +.fa-box-open:before { + content: "\f49e"; +} + +.fa-boxes:before { + content: "\f468"; +} + +.fa-braille:before { + content: "\f2a1"; +} + +.fa-brain:before { + content: "\f5dc"; +} + +.fa-briefcase:before { + content: "\f0b1"; +} + +.fa-briefcase-medical:before { + content: "\f469"; +} + +.fa-broadcast-tower:before { + content: "\f519"; +} + +.fa-broom:before { + content: "\f51a"; +} + +.fa-brush:before { + content: "\f55d"; +} + +.fa-btc:before { + content: "\f15a"; +} + +.fa-bug:before { + content: "\f188"; +} + +.fa-building:before { + content: "\f1ad"; +} + +.fa-bullhorn:before { + content: "\f0a1"; +} + +.fa-bullseye:before { + content: "\f140"; +} + +.fa-burn:before { + content: "\f46a"; +} + +.fa-buromobelexperte:before { + content: "\f37f"; +} + +.fa-bus:before { + content: "\f207"; +} + +.fa-bus-alt:before { + content: "\f55e"; +} + +.fa-business-time:before { + content: "\f64a"; +} + +.fa-buysellads:before { + content: "\f20d"; +} + +.fa-calculator:before { + content: "\f1ec"; +} + +.fa-calendar:before { + content: "\f133"; +} + +.fa-calendar-alt:before { + content: "\f073"; +} + +.fa-calendar-check:before { + content: "\f274"; +} + +.fa-calendar-day:before { + content: "\f783"; +} + +.fa-calendar-minus:before { + content: "\f272"; +} + +.fa-calendar-plus:before { + content: "\f271"; +} + +.fa-calendar-times:before { + content: "\f273"; +} + +.fa-calendar-week:before { + content: "\f784"; +} + +.fa-camera:before { + content: "\f030"; +} + +.fa-camera-retro:before { + content: "\f083"; +} + +.fa-campground:before { + content: "\f6bb"; +} + +.fa-canadian-maple-leaf:before { + content: "\f785"; +} + +.fa-candy-cane:before { + content: "\f786"; +} + +.fa-cannabis:before { + content: "\f55f"; +} + +.fa-capsules:before { + content: "\f46b"; +} + +.fa-car:before { + content: "\f1b9"; +} + +.fa-car-alt:before { + content: "\f5de"; +} + +.fa-car-battery:before { + content: "\f5df"; +} + +.fa-car-crash:before { + content: "\f5e1"; +} + +.fa-car-side:before { + content: "\f5e4"; +} + +.fa-caret-down:before { + content: "\f0d7"; +} + +.fa-caret-left:before { + content: "\f0d9"; +} + +.fa-caret-right:before { + content: "\f0da"; +} + +.fa-caret-square-down:before { + content: "\f150"; +} + +.fa-caret-square-left:before { + content: "\f191"; +} + +.fa-caret-square-right:before { + content: "\f152"; +} + +.fa-caret-square-up:before { + content: "\f151"; +} + +.fa-caret-up:before { + content: "\f0d8"; +} + +.fa-carrot:before { + content: "\f787"; +} + +.fa-cart-arrow-down:before { + content: "\f218"; +} + +.fa-cart-plus:before { + content: "\f217"; +} + +.fa-cash-register:before { + content: "\f788"; +} + +.fa-cat:before { + content: "\f6be"; +} + +.fa-cc-amazon-pay:before { + content: "\f42d"; +} + +.fa-cc-amex:before { + content: "\f1f3"; +} + +.fa-cc-apple-pay:before { + content: "\f416"; +} + +.fa-cc-diners-club:before { + content: "\f24c"; +} + +.fa-cc-discover:before { + content: "\f1f2"; +} + +.fa-cc-jcb:before { + content: "\f24b"; +} + +.fa-cc-mastercard:before { + content: "\f1f1"; +} + +.fa-cc-paypal:before { + content: "\f1f4"; +} + +.fa-cc-stripe:before { + content: "\f1f5"; +} + +.fa-cc-visa:before { + content: "\f1f0"; +} + +.fa-centercode:before { + content: "\f380"; +} + +.fa-centos:before { + content: "\f789"; +} + +.fa-certificate:before { + content: "\f0a3"; +} + +.fa-chair:before { + content: "\f6c0"; +} + +.fa-chalkboard:before { + content: "\f51b"; +} + +.fa-chalkboard-teacher:before { + content: "\f51c"; +} + +.fa-charging-station:before { + content: "\f5e7"; +} + +.fa-chart-area:before { + content: "\f1fe"; +} + +.fa-chart-bar:before { + content: "\f080"; +} + +.fa-chart-line:before { + content: "\f201"; +} + +.fa-chart-pie:before { + content: "\f200"; +} + +.fa-check:before { + content: "\f00c"; +} + +.fa-check-circle:before { + content: "\f058"; +} + +.fa-check-double:before { + content: "\f560"; +} + +.fa-check-square:before { + content: "\f14a"; +} + +.fa-chess:before { + content: "\f439"; +} + +.fa-chess-bishop:before { + content: "\f43a"; +} + +.fa-chess-board:before { + content: "\f43c"; +} + +.fa-chess-king:before { + content: "\f43f"; +} + +.fa-chess-knight:before { + content: "\f441"; +} + +.fa-chess-pawn:before { + content: "\f443"; +} + +.fa-chess-queen:before { + content: "\f445"; +} + +.fa-chess-rook:before { + content: "\f447"; +} + +.fa-chevron-circle-down:before { + content: "\f13a"; +} + +.fa-chevron-circle-left:before { + content: "\f137"; +} + +.fa-chevron-circle-right:before { + content: "\f138"; +} + +.fa-chevron-circle-up:before { + content: "\f139"; +} + +.fa-chevron-down:before { + content: "\f078"; +} + +.fa-chevron-left:before { + content: "\f053"; +} + +.fa-chevron-right:before { + content: "\f054"; +} + +.fa-chevron-up:before { + content: "\f077"; +} + +.fa-child:before { + content: "\f1ae"; +} + +.fa-chrome:before { + content: "\f268"; +} + +.fa-church:before { + content: "\f51d"; +} + +.fa-circle:before { + content: "\f111"; +} + +.fa-circle-notch:before { + content: "\f1ce"; +} + +.fa-city:before { + content: "\f64f"; +} + +.fa-clipboard:before { + content: "\f328"; +} + +.fa-clipboard-check:before { + content: "\f46c"; +} + +.fa-clipboard-list:before { + content: "\f46d"; +} + +.fa-clock:before { + content: "\f017"; +} + +.fa-clone:before { + content: "\f24d"; +} + +.fa-closed-captioning:before { + content: "\f20a"; +} + +.fa-cloud:before { + content: "\f0c2"; +} + +.fa-cloud-download-alt:before { + content: "\f381"; +} + +.fa-cloud-meatball:before { + content: "\f73b"; +} + +.fa-cloud-moon:before { + content: "\f6c3"; +} + +.fa-cloud-moon-rain:before { + content: "\f73c"; +} + +.fa-cloud-rain:before { + content: "\f73d"; +} + +.fa-cloud-showers-heavy:before { + content: "\f740"; +} + +.fa-cloud-sun:before { + content: "\f6c4"; +} + +.fa-cloud-sun-rain:before { + content: "\f743"; +} + +.fa-cloud-upload-alt:before { + content: "\f382"; +} + +.fa-cloudscale:before { + content: "\f383"; +} + +.fa-cloudsmith:before { + content: "\f384"; +} + +.fa-cloudversify:before { + content: "\f385"; +} + +.fa-cocktail:before { + content: "\f561"; +} + +.fa-code:before { + content: "\f121"; +} + +.fa-code-branch:before { + content: "\f126"; +} + +.fa-codepen:before { + content: "\f1cb"; +} + +.fa-codiepie:before { + content: "\f284"; +} + +.fa-coffee:before { + content: "\f0f4"; +} + +.fa-cog:before { + content: "\f013"; +} + +.fa-cogs:before { + content: "\f085"; +} + +.fa-coins:before { + content: "\f51e"; +} + +.fa-columns:before { + content: "\f0db"; +} + +.fa-comment:before { + content: "\f075"; +} + +.fa-comment-alt:before { + content: "\f27a"; +} + +.fa-comment-dollar:before { + content: "\f651"; +} + +.fa-comment-dots:before { + content: "\f4ad"; +} + +.fa-comment-slash:before { + content: "\f4b3"; +} + +.fa-comments:before { + content: "\f086"; +} + +.fa-comments-dollar:before { + content: "\f653"; +} + +.fa-compact-disc:before { + content: "\f51f"; +} + +.fa-compass:before { + content: "\f14e"; +} + +.fa-compress:before { + content: "\f066"; +} + +.fa-compress-arrows-alt:before { + content: "\f78c"; +} + +.fa-concierge-bell:before { + content: "\f562"; +} + +.fa-confluence:before { + content: "\f78d"; +} + +.fa-connectdevelop:before { + content: "\f20e"; +} + +.fa-contao:before { + content: "\f26d"; +} + +.fa-cookie:before { + content: "\f563"; +} + +.fa-cookie-bite:before { + content: "\f564"; +} + +.fa-copy:before { + content: "\f0c5"; +} + +.fa-copyright:before { + content: "\f1f9"; +} + +.fa-couch:before { + content: "\f4b8"; +} + +.fa-cpanel:before { + content: "\f388"; +} + +.fa-creative-commons:before { + content: "\f25e"; +} + +.fa-creative-commons-by:before { + content: "\f4e7"; +} + +.fa-creative-commons-nc:before { + content: "\f4e8"; +} + +.fa-creative-commons-nc-eu:before { + content: "\f4e9"; +} + +.fa-creative-commons-nc-jp:before { + content: "\f4ea"; +} + +.fa-creative-commons-nd:before { + content: "\f4eb"; +} + +.fa-creative-commons-pd:before { + content: "\f4ec"; +} + +.fa-creative-commons-pd-alt:before { + content: "\f4ed"; +} + +.fa-creative-commons-remix:before { + content: "\f4ee"; +} + +.fa-creative-commons-sa:before { + content: "\f4ef"; +} + +.fa-creative-commons-sampling:before { + content: "\f4f0"; +} + +.fa-creative-commons-sampling-plus:before { + content: "\f4f1"; +} + +.fa-creative-commons-share:before { + content: "\f4f2"; +} + +.fa-creative-commons-zero:before { + content: "\f4f3"; +} + +.fa-credit-card:before { + content: "\f09d"; +} + +.fa-critical-role:before { + content: "\f6c9"; +} + +.fa-crop:before { + content: "\f125"; +} + +.fa-crop-alt:before { + content: "\f565"; +} + +.fa-cross:before { + content: "\f654"; +} + +.fa-crosshairs:before { + content: "\f05b"; +} + +.fa-crow:before { + content: "\f520"; +} + +.fa-crown:before { + content: "\f521"; +} + +.fa-css3:before { + content: "\f13c"; +} + +.fa-css3-alt:before { + content: "\f38b"; +} + +.fa-cube:before { + content: "\f1b2"; +} + +.fa-cubes:before { + content: "\f1b3"; +} + +.fa-cut:before { + content: "\f0c4"; +} + +.fa-cuttlefish:before { + content: "\f38c"; +} + +.fa-d-and-d:before { + content: "\f38d"; +} + +.fa-d-and-d-beyond:before { + content: "\f6ca"; +} + +.fa-dashcube:before { + content: "\f210"; +} + +.fa-database:before { + content: "\f1c0"; +} + +.fa-deaf:before { + content: "\f2a4"; +} + +.fa-delicious:before { + content: "\f1a5"; +} + +.fa-democrat:before { + content: "\f747"; +} + +.fa-deploydog:before { + content: "\f38e"; +} + +.fa-deskpro:before { + content: "\f38f"; +} + +.fa-desktop:before { + content: "\f108"; +} + +.fa-dev:before { + content: "\f6cc"; +} + +.fa-deviantart:before { + content: "\f1bd"; +} + +.fa-dharmachakra:before { + content: "\f655"; +} + +.fa-dhl:before { + content: "\f790"; +} + +.fa-diagnoses:before { + content: "\f470"; +} + +.fa-diaspora:before { + content: "\f791"; +} + +.fa-dice:before { + content: "\f522"; +} + +.fa-dice-d20:before { + content: "\f6cf"; +} + +.fa-dice-d6:before { + content: "\f6d1"; +} + +.fa-dice-five:before { + content: "\f523"; +} + +.fa-dice-four:before { + content: "\f524"; +} + +.fa-dice-one:before { + content: "\f525"; +} + +.fa-dice-six:before { + content: "\f526"; +} + +.fa-dice-three:before { + content: "\f527"; +} + +.fa-dice-two:before { + content: "\f528"; +} + +.fa-digg:before { + content: "\f1a6"; +} + +.fa-digital-ocean:before { + content: "\f391"; +} + +.fa-digital-tachograph:before { + content: "\f566"; +} + +.fa-directions:before { + content: "\f5eb"; +} + +.fa-discord:before { + content: "\f392"; +} + +.fa-discourse:before { + content: "\f393"; +} + +.fa-divide:before { + content: "\f529"; +} + +.fa-dizzy:before { + content: "\f567"; +} + +.fa-dna:before { + content: "\f471"; +} + +.fa-dochub:before { + content: "\f394"; +} + +.fa-docker:before { + content: "\f395"; +} + +.fa-dog:before { + content: "\f6d3"; +} + +.fa-dollar-sign:before { + content: "\f155"; +} + +.fa-dolly:before { + content: "\f472"; +} + +.fa-dolly-flatbed:before { + content: "\f474"; +} + +.fa-donate:before { + content: "\f4b9"; +} + +.fa-door-closed:before { + content: "\f52a"; +} + +.fa-door-open:before { + content: "\f52b"; +} + +.fa-dot-circle:before { + content: "\f192"; +} + +.fa-dove:before { + content: "\f4ba"; +} + +.fa-download:before { + content: "\f019"; +} + +.fa-draft2digital:before { + content: "\f396"; +} + +.fa-drafting-compass:before { + content: "\f568"; +} + +.fa-dragon:before { + content: "\f6d5"; +} + +.fa-draw-polygon:before { + content: "\f5ee"; +} + +.fa-dribbble:before { + content: "\f17d"; +} + +.fa-dribbble-square:before { + content: "\f397"; +} + +.fa-dropbox:before { + content: "\f16b"; +} + +.fa-drum:before { + content: "\f569"; +} + +.fa-drum-steelpan:before { + content: "\f56a"; +} + +.fa-drumstick-bite:before { + content: "\f6d7"; +} + +.fa-drupal:before { + content: "\f1a9"; +} + +.fa-dumbbell:before { + content: "\f44b"; +} + +.fa-dumpster:before { + content: "\f793"; +} + +.fa-dumpster-fire:before { + content: "\f794"; +} + +.fa-dungeon:before { + content: "\f6d9"; +} + +.fa-dyalog:before { + content: "\f399"; +} + +.fa-earlybirds:before { + content: "\f39a"; +} + +.fa-ebay:before { + content: "\f4f4"; +} + +.fa-edge:before { + content: "\f282"; +} + +.fa-edit:before { + content: "\f044"; +} + +.fa-eject:before { + content: "\f052"; +} + +.fa-elementor:before { + content: "\f430"; +} + +.fa-ellipsis-h:before { + content: "\f141"; +} + +.fa-ellipsis-v:before { + content: "\f142"; +} + +.fa-ello:before { + content: "\f5f1"; +} + +.fa-ember:before { + content: "\f423"; +} + +.fa-empire:before { + content: "\f1d1"; +} + +.fa-envelope:before { + content: "\f0e0"; +} + +.fa-envelope-open:before { + content: "\f2b6"; +} + +.fa-envelope-open-text:before { + content: "\f658"; +} + +.fa-envelope-square:before { + content: "\f199"; +} + +.fa-envira:before { + content: "\f299"; +} + +.fa-equals:before { + content: "\f52c"; +} + +.fa-eraser:before { + content: "\f12d"; +} + +.fa-erlang:before { + content: "\f39d"; +} + +.fa-ethereum:before { + content: "\f42e"; +} + +.fa-ethernet:before { + content: "\f796"; +} + +.fa-etsy:before { + content: "\f2d7"; +} + +.fa-euro-sign:before { + content: "\f153"; +} + +.fa-exchange-alt:before { + content: "\f362"; +} + +.fa-exclamation:before { + content: "\f12a"; +} + +.fa-exclamation-circle:before { + content: "\f06a"; +} + +.fa-exclamation-triangle:before { + content: "\f071"; +} + +.fa-expand:before { + content: "\f065"; +} + +.fa-expand-arrows-alt:before { + content: "\f31e"; +} + +.fa-expeditedssl:before { + content: "\f23e"; +} + +.fa-external-link-alt:before { + content: "\f35d"; +} + +.fa-external-link-square-alt:before { + content: "\f360"; +} + +.fa-eye:before { + content: "\f06e"; +} + +.fa-eye-dropper:before { + content: "\f1fb"; +} + +.fa-eye-slash:before { + content: "\f070"; +} + +.fa-facebook:before { + content: "\f09a"; +} + +.fa-facebook-f:before { + content: "\f39e"; +} + +.fa-facebook-messenger:before { + content: "\f39f"; +} + +.fa-facebook-square:before { + content: "\f082"; +} + +.fa-fantasy-flight-games:before { + content: "\f6dc"; +} + +.fa-fast-backward:before { + content: "\f049"; +} + +.fa-fast-forward:before { + content: "\f050"; +} + +.fa-fax:before { + content: "\f1ac"; +} + +.fa-feather:before { + content: "\f52d"; +} + +.fa-feather-alt:before { + content: "\f56b"; +} + +.fa-fedex:before { + content: "\f797"; +} + +.fa-fedora:before { + content: "\f798"; +} + +.fa-female:before { + content: "\f182"; +} + +.fa-fighter-jet:before { + content: "\f0fb"; +} + +.fa-figma:before { + content: "\f799"; +} + +.fa-file:before { + content: "\f15b"; +} + +.fa-file-alt:before { + content: "\f15c"; +} + +.fa-file-archive:before { + content: "\f1c6"; +} + +.fa-file-audio:before { + content: "\f1c7"; +} + +.fa-file-code:before { + content: "\f1c9"; +} + +.fa-file-contract:before { + content: "\f56c"; +} + +.fa-file-csv:before { + content: "\f6dd"; +} + +.fa-file-download:before { + content: "\f56d"; +} + +.fa-file-excel:before { + content: "\f1c3"; +} + +.fa-file-export:before { + content: "\f56e"; +} + +.fa-file-image:before { + content: "\f1c5"; +} + +.fa-file-import:before { + content: "\f56f"; +} + +.fa-file-invoice:before { + content: "\f570"; +} + +.fa-file-invoice-dollar:before { + content: "\f571"; +} + +.fa-file-medical:before { + content: "\f477"; +} + +.fa-file-medical-alt:before { + content: "\f478"; +} + +.fa-file-pdf:before { + content: "\f1c1"; +} + +.fa-file-powerpoint:before { + content: "\f1c4"; +} + +.fa-file-prescription:before { + content: "\f572"; +} + +.fa-file-signature:before { + content: "\f573"; +} + +.fa-file-upload:before { + content: "\f574"; +} + +.fa-file-video:before { + content: "\f1c8"; +} + +.fa-file-word:before { + content: "\f1c2"; +} + +.fa-fill:before { + content: "\f575"; +} + +.fa-fill-drip:before { + content: "\f576"; +} + +.fa-film:before { + content: "\f008"; +} + +.fa-filter:before { + content: "\f0b0"; +} + +.fa-fingerprint:before { + content: "\f577"; +} + +.fa-fire:before { + content: "\f06d"; +} + +.fa-fire-alt:before { + content: "\f7e4"; +} + +.fa-fire-extinguisher:before { + content: "\f134"; +} + +.fa-firefox:before { + content: "\f269"; +} + +.fa-first-aid:before { + content: "\f479"; +} + +.fa-first-order:before { + content: "\f2b0"; +} + +.fa-first-order-alt:before { + content: "\f50a"; +} + +.fa-firstdraft:before { + content: "\f3a1"; +} + +.fa-fish:before { + content: "\f578"; +} + +.fa-fist-raised:before { + content: "\f6de"; +} + +.fa-flag:before { + content: "\f024"; +} + +.fa-flag-checkered:before { + content: "\f11e"; +} + +.fa-flag-usa:before { + content: "\f74d"; +} + +.fa-flask:before { + content: "\f0c3"; +} + +.fa-flickr:before { + content: "\f16e"; +} + +.fa-flipboard:before { + content: "\f44d"; +} + +.fa-flushed:before { + content: "\f579"; +} + +.fa-fly:before { + content: "\f417"; +} + +.fa-folder:before { + content: "\f07b"; +} + +.fa-folder-minus:before { + content: "\f65d"; +} + +.fa-folder-open:before { + content: "\f07c"; +} + +.fa-folder-plus:before { + content: "\f65e"; +} + +.fa-font:before { + content: "\f031"; +} + +.fa-font-awesome:before { + content: "\f2b4"; +} + +.fa-font-awesome-alt:before { + content: "\f35c"; +} + +.fa-font-awesome-flag:before { + content: "\f425"; +} + +.fa-font-awesome-logo-full:before { + content: "\f4e6"; +} + +.fa-fonticons:before { + content: "\f280"; +} + +.fa-fonticons-fi:before { + content: "\f3a2"; +} + +.fa-football-ball:before { + content: "\f44e"; +} + +.fa-fort-awesome:before { + content: "\f286"; +} + +.fa-fort-awesome-alt:before { + content: "\f3a3"; +} + +.fa-forumbee:before { + content: "\f211"; +} + +.fa-forward:before { + content: "\f04e"; +} + +.fa-foursquare:before { + content: "\f180"; +} + +.fa-free-code-camp:before { + content: "\f2c5"; +} + +.fa-freebsd:before { + content: "\f3a4"; +} + +.fa-frog:before { + content: "\f52e"; +} + +.fa-frown:before { + content: "\f119"; +} + +.fa-frown-open:before { + content: "\f57a"; +} + +.fa-fulcrum:before { + content: "\f50b"; +} + +.fa-funnel-dollar:before { + content: "\f662"; +} + +.fa-futbol:before { + content: "\f1e3"; +} + +.fa-galactic-republic:before { + content: "\f50c"; +} + +.fa-galactic-senate:before { + content: "\f50d"; +} + +.fa-gamepad:before { + content: "\f11b"; +} + +.fa-gas-pump:before { + content: "\f52f"; +} + +.fa-gavel:before { + content: "\f0e3"; +} + +.fa-gem:before { + content: "\f3a5"; +} + +.fa-genderless:before { + content: "\f22d"; +} + +.fa-get-pocket:before { + content: "\f265"; +} + +.fa-gg:before { + content: "\f260"; +} + +.fa-gg-circle:before { + content: "\f261"; +} + +.fa-ghost:before { + content: "\f6e2"; +} + +.fa-gift:before { + content: "\f06b"; +} + +.fa-gifts:before { + content: "\f79c"; +} + +.fa-git:before { + content: "\f1d3"; +} + +.fa-git-square:before { + content: "\f1d2"; +} + +.fa-github:before { + content: "\f09b"; +} + +.fa-github-alt:before { + content: "\f113"; +} + +.fa-github-square:before { + content: "\f092"; +} + +.fa-gitkraken:before { + content: "\f3a6"; +} + +.fa-gitlab:before { + content: "\f296"; +} + +.fa-gitter:before { + content: "\f426"; +} + +.fa-glass-cheers:before { + content: "\f79f"; +} + +.fa-glass-martini:before { + content: "\f000"; +} + +.fa-glass-martini-alt:before { + content: "\f57b"; +} + +.fa-glass-whiskey:before { + content: "\f7a0"; +} + +.fa-glasses:before { + content: "\f530"; +} + +.fa-glide:before { + content: "\f2a5"; +} + +.fa-glide-g:before { + content: "\f2a6"; +} + +.fa-globe:before { + content: "\f0ac"; +} + +.fa-globe-africa:before { + content: "\f57c"; +} + +.fa-globe-americas:before { + content: "\f57d"; +} + +.fa-globe-asia:before { + content: "\f57e"; +} + +.fa-globe-europe:before { + content: "\f7a2"; +} + +.fa-gofore:before { + content: "\f3a7"; +} + +.fa-golf-ball:before { + content: "\f450"; +} + +.fa-goodreads:before { + content: "\f3a8"; +} + +.fa-goodreads-g:before { + content: "\f3a9"; +} + +.fa-google:before { + content: "\f1a0"; +} + +.fa-google-drive:before { + content: "\f3aa"; +} + +.fa-google-play:before { + content: "\f3ab"; +} + +.fa-google-plus:before { + content: "\f2b3"; +} + +.fa-google-plus-g:before { + content: "\f0d5"; +} + +.fa-google-plus-square:before { + content: "\f0d4"; +} + +.fa-google-wallet:before { + content: "\f1ee"; +} + +.fa-gopuram:before { + content: "\f664"; +} + +.fa-graduation-cap:before { + content: "\f19d"; +} + +.fa-gratipay:before { + content: "\f184"; +} + +.fa-grav:before { + content: "\f2d6"; +} + +.fa-greater-than:before { + content: "\f531"; +} + +.fa-greater-than-equal:before { + content: "\f532"; +} + +.fa-grimace:before { + content: "\f57f"; +} + +.fa-grin:before { + content: "\f580"; +} + +.fa-grin-alt:before { + content: "\f581"; +} + +.fa-grin-beam:before { + content: "\f582"; +} + +.fa-grin-beam-sweat:before { + content: "\f583"; +} + +.fa-grin-hearts:before { + content: "\f584"; +} + +.fa-grin-squint:before { + content: "\f585"; +} + +.fa-grin-squint-tears:before { + content: "\f586"; +} + +.fa-grin-stars:before { + content: "\f587"; +} + +.fa-grin-tears:before { + content: "\f588"; +} + +.fa-grin-tongue:before { + content: "\f589"; +} + +.fa-grin-tongue-squint:before { + content: "\f58a"; +} + +.fa-grin-tongue-wink:before { + content: "\f58b"; +} + +.fa-grin-wink:before { + content: "\f58c"; +} + +.fa-grip-horizontal:before { + content: "\f58d"; +} + +.fa-grip-lines:before { + content: "\f7a4"; +} + +.fa-grip-lines-vertical:before { + content: "\f7a5"; +} + +.fa-grip-vertical:before { + content: "\f58e"; +} + +.fa-gripfire:before { + content: "\f3ac"; +} + +.fa-grunt:before { + content: "\f3ad"; +} + +.fa-guitar:before { + content: "\f7a6"; +} + +.fa-gulp:before { + content: "\f3ae"; +} + +.fa-h-square:before { + content: "\f0fd"; +} + +.fa-hacker-news:before { + content: "\f1d4"; +} + +.fa-hacker-news-square:before { + content: "\f3af"; +} + +.fa-hackerrank:before { + content: "\f5f7"; +} + +.fa-hammer:before { + content: "\f6e3"; +} + +.fa-hamsa:before { + content: "\f665"; +} + +.fa-hand-holding:before { + content: "\f4bd"; +} + +.fa-hand-holding-heart:before { + content: "\f4be"; +} + +.fa-hand-holding-usd:before { + content: "\f4c0"; +} + +.fa-hand-lizard:before { + content: "\f258"; +} + +.fa-hand-paper:before { + content: "\f256"; +} + +.fa-hand-peace:before { + content: "\f25b"; +} + +.fa-hand-point-down:before { + content: "\f0a7"; +} + +.fa-hand-point-left:before { + content: "\f0a5"; +} + +.fa-hand-point-right:before { + content: "\f0a4"; +} + +.fa-hand-point-up:before { + content: "\f0a6"; +} + +.fa-hand-pointer:before { + content: "\f25a"; +} + +.fa-hand-rock:before { + content: "\f255"; +} + +.fa-hand-scissors:before { + content: "\f257"; +} + +.fa-hand-spock:before { + content: "\f259"; +} + +.fa-hands:before { + content: "\f4c2"; +} + +.fa-hands-helping:before { + content: "\f4c4"; +} + +.fa-handshake:before { + content: "\f2b5"; +} + +.fa-hanukiah:before { + content: "\f6e6"; +} + +.fa-hashtag:before { + content: "\f292"; +} + +.fa-hat-wizard:before { + content: "\f6e8"; +} + +.fa-haykal:before { + content: "\f666"; +} + +.fa-hdd:before { + content: "\f0a0"; +} + +.fa-heading:before { + content: "\f1dc"; +} + +.fa-headphones:before { + content: "\f025"; +} + +.fa-headphones-alt:before { + content: "\f58f"; +} + +.fa-headset:before { + content: "\f590"; +} + +.fa-heart:before { + content: "\f004"; +} + +.fa-heart-broken:before { + content: "\f7a9"; +} + +.fa-heartbeat:before { + content: "\f21e"; +} + +.fa-helicopter:before { + content: "\f533"; +} + +.fa-highlighter:before { + content: "\f591"; +} + +.fa-hiking:before { + content: "\f6ec"; +} + +.fa-hippo:before { + content: "\f6ed"; +} + +.fa-hips:before { + content: "\f452"; +} + +.fa-hire-a-helper:before { + content: "\f3b0"; +} + +.fa-history:before { + content: "\f1da"; +} + +.fa-hockey-puck:before { + content: "\f453"; +} + +.fa-holly-berry:before { + content: "\f7aa"; +} + +.fa-home:before { + content: "\f015"; +} + +.fa-hooli:before { + content: "\f427"; +} + +.fa-hornbill:before { + content: "\f592"; +} + +.fa-horse:before { + content: "\f6f0"; +} + +.fa-horse-head:before { + content: "\f7ab"; +} + +.fa-hospital:before { + content: "\f0f8"; +} + +.fa-hospital-alt:before { + content: "\f47d"; +} + +.fa-hospital-symbol:before { + content: "\f47e"; +} + +.fa-hot-tub:before { + content: "\f593"; +} + +.fa-hotel:before { + content: "\f594"; +} + +.fa-hotjar:before { + content: "\f3b1"; +} + +.fa-hourglass:before { + content: "\f254"; +} + +.fa-hourglass-end:before { + content: "\f253"; +} + +.fa-hourglass-half:before { + content: "\f252"; +} + +.fa-hourglass-start:before { + content: "\f251"; +} + +.fa-house-damage:before { + content: "\f6f1"; +} + +.fa-houzz:before { + content: "\f27c"; +} + +.fa-hryvnia:before { + content: "\f6f2"; +} + +.fa-html5:before { + content: "\f13b"; +} + +.fa-hubspot:before { + content: "\f3b2"; +} + +.fa-i-cursor:before { + content: "\f246"; +} + +.fa-icicles:before { + content: "\f7ad"; +} + +.fa-id-badge:before { + content: "\f2c1"; +} + +.fa-id-card:before { + content: "\f2c2"; +} + +.fa-id-card-alt:before { + content: "\f47f"; +} + +.fa-igloo:before { + content: "\f7ae"; +} + +.fa-image:before { + content: "\f03e"; +} + +.fa-images:before { + content: "\f302"; +} + +.fa-imdb:before { + content: "\f2d8"; +} + +.fa-inbox:before { + content: "\f01c"; +} + +.fa-indent:before { + content: "\f03c"; +} + +.fa-industry:before { + content: "\f275"; +} + +.fa-infinity:before { + content: "\f534"; +} + +.fa-info:before { + content: "\f129"; +} + +.fa-info-circle:before { + content: "\f05a"; +} + +.fa-instagram:before { + content: "\f16d"; +} + +.fa-intercom:before { + content: "\f7af"; +} + +.fa-internet-explorer:before { + content: "\f26b"; +} + +.fa-invision:before { + content: "\f7b0"; +} + +.fa-ioxhost:before { + content: "\f208"; +} + +.fa-italic:before { + content: "\f033"; +} + +.fa-itunes:before { + content: "\f3b4"; +} + +.fa-itunes-note:before { + content: "\f3b5"; +} + +.fa-java:before { + content: "\f4e4"; +} + +.fa-jedi:before { + content: "\f669"; +} + +.fa-jedi-order:before { + content: "\f50e"; +} + +.fa-jenkins:before { + content: "\f3b6"; +} + +.fa-jira:before { + content: "\f7b1"; +} + +.fa-joget:before { + content: "\f3b7"; +} + +.fa-joint:before { + content: "\f595"; +} + +.fa-joomla:before { + content: "\f1aa"; +} + +.fa-journal-whills:before { + content: "\f66a"; +} + +.fa-js:before { + content: "\f3b8"; +} + +.fa-js-square:before { + content: "\f3b9"; +} + +.fa-jsfiddle:before { + content: "\f1cc"; +} + +.fa-kaaba:before { + content: "\f66b"; +} + +.fa-kaggle:before { + content: "\f5fa"; +} + +.fa-key:before { + content: "\f084"; +} + +.fa-keybase:before { + content: "\f4f5"; +} + +.fa-keyboard:before { + content: "\f11c"; +} + +.fa-keycdn:before { + content: "\f3ba"; +} + +.fa-khanda:before { + content: "\f66d"; +} + +.fa-kickstarter:before { + content: "\f3bb"; +} + +.fa-kickstarter-k:before { + content: "\f3bc"; +} + +.fa-kiss:before { + content: "\f596"; +} + +.fa-kiss-beam:before { + content: "\f597"; +} + +.fa-kiss-wink-heart:before { + content: "\f598"; +} + +.fa-kiwi-bird:before { + content: "\f535"; +} + +.fa-korvue:before { + content: "\f42f"; +} + +.fa-landmark:before { + content: "\f66f"; +} + +.fa-language:before { + content: "\f1ab"; +} + +.fa-laptop:before { + content: "\f109"; +} + +.fa-laptop-code:before { + content: "\f5fc"; +} + +.fa-laravel:before { + content: "\f3bd"; +} + +.fa-lastfm:before { + content: "\f202"; +} + +.fa-lastfm-square:before { + content: "\f203"; +} + +.fa-laugh:before { + content: "\f599"; +} + +.fa-laugh-beam:before { + content: "\f59a"; +} + +.fa-laugh-squint:before { + content: "\f59b"; +} + +.fa-laugh-wink:before { + content: "\f59c"; +} + +.fa-layer-group:before { + content: "\f5fd"; +} + +.fa-leaf:before { + content: "\f06c"; +} + +.fa-leanpub:before { + content: "\f212"; +} + +.fa-lemon:before { + content: "\f094"; +} + +.fa-less:before { + content: "\f41d"; +} + +.fa-less-than:before { + content: "\f536"; +} + +.fa-less-than-equal:before { + content: "\f537"; +} + +.fa-level-down-alt:before { + content: "\f3be"; +} + +.fa-level-up-alt:before { + content: "\f3bf"; +} + +.fa-life-ring:before { + content: "\f1cd"; +} + +.fa-lightbulb:before { + content: "\f0eb"; +} + +.fa-line:before { + content: "\f3c0"; +} + +.fa-link:before { + content: "\f0c1"; +} + +.fa-linkedin:before { + content: "\f08c"; +} + +.fa-linkedin-in:before { + content: "\f0e1"; +} + +.fa-linode:before { + content: "\f2b8"; +} + +.fa-linux:before { + content: "\f17c"; +} + +.fa-lira-sign:before { + content: "\f195"; +} + +.fa-list:before { + content: "\f03a"; +} + +.fa-list-alt:before { + content: "\f022"; +} + +.fa-list-ol:before { + content: "\f0cb"; +} + +.fa-list-ul:before { + content: "\f0ca"; +} + +.fa-location-arrow:before { + content: "\f124"; +} + +.fa-lock:before { + content: "\f023"; +} + +.fa-lock-open:before { + content: "\f3c1"; +} + +.fa-long-arrow-alt-down:before { + content: "\f309"; +} + +.fa-long-arrow-alt-left:before { + content: "\f30a"; +} + +.fa-long-arrow-alt-right:before { + content: "\f30b"; +} + +.fa-long-arrow-alt-up:before { + content: "\f30c"; +} + +.fa-low-vision:before { + content: "\f2a8"; +} + +.fa-luggage-cart:before { + content: "\f59d"; +} + +.fa-lyft:before { + content: "\f3c3"; +} + +.fa-magento:before { + content: "\f3c4"; +} + +.fa-magic:before { + content: "\f0d0"; +} + +.fa-magnet:before { + content: "\f076"; +} + +.fa-mail-bulk:before { + content: "\f674"; +} + +.fa-mailchimp:before { + content: "\f59e"; +} + +.fa-male:before { + content: "\f183"; +} + +.fa-mandalorian:before { + content: "\f50f"; +} + +.fa-map:before { + content: "\f279"; +} + +.fa-map-marked:before { + content: "\f59f"; +} + +.fa-map-marked-alt:before { + content: "\f5a0"; +} + +.fa-map-marker:before { + content: "\f041"; +} + +.fa-map-marker-alt:before { + content: "\f3c5"; +} + +.fa-map-pin:before { + content: "\f276"; +} + +.fa-map-signs:before { + content: "\f277"; +} + +.fa-markdown:before { + content: "\f60f"; +} + +.fa-marker:before { + content: "\f5a1"; +} + +.fa-mars:before { + content: "\f222"; +} + +.fa-mars-double:before { + content: "\f227"; +} + +.fa-mars-stroke:before { + content: "\f229"; +} + +.fa-mars-stroke-h:before { + content: "\f22b"; +} + +.fa-mars-stroke-v:before { + content: "\f22a"; +} + +.fa-mask:before { + content: "\f6fa"; +} + +.fa-mastodon:before { + content: "\f4f6"; +} + +.fa-maxcdn:before { + content: "\f136"; +} + +.fa-medal:before { + content: "\f5a2"; +} + +.fa-medapps:before { + content: "\f3c6"; +} + +.fa-medium:before { + content: "\f23a"; +} + +.fa-medium-m:before { + content: "\f3c7"; +} + +.fa-medkit:before { + content: "\f0fa"; +} + +.fa-medrt:before { + content: "\f3c8"; +} + +.fa-meetup:before { + content: "\f2e0"; +} + +.fa-megaport:before { + content: "\f5a3"; +} + +.fa-meh:before { + content: "\f11a"; +} + +.fa-meh-blank:before { + content: "\f5a4"; +} + +.fa-meh-rolling-eyes:before { + content: "\f5a5"; +} + +.fa-memory:before { + content: "\f538"; +} + +.fa-mendeley:before { + content: "\f7b3"; +} + +.fa-menorah:before { + content: "\f676"; +} + +.fa-mercury:before { + content: "\f223"; +} + +.fa-meteor:before { + content: "\f753"; +} + +.fa-microchip:before { + content: "\f2db"; +} + +.fa-microphone:before { + content: "\f130"; +} + +.fa-microphone-alt:before { + content: "\f3c9"; +} + +.fa-microphone-alt-slash:before { + content: "\f539"; +} + +.fa-microphone-slash:before { + content: "\f131"; +} + +.fa-microscope:before { + content: "\f610"; +} + +.fa-microsoft:before { + content: "\f3ca"; +} + +.fa-minus:before { + content: "\f068"; +} + +.fa-minus-circle:before { + content: "\f056"; +} + +.fa-minus-square:before { + content: "\f146"; +} + +.fa-mitten:before { + content: "\f7b5"; +} + +.fa-mix:before { + content: "\f3cb"; +} + +.fa-mixcloud:before { + content: "\f289"; +} + +.fa-mizuni:before { + content: "\f3cc"; +} + +.fa-mobile:before { + content: "\f10b"; +} + +.fa-mobile-alt:before { + content: "\f3cd"; +} + +.fa-modx:before { + content: "\f285"; +} + +.fa-monero:before { + content: "\f3d0"; +} + +.fa-money-bill:before { + content: "\f0d6"; +} + +.fa-money-bill-alt:before { + content: "\f3d1"; +} + +.fa-money-bill-wave:before { + content: "\f53a"; +} + +.fa-money-bill-wave-alt:before { + content: "\f53b"; +} + +.fa-money-check:before { + content: "\f53c"; +} + +.fa-money-check-alt:before { + content: "\f53d"; +} + +.fa-monument:before { + content: "\f5a6"; +} + +.fa-moon:before { + content: "\f186"; +} + +.fa-mortar-pestle:before { + content: "\f5a7"; +} + +.fa-mosque:before { + content: "\f678"; +} + +.fa-motorcycle:before { + content: "\f21c"; +} + +.fa-mountain:before { + content: "\f6fc"; +} + +.fa-mouse-pointer:before { + content: "\f245"; +} + +.fa-mug-hot:before { + content: "\f7b6"; +} + +.fa-music:before { + content: "\f001"; +} + +.fa-napster:before { + content: "\f3d2"; +} + +.fa-neos:before { + content: "\f612"; +} + +.fa-network-wired:before { + content: "\f6ff"; +} + +.fa-neuter:before { + content: "\f22c"; +} + +.fa-newspaper:before { + content: "\f1ea"; +} + +.fa-nimblr:before { + content: "\f5a8"; +} + +.fa-nintendo-switch:before { + content: "\f418"; +} + +.fa-node:before { + content: "\f419"; +} + +.fa-node-js:before { + content: "\f3d3"; +} + +.fa-not-equal:before { + content: "\f53e"; +} + +.fa-notes-medical:before { + content: "\f481"; +} + +.fa-npm:before { + content: "\f3d4"; +} + +.fa-ns8:before { + content: "\f3d5"; +} + +.fa-nutritionix:before { + content: "\f3d6"; +} + +.fa-object-group:before { + content: "\f247"; +} + +.fa-object-ungroup:before { + content: "\f248"; +} + +.fa-odnoklassniki:before { + content: "\f263"; +} + +.fa-odnoklassniki-square:before { + content: "\f264"; +} + +.fa-oil-can:before { + content: "\f613"; +} + +.fa-old-republic:before { + content: "\f510"; +} + +.fa-om:before { + content: "\f679"; +} + +.fa-opencart:before { + content: "\f23d"; +} + +.fa-openid:before { + content: "\f19b"; +} + +.fa-opera:before { + content: "\f26a"; +} + +.fa-optin-monster:before { + content: "\f23c"; +} + +.fa-osi:before { + content: "\f41a"; +} + +.fa-otter:before { + content: "\f700"; +} + +.fa-outdent:before { + content: "\f03b"; +} + +.fa-page4:before { + content: "\f3d7"; +} + +.fa-pagelines:before { + content: "\f18c"; +} + +.fa-paint-brush:before { + content: "\f1fc"; +} + +.fa-paint-roller:before { + content: "\f5aa"; +} + +.fa-palette:before { + content: "\f53f"; +} + +.fa-palfed:before { + content: "\f3d8"; +} + +.fa-pallet:before { + content: "\f482"; +} + +.fa-paper-plane:before { + content: "\f1d8"; +} + +.fa-paperclip:before { + content: "\f0c6"; +} + +.fa-parachute-box:before { + content: "\f4cd"; +} + +.fa-paragraph:before { + content: "\f1dd"; +} + +.fa-parking:before { + content: "\f540"; +} + +.fa-passport:before { + content: "\f5ab"; +} + +.fa-pastafarianism:before { + content: "\f67b"; +} + +.fa-paste:before { + content: "\f0ea"; +} + +.fa-patreon:before { + content: "\f3d9"; +} + +.fa-pause:before { + content: "\f04c"; +} + +.fa-pause-circle:before { + content: "\f28b"; +} + +.fa-paw:before { + content: "\f1b0"; +} + +.fa-paypal:before { + content: "\f1ed"; +} + +.fa-peace:before { + content: "\f67c"; +} + +.fa-pen:before { + content: "\f304"; +} + +.fa-pen-alt:before { + content: "\f305"; +} + +.fa-pen-fancy:before { + content: "\f5ac"; +} + +.fa-pen-nib:before { + content: "\f5ad"; +} + +.fa-pen-square:before { + content: "\f14b"; +} + +.fa-pencil-alt:before { + content: "\f303"; +} + +.fa-pencil-ruler:before { + content: "\f5ae"; +} + +.fa-penny-arcade:before { + content: "\f704"; +} + +.fa-people-carry:before { + content: "\f4ce"; +} + +.fa-percent:before { + content: "\f295"; +} + +.fa-percentage:before { + content: "\f541"; +} + +.fa-periscope:before { + content: "\f3da"; +} + +.fa-person-booth:before { + content: "\f756"; +} + +.fa-phabricator:before { + content: "\f3db"; +} + +.fa-phoenix-framework:before { + content: "\f3dc"; +} + +.fa-phoenix-squadron:before { + content: "\f511"; +} + +.fa-phone:before { + content: "\f095"; +} + +.fa-phone-slash:before { + content: "\f3dd"; +} + +.fa-phone-square:before { + content: "\f098"; +} + +.fa-phone-volume:before { + content: "\f2a0"; +} + +.fa-php:before { + content: "\f457"; +} + +.fa-pied-piper:before { + content: "\f2ae"; +} + +.fa-pied-piper-alt:before { + content: "\f1a8"; +} + +.fa-pied-piper-hat:before { + content: "\f4e5"; +} + +.fa-pied-piper-pp:before { + content: "\f1a7"; +} + +.fa-piggy-bank:before { + content: "\f4d3"; +} + +.fa-pills:before { + content: "\f484"; +} + +.fa-pinterest:before { + content: "\f0d2"; +} + +.fa-pinterest-p:before { + content: "\f231"; +} + +.fa-pinterest-square:before { + content: "\f0d3"; +} + +.fa-place-of-worship:before { + content: "\f67f"; +} + +.fa-plane:before { + content: "\f072"; +} + +.fa-plane-arrival:before { + content: "\f5af"; +} + +.fa-plane-departure:before { + content: "\f5b0"; +} + +.fa-play:before { + content: "\f04b"; +} + +.fa-play-circle:before { + content: "\f144"; +} + +.fa-playstation:before { + content: "\f3df"; +} + +.fa-plug:before { + content: "\f1e6"; +} + +.fa-plus:before { + content: "\f067"; +} + +.fa-plus-circle:before { + content: "\f055"; +} + +.fa-plus-square:before { + content: "\f0fe"; +} + +.fa-podcast:before { + content: "\f2ce"; +} + +.fa-poll:before { + content: "\f681"; +} + +.fa-poll-h:before { + content: "\f682"; +} + +.fa-poo:before { + content: "\f2fe"; +} + +.fa-poo-storm:before { + content: "\f75a"; +} + +.fa-poop:before { + content: "\f619"; +} + +.fa-portrait:before { + content: "\f3e0"; +} + +.fa-pound-sign:before { + content: "\f154"; +} + +.fa-power-off:before { + content: "\f011"; +} + +.fa-pray:before { + content: "\f683"; +} + +.fa-praying-hands:before { + content: "\f684"; +} + +.fa-prescription:before { + content: "\f5b1"; +} + +.fa-prescription-bottle:before { + content: "\f485"; +} + +.fa-prescription-bottle-alt:before { + content: "\f486"; +} + +.fa-print:before { + content: "\f02f"; +} + +.fa-procedures:before { + content: "\f487"; +} + +.fa-product-hunt:before { + content: "\f288"; +} + +.fa-project-diagram:before { + content: "\f542"; +} + +.fa-pushed:before { + content: "\f3e1"; +} + +.fa-puzzle-piece:before { + content: "\f12e"; +} + +.fa-python:before { + content: "\f3e2"; +} + +.fa-qq:before { + content: "\f1d6"; +} + +.fa-qrcode:before { + content: "\f029"; +} + +.fa-question:before { + content: "\f128"; +} + +.fa-question-circle:before { + content: "\f059"; +} + +.fa-quidditch:before { + content: "\f458"; +} + +.fa-quinscape:before { + content: "\f459"; +} + +.fa-quora:before { + content: "\f2c4"; +} + +.fa-quote-left:before { + content: "\f10d"; +} + +.fa-quote-right:before { + content: "\f10e"; +} + +.fa-quran:before { + content: "\f687"; +} + +.fa-r-project:before { + content: "\f4f7"; +} + +.fa-radiation:before { + content: "\f7b9"; +} + +.fa-radiation-alt:before { + content: "\f7ba"; +} + +.fa-rainbow:before { + content: "\f75b"; +} + +.fa-random:before { + content: "\f074"; +} + +.fa-raspberry-pi:before { + content: "\f7bb"; +} + +.fa-ravelry:before { + content: "\f2d9"; +} + +.fa-react:before { + content: "\f41b"; +} + +.fa-reacteurope:before { + content: "\f75d"; +} + +.fa-readme:before { + content: "\f4d5"; +} + +.fa-rebel:before { + content: "\f1d0"; +} + +.fa-receipt:before { + content: "\f543"; +} + +.fa-recycle:before { + content: "\f1b8"; +} + +.fa-red-river:before { + content: "\f3e3"; +} + +.fa-reddit:before { + content: "\f1a1"; +} + +.fa-reddit-alien:before { + content: "\f281"; +} + +.fa-reddit-square:before { + content: "\f1a2"; +} + +.fa-redhat:before { + content: "\f7bc"; +} + +.fa-redo:before { + content: "\f01e"; +} + +.fa-redo-alt:before { + content: "\f2f9"; +} + +.fa-registered:before { + content: "\f25d"; +} + +.fa-renren:before { + content: "\f18b"; +} + +.fa-reply:before { + content: "\f3e5"; +} + +.fa-reply-all:before { + content: "\f122"; +} + +.fa-replyd:before { + content: "\f3e6"; +} + +.fa-republican:before { + content: "\f75e"; +} + +.fa-researchgate:before { + content: "\f4f8"; +} + +.fa-resolving:before { + content: "\f3e7"; +} + +.fa-restroom:before { + content: "\f7bd"; +} + +.fa-retweet:before { + content: "\f079"; +} + +.fa-rev:before { + content: "\f5b2"; +} + +.fa-ribbon:before { + content: "\f4d6"; +} + +.fa-ring:before { + content: "\f70b"; +} + +.fa-road:before { + content: "\f018"; +} + +.fa-robot:before { + content: "\f544"; +} + +.fa-rocket:before { + content: "\f135"; +} + +.fa-rocketchat:before { + content: "\f3e8"; +} + +.fa-rockrms:before { + content: "\f3e9"; +} + +.fa-route:before { + content: "\f4d7"; +} + +.fa-rss:before { + content: "\f09e"; +} + +.fa-rss-square:before { + content: "\f143"; +} + +.fa-ruble-sign:before { + content: "\f158"; +} + +.fa-ruler:before { + content: "\f545"; +} + +.fa-ruler-combined:before { + content: "\f546"; +} + +.fa-ruler-horizontal:before { + content: "\f547"; +} + +.fa-ruler-vertical:before { + content: "\f548"; +} + +.fa-running:before { + content: "\f70c"; +} + +.fa-rupee-sign:before { + content: "\f156"; +} + +.fa-sad-cry:before { + content: "\f5b3"; +} + +.fa-sad-tear:before { + content: "\f5b4"; +} + +.fa-safari:before { + content: "\f267"; +} + +.fa-sass:before { + content: "\f41e"; +} + +.fa-satellite:before { + content: "\f7bf"; +} + +.fa-satellite-dish:before { + content: "\f7c0"; +} + +.fa-save:before { + content: "\f0c7"; +} + +.fa-schlix:before { + content: "\f3ea"; +} + +.fa-school:before { + content: "\f549"; +} + +.fa-screwdriver:before { + content: "\f54a"; +} + +.fa-scribd:before { + content: "\f28a"; +} + +.fa-scroll:before { + content: "\f70e"; +} + +.fa-sd-card:before { + content: "\f7c2"; +} + +.fa-search:before { + content: "\f002"; +} + +.fa-search-dollar:before { + content: "\f688"; +} + +.fa-search-location:before { + content: "\f689"; +} + +.fa-search-minus:before { + content: "\f010"; +} + +.fa-search-plus:before { + content: "\f00e"; +} + +.fa-searchengin:before { + content: "\f3eb"; +} + +.fa-seedling:before { + content: "\f4d8"; +} + +.fa-sellcast:before { + content: "\f2da"; +} + +.fa-sellsy:before { + content: "\f213"; +} + +.fa-server:before { + content: "\f233"; +} + +.fa-servicestack:before { + content: "\f3ec"; +} + +.fa-shapes:before { + content: "\f61f"; +} + +.fa-share:before { + content: "\f064"; +} + +.fa-share-alt:before { + content: "\f1e0"; +} + +.fa-share-alt-square:before { + content: "\f1e1"; +} + +.fa-share-square:before { + content: "\f14d"; +} + +.fa-shekel-sign:before { + content: "\f20b"; +} + +.fa-shield-alt:before { + content: "\f3ed"; +} + +.fa-ship:before { + content: "\f21a"; +} + +.fa-shipping-fast:before { + content: "\f48b"; +} + +.fa-shirtsinbulk:before { + content: "\f214"; +} + +.fa-shoe-prints:before { + content: "\f54b"; +} + +.fa-shopping-bag:before { + content: "\f290"; +} + +.fa-shopping-basket:before { + content: "\f291"; +} + +.fa-shopping-cart:before { + content: "\f07a"; +} + +.fa-shopware:before { + content: "\f5b5"; +} + +.fa-shower:before { + content: "\f2cc"; +} + +.fa-shuttle-van:before { + content: "\f5b6"; +} + +.fa-sign:before { + content: "\f4d9"; +} + +.fa-sign-in-alt:before { + content: "\f2f6"; +} + +.fa-sign-language:before { + content: "\f2a7"; +} + +.fa-sign-out-alt:before { + content: "\f2f5"; +} + +.fa-signal:before { + content: "\f012"; +} + +.fa-signature:before { + content: "\f5b7"; +} + +.fa-sim-card:before { + content: "\f7c4"; +} + +.fa-simplybuilt:before { + content: "\f215"; +} + +.fa-sistrix:before { + content: "\f3ee"; +} + +.fa-sitemap:before { + content: "\f0e8"; +} + +.fa-sith:before { + content: "\f512"; +} + +.fa-skating:before { + content: "\f7c5"; +} + +.fa-sketch:before { + content: "\f7c6"; +} + +.fa-skiing:before { + content: "\f7c9"; +} + +.fa-skiing-nordic:before { + content: "\f7ca"; +} + +.fa-skull:before { + content: "\f54c"; +} + +.fa-skull-crossbones:before { + content: "\f714"; +} + +.fa-skyatlas:before { + content: "\f216"; +} + +.fa-skype:before { + content: "\f17e"; +} + +.fa-slack:before { + content: "\f198"; +} + +.fa-slack-hash:before { + content: "\f3ef"; +} + +.fa-slash:before { + content: "\f715"; +} + +.fa-sleigh:before { + content: "\f7cc"; +} + +.fa-sliders-h:before { + content: "\f1de"; +} + +.fa-slideshare:before { + content: "\f1e7"; +} + +.fa-smile:before { + content: "\f118"; +} + +.fa-smile-beam:before { + content: "\f5b8"; +} + +.fa-smile-wink:before { + content: "\f4da"; +} + +.fa-smog:before { + content: "\f75f"; +} + +.fa-smoking:before { + content: "\f48d"; +} + +.fa-smoking-ban:before { + content: "\f54d"; +} + +.fa-sms:before { + content: "\f7cd"; +} + +.fa-snapchat:before { + content: "\f2ab"; +} + +.fa-snapchat-ghost:before { + content: "\f2ac"; +} + +.fa-snapchat-square:before { + content: "\f2ad"; +} + +.fa-snowboarding:before { + content: "\f7ce"; +} + +.fa-snowflake:before { + content: "\f2dc"; +} + +.fa-snowman:before { + content: "\f7d0"; +} + +.fa-snowplow:before { + content: "\f7d2"; +} + +.fa-socks:before { + content: "\f696"; +} + +.fa-solar-panel:before { + content: "\f5ba"; +} + +.fa-sort:before { + content: "\f0dc"; +} + +.fa-sort-alpha-down:before { + content: "\f15d"; +} + +.fa-sort-alpha-up:before { + content: "\f15e"; +} + +.fa-sort-amount-down:before { + content: "\f160"; +} + +.fa-sort-amount-up:before { + content: "\f161"; +} + +.fa-sort-down:before { + content: "\f0dd"; +} + +.fa-sort-numeric-down:before { + content: "\f162"; +} + +.fa-sort-numeric-up:before { + content: "\f163"; +} + +.fa-sort-up:before { + content: "\f0de"; +} + +.fa-soundcloud:before { + content: "\f1be"; +} + +.fa-sourcetree:before { + content: "\f7d3"; +} + +.fa-spa:before { + content: "\f5bb"; +} + +.fa-space-shuttle:before { + content: "\f197"; +} + +.fa-speakap:before { + content: "\f3f3"; +} + +.fa-spider:before { + content: "\f717"; +} + +.fa-spinner:before { + content: "\f110"; +} + +.fa-splotch:before { + content: "\f5bc"; +} + +.fa-spotify:before { + content: "\f1bc"; +} + +.fa-spray-can:before { + content: "\f5bd"; +} + +.fa-square:before { + content: "\f0c8"; +} + +.fa-square-full:before { + content: "\f45c"; +} + +.fa-square-root-alt:before { + content: "\f698"; +} + +.fa-squarespace:before { + content: "\f5be"; +} + +.fa-stack-exchange:before { + content: "\f18d"; +} + +.fa-stack-overflow:before { + content: "\f16c"; +} + +.fa-stamp:before { + content: "\f5bf"; +} + +.fa-star:before { + content: "\f005"; +} + +.fa-star-and-crescent:before { + content: "\f699"; +} + +.fa-star-half:before { + content: "\f089"; +} + +.fa-star-half-alt:before { + content: "\f5c0"; +} + +.fa-star-of-david:before { + content: "\f69a"; +} + +.fa-star-of-life:before { + content: "\f621"; +} + +.fa-staylinked:before { + content: "\f3f5"; +} + +.fa-steam:before { + content: "\f1b6"; +} + +.fa-steam-square:before { + content: "\f1b7"; +} + +.fa-steam-symbol:before { + content: "\f3f6"; +} + +.fa-step-backward:before { + content: "\f048"; +} + +.fa-step-forward:before { + content: "\f051"; +} + +.fa-stethoscope:before { + content: "\f0f1"; +} + +.fa-sticker-mule:before { + content: "\f3f7"; +} + +.fa-sticky-note:before { + content: "\f249"; +} + +.fa-stop:before { + content: "\f04d"; +} + +.fa-stop-circle:before { + content: "\f28d"; +} + +.fa-stopwatch:before { + content: "\f2f2"; +} + +.fa-store:before { + content: "\f54e"; +} + +.fa-store-alt:before { + content: "\f54f"; +} + +.fa-strava:before { + content: "\f428"; +} + +.fa-stream:before { + content: "\f550"; +} + +.fa-street-view:before { + content: "\f21d"; +} + +.fa-strikethrough:before { + content: "\f0cc"; +} + +.fa-stripe:before { + content: "\f429"; +} + +.fa-stripe-s:before { + content: "\f42a"; +} + +.fa-stroopwafel:before { + content: "\f551"; +} + +.fa-studiovinari:before { + content: "\f3f8"; +} + +.fa-stumbleupon:before { + content: "\f1a4"; +} + +.fa-stumbleupon-circle:before { + content: "\f1a3"; +} + +.fa-subscript:before { + content: "\f12c"; +} + +.fa-subway:before { + content: "\f239"; +} + +.fa-suitcase:before { + content: "\f0f2"; +} + +.fa-suitcase-rolling:before { + content: "\f5c1"; +} + +.fa-sun:before { + content: "\f185"; +} + +.fa-superpowers:before { + content: "\f2dd"; +} + +.fa-superscript:before { + content: "\f12b"; +} + +.fa-supple:before { + content: "\f3f9"; +} + +.fa-surprise:before { + content: "\f5c2"; +} + +.fa-suse:before { + content: "\f7d6"; +} + +.fa-swatchbook:before { + content: "\f5c3"; +} + +.fa-swimmer:before { + content: "\f5c4"; +} + +.fa-swimming-pool:before { + content: "\f5c5"; +} + +.fa-synagogue:before { + content: "\f69b"; +} + +.fa-sync:before { + content: "\f021"; +} + +.fa-sync-alt:before { + content: "\f2f1"; +} + +.fa-syringe:before { + content: "\f48e"; +} + +.fa-table:before { + content: "\f0ce"; +} + +.fa-table-tennis:before { + content: "\f45d"; +} + +.fa-tablet:before { + content: "\f10a"; +} + +.fa-tablet-alt:before { + content: "\f3fa"; +} + +.fa-tablets:before { + content: "\f490"; +} + +.fa-tachometer-alt:before { + content: "\f3fd"; +} + +.fa-tag:before { + content: "\f02b"; +} + +.fa-tags:before { + content: "\f02c"; +} + +.fa-tape:before { + content: "\f4db"; +} + +.fa-tasks:before { + content: "\f0ae"; +} + +.fa-taxi:before { + content: "\f1ba"; +} + +.fa-teamspeak:before { + content: "\f4f9"; +} + +.fa-teeth:before { + content: "\f62e"; +} + +.fa-teeth-open:before { + content: "\f62f"; +} + +.fa-telegram:before { + content: "\f2c6"; +} + +.fa-telegram-plane:before { + content: "\f3fe"; +} + +.fa-temperature-high:before { + content: "\f769"; +} + +.fa-temperature-low:before { + content: "\f76b"; +} + +.fa-tencent-weibo:before { + content: "\f1d5"; +} + +.fa-tenge:before { + content: "\f7d7"; +} + +.fa-terminal:before { + content: "\f120"; +} + +.fa-text-height:before { + content: "\f034"; +} + +.fa-text-width:before { + content: "\f035"; +} + +.fa-th:before { + content: "\f00a"; +} + +.fa-th-large:before { + content: "\f009"; +} + +.fa-th-list:before { + content: "\f00b"; +} + +.fa-the-red-yeti:before { + content: "\f69d"; +} + +.fa-theater-masks:before { + content: "\f630"; +} + +.fa-themeco:before { + content: "\f5c6"; +} + +.fa-themeisle:before { + content: "\f2b2"; +} + +.fa-thermometer:before { + content: "\f491"; +} + +.fa-thermometer-empty:before { + content: "\f2cb"; +} + +.fa-thermometer-full:before { + content: "\f2c7"; +} + +.fa-thermometer-half:before { + content: "\f2c9"; +} + +.fa-thermometer-quarter:before { + content: "\f2ca"; +} + +.fa-thermometer-three-quarters:before { + content: "\f2c8"; +} + +.fa-think-peaks:before { + content: "\f731"; +} + +.fa-thumbs-down:before { + content: "\f165"; +} + +.fa-thumbs-up:before { + content: "\f164"; +} + +.fa-thumbtack:before { + content: "\f08d"; +} + +.fa-ticket-alt:before { + content: "\f3ff"; +} + +.fa-times:before { + content: "\f00d"; +} + +.fa-times-circle:before { + content: "\f057"; +} + +.fa-tint:before { + content: "\f043"; +} + +.fa-tint-slash:before { + content: "\f5c7"; +} + +.fa-tired:before { + content: "\f5c8"; +} + +.fa-toggle-off:before { + content: "\f204"; +} + +.fa-toggle-on:before { + content: "\f205"; +} + +.fa-toilet:before { + content: "\f7d8"; +} + +.fa-toilet-paper:before { + content: "\f71e"; +} + +.fa-toolbox:before { + content: "\f552"; +} + +.fa-tools:before { + content: "\f7d9"; +} + +.fa-tooth:before { + content: "\f5c9"; +} + +.fa-torah:before { + content: "\f6a0"; +} + +.fa-torii-gate:before { + content: "\f6a1"; +} + +.fa-tractor:before { + content: "\f722"; +} + +.fa-trade-federation:before { + content: "\f513"; +} + +.fa-trademark:before { + content: "\f25c"; +} + +.fa-traffic-light:before { + content: "\f637"; +} + +.fa-train:before { + content: "\f238"; +} + +.fa-tram:before { + content: "\f7da"; +} + +.fa-transgender:before { + content: "\f224"; +} + +.fa-transgender-alt:before { + content: "\f225"; +} + +.fa-trash:before { + content: "\f1f8"; +} + +.fa-trash-alt:before { + content: "\f2ed"; +} + +.fa-tree:before { + content: "\f1bb"; +} + +.fa-trello:before { + content: "\f181"; +} + +.fa-tripadvisor:before { + content: "\f262"; +} + +.fa-trophy:before { + content: "\f091"; +} + +.fa-truck:before { + content: "\f0d1"; +} + +.fa-truck-loading:before { + content: "\f4de"; +} + +.fa-truck-monster:before { + content: "\f63b"; +} + +.fa-truck-moving:before { + content: "\f4df"; +} + +.fa-truck-pickup:before { + content: "\f63c"; +} + +.fa-tshirt:before { + content: "\f553"; +} + +.fa-tty:before { + content: "\f1e4"; +} + +.fa-tumblr:before { + content: "\f173"; +} + +.fa-tumblr-square:before { + content: "\f174"; +} + +.fa-tv:before { + content: "\f26c"; +} + +.fa-twitch:before { + content: "\f1e8"; +} + +.fa-twitter:before { + content: "\f099"; +} + +.fa-twitter-square:before { + content: "\f081"; +} + +.fa-typo3:before { + content: "\f42b"; +} + +.fa-uber:before { + content: "\f402"; +} + +.fa-ubuntu:before { + content: "\f7df"; +} + +.fa-uikit:before { + content: "\f403"; +} + +.fa-umbrella:before { + content: "\f0e9"; +} + +.fa-umbrella-beach:before { + content: "\f5ca"; +} + +.fa-underline:before { + content: "\f0cd"; +} + +.fa-undo:before { + content: "\f0e2"; +} + +.fa-undo-alt:before { + content: "\f2ea"; +} + +.fa-uniregistry:before { + content: "\f404"; +} + +.fa-universal-access:before { + content: "\f29a"; +} + +.fa-university:before { + content: "\f19c"; +} + +.fa-unlink:before { + content: "\f127"; +} + +.fa-unlock:before { + content: "\f09c"; +} + +.fa-unlock-alt:before { + content: "\f13e"; +} + +.fa-untappd:before { + content: "\f405"; +} + +.fa-upload:before { + content: "\f093"; +} + +.fa-ups:before { + content: "\f7e0"; +} + +.fa-usb:before { + content: "\f287"; +} + +.fa-user:before { + content: "\f007"; +} + +.fa-user-alt:before { + content: "\f406"; +} + +.fa-user-alt-slash:before { + content: "\f4fa"; +} + +.fa-user-astronaut:before { + content: "\f4fb"; +} + +.fa-user-check:before { + content: "\f4fc"; +} + +.fa-user-circle:before { + content: "\f2bd"; +} + +.fa-user-clock:before { + content: "\f4fd"; +} + +.fa-user-cog:before { + content: "\f4fe"; +} + +.fa-user-edit:before { + content: "\f4ff"; +} + +.fa-user-friends:before { + content: "\f500"; +} + +.fa-user-graduate:before { + content: "\f501"; +} + +.fa-user-injured:before { + content: "\f728"; +} + +.fa-user-lock:before { + content: "\f502"; +} + +.fa-user-md:before { + content: "\f0f0"; +} + +.fa-user-minus:before { + content: "\f503"; +} + +.fa-user-ninja:before { + content: "\f504"; +} + +.fa-user-plus:before { + content: "\f234"; +} + +.fa-user-secret:before { + content: "\f21b"; +} + +.fa-user-shield:before { + content: "\f505"; +} + +.fa-user-slash:before { + content: "\f506"; +} + +.fa-user-tag:before { + content: "\f507"; +} + +.fa-user-tie:before { + content: "\f508"; +} + +.fa-user-times:before { + content: "\f235"; +} + +.fa-users:before { + content: "\f0c0"; +} + +.fa-users-cog:before { + content: "\f509"; +} + +.fa-usps:before { + content: "\f7e1"; +} + +.fa-ussunnah:before { + content: "\f407"; +} + +.fa-utensil-spoon:before { + content: "\f2e5"; +} + +.fa-utensils:before { + content: "\f2e7"; +} + +.fa-vaadin:before { + content: "\f408"; +} + +.fa-vector-square:before { + content: "\f5cb"; +} + +.fa-venus:before { + content: "\f221"; +} + +.fa-venus-double:before { + content: "\f226"; +} + +.fa-venus-mars:before { + content: "\f228"; +} + +.fa-viacoin:before { + content: "\f237"; +} + +.fa-viadeo:before { + content: "\f2a9"; +} + +.fa-viadeo-square:before { + content: "\f2aa"; +} + +.fa-vial:before { + content: "\f492"; +} + +.fa-vials:before { + content: "\f493"; +} + +.fa-viber:before { + content: "\f409"; +} + +.fa-video:before { + content: "\f03d"; +} + +.fa-video-slash:before { + content: "\f4e2"; +} + +.fa-vihara:before { + content: "\f6a7"; +} + +.fa-vimeo:before { + content: "\f40a"; +} + +.fa-vimeo-square:before { + content: "\f194"; +} + +.fa-vimeo-v:before { + content: "\f27d"; +} + +.fa-vine:before { + content: "\f1ca"; +} + +.fa-vk:before { + content: "\f189"; +} + +.fa-vnv:before { + content: "\f40b"; +} + +.fa-volleyball-ball:before { + content: "\f45f"; +} + +.fa-volume-down:before { + content: "\f027"; +} + +.fa-volume-mute:before { + content: "\f6a9"; +} + +.fa-volume-off:before { + content: "\f026"; +} + +.fa-volume-up:before { + content: "\f028"; +} + +.fa-vote-yea:before { + content: "\f772"; +} + +.fa-vr-cardboard:before { + content: "\f729"; +} + +.fa-vuejs:before { + content: "\f41f"; +} + +.fa-walking:before { + content: "\f554"; +} + +.fa-wallet:before { + content: "\f555"; +} + +.fa-warehouse:before { + content: "\f494"; +} + +.fa-water:before { + content: "\f773"; +} + +.fa-weebly:before { + content: "\f5cc"; +} + +.fa-weibo:before { + content: "\f18a"; +} + +.fa-weight:before { + content: "\f496"; +} + +.fa-weight-hanging:before { + content: "\f5cd"; +} + +.fa-weixin:before { + content: "\f1d7"; +} + +.fa-whatsapp:before { + content: "\f232"; +} + +.fa-whatsapp-square:before { + content: "\f40c"; +} + +.fa-wheelchair:before { + content: "\f193"; +} + +.fa-whmcs:before { + content: "\f40d"; +} + +.fa-wifi:before { + content: "\f1eb"; +} + +.fa-wikipedia-w:before { + content: "\f266"; +} + +.fa-wind:before { + content: "\f72e"; +} + +.fa-window-close:before { + content: "\f410"; +} + +.fa-window-maximize:before { + content: "\f2d0"; +} + +.fa-window-minimize:before { + content: "\f2d1"; +} + +.fa-window-restore:before { + content: "\f2d2"; +} + +.fa-windows:before { + content: "\f17a"; +} + +.fa-wine-bottle:before { + content: "\f72f"; +} + +.fa-wine-glass:before { + content: "\f4e3"; +} + +.fa-wine-glass-alt:before { + content: "\f5ce"; +} + +.fa-wix:before { + content: "\f5cf"; +} + +.fa-wizards-of-the-coast:before { + content: "\f730"; +} + +.fa-wolf-pack-battalion:before { + content: "\f514"; +} + +.fa-won-sign:before { + content: "\f159"; +} + +.fa-wordpress:before { + content: "\f19a"; +} + +.fa-wordpress-simple:before { + content: "\f411"; +} + +.fa-wpbeginner:before { + content: "\f297"; +} + +.fa-wpexplorer:before { + content: "\f2de"; +} + +.fa-wpforms:before { + content: "\f298"; +} + +.fa-wpressr:before { + content: "\f3e4"; +} + +.fa-wrench:before { + content: "\f0ad"; +} + +.fa-x-ray:before { + content: "\f497"; +} + +.fa-xbox:before { + content: "\f412"; +} + +.fa-xing:before { + content: "\f168"; +} + +.fa-xing-square:before { + content: "\f169"; +} + +.fa-y-combinator:before { + content: "\f23b"; +} + +.fa-yahoo:before { + content: "\f19e"; +} + +.fa-yandex:before { + content: "\f413"; +} + +.fa-yandex-international:before { + content: "\f414"; +} + +.fa-yarn:before { + content: "\f7e3"; +} + +.fa-yelp:before { + content: "\f1e9"; +} + +.fa-yen-sign:before { + content: "\f157"; +} + +.fa-yin-yang:before { + content: "\f6ad"; +} + +.fa-yoast:before { + content: "\f2b1"; +} + +.fa-youtube:before { + content: "\f167"; +} + +.fa-youtube-square:before { + content: "\f431"; +} + +.fa-zhihu:before { + content: "\f63f"; +} + +.sr-only { + border: 0; + clip: rect(0, 0, 0, 0); + height: 1px; + margin: -1px; + overflow: hidden; + padding: 0; + position: absolute; + width: 1px; +} + +.sr-only-focusable:active, +.sr-only-focusable:focus { + clip: auto; + height: auto; + margin: 0; + overflow: visible; + position: static; + width: auto; +} +@font-face { + font-family: "Font Awesome 5 Brands"; + font-style: normal; + font-weight: normal; + src: url("../webfonts/fa-brands-400.eot"); + src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), + url("../webfonts/fa-brands-400.woff2") format("woff2"), + url("../webfonts/fa-brands-400.woff") format("woff"), + url("../webfonts/fa-brands-400.ttf") format("truetype"), + url("../webfonts/fa-brands-400.svg#fontawesome") format("svg"); +} + +.fab { + font-family: "Font Awesome 5 Brands"; +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-style: normal; + font-weight: 400; + src: url("../webfonts/fa-regular-400.eot"); + src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), + url("../webfonts/fa-regular-400.woff2") format("woff2"), + url("../webfonts/fa-regular-400.woff") format("woff"), + url("../webfonts/fa-regular-400.ttf") format("truetype"), + url("../webfonts/fa-regular-400.svg#fontawesome") format("svg"); +} + +.far { + font-family: "Font Awesome 5 Free"; + font-weight: 400; +} +@font-face { + font-family: "Font Awesome 5 Free"; + font-style: normal; + font-weight: 900; + src: url("../webfonts/fa-solid-900.eot"); + src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), + url("../webfonts/fa-solid-900.woff2") format("woff2"), + url("../webfonts/fa-solid-900.woff") format("woff"), + url("../webfonts/fa-solid-900.ttf") format("truetype"), + url("../webfonts/fa-solid-900.svg#fontawesome") format("svg"); +} + +.fa, +.fas { + font-family: "Font Awesome 5 Free"; + font-weight: 900; +} diff --git a/static/felcloud/website/hardware.css b/static/felcloud/website/hardware.css new file mode 100644 index 0000000..4c456fd --- /dev/null +++ b/static/felcloud/website/hardware.css @@ -0,0 +1,197 @@ +::selection { + background-color: #0056b3; + color: #ffffff; +} + +::-moz-selection { + background-color: #0056b3; + color: #ffffff; +} + +.indexBg.overlay:before { + background-image: url("/static/felcloud/server room.jpg"); + background-size: cover; + background-repeat: no-repeat; +} + +.serversBg.overlay:before { + background-image: url("/static/felcloud/servers.jpg") !important; + background-size: cover !important; + background-repeat: no-repeat !important; +} +.configurations { + display: flex; + flex-direction: column; + gap: 10px; /* Space between configuration items */ + margin: 20px 0; +} + +.config-item { + border: 1px solid #ddd; + border-radius: 8px; + padding: 10px; + transition: background-color 0.3s, box-shadow 0.3s; +} + +.config-item:hover { + background-color: #f9f9f9; /* Subtle background change */ + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Elevation effect */ +} + +.config-link { + font-size: 16px; + font-weight: bold; + text-decoration: none; + cursor: pointer; + transition: color 0.3s; + margin: 0; +} + +.config-link:hover { + color: #0056b3; /* Darker blue on hover */ + text-decoration: underline; +} +#servers.htmx-added { + opacity: 0; +} +#servers { + opacity: 1; + transition: opacity 0.1s ease-out; +} +.nav-menu .main-menu a { + font-family: "Inter", sans-serif !important; + font-size: 20px !important; +} +.configurations { + display: flex; + flex-direction: column; + gap: 10px; /* Space between configuration items */ + margin: 20px 0; +} + +.config-item { + border: 1px solid #ddd; + border-radius: 8px; + padding: 10px; + transition: background-color 0.3s, box-shadow 0.3s; +} + +.config-item:hover { + background-color: #f9f9f9; /* Subtle background change */ + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Elevation effect */ +} + +.config-link { + font-size: 16px; + font-weight: bold; + text-decoration: none; + cursor: pointer; + transition: color 0.3s; + margin: 0; +} + +.config-link:hover { + color: #0056b3; /* Darker blue on hover */ + text-decoration: underline; +} + +#options.htmx-added { + opacity: 0; +} +#options { + opacity: 1; + transition: opacity 0.1s ease-out; +} +.wrappers { + background-color: rgba(0, 0, 0, 0.7); + padding: 30px; + min-height: 240px; +} +/* .wrapper { + background-color: rgba(0, 0, 0, 0.7); + padding: 30px; + min-height: 240px; +} */ +.filter { + background-color: white; + margin-right: 15px; + padding: 10px; +} +h4:before, +h4:after { + content: ""; + flex: 1; + border-bottom: 2px solid #000; + margin: auto; +} + +.htmx-indicator { + opacity: 0; + transition: opacity 500ms ease-in; +} +.htmx-request .htmx-indicator { + opacity: 1; +} +.htmx-request.htmx-indicator { + opacity: 1; +} +.btn-focused { + background-color: #4c4a4a !important; + color: #fff !important; + border: none !important; + display: none; +} +.sc-config-header { + display: flex; + align-items: center; + text-align: center; + margin: 20px 0; + position: relative; +} + +.sc-line { + height: 4px; + background: #ccc; +} + +.sc-line-left { + flex: 0.2; +} + +.sc-line-right { + flex: 1.5; + margin-right: 100px; /* Reserve space for max quantity */ +} + +.sc-category-title { + margin: 0 10px; + background: transparent; + font-size: 13px; + font-weight: 900; + color: #717171; + text-shadow: 1px 1px 1px #fff; + text-transform: uppercase; + white-space: nowrap; +} + +.sc-max-quantity { + position: absolute; + right: 0; + font-size: 12px; + font-weight: bold; + color: #555; + white-space: nowrap; + padding: 0 5px; +} +.fade-me-in.htmx-added { + opacity: 0; +} + +.fade-me-in { + opacity: 1; + transition: opacity 0.2s ease-in; +} + +.logo { + width: 60px; +} diff --git a/static/felcloud/website/js/bootstrap.min.js b/static/felcloud/website/js/bootstrap.min.js new file mode 100644 index 0000000..e50d391 --- /dev/null +++ b/static/felcloud/website/js/bootstrap.min.js @@ -0,0 +1,7 @@ +/*! + * Bootstrap v5.1.0 (https://getbootstrap.com/) + * Copyright 2011-2021 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors) + * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) + */ +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e(require("@popperjs/core")):"function"==typeof define&&define.amd?define(["@popperjs/core"],e):(t="undefined"!=typeof globalThis?globalThis:t||self).bootstrap=e(t.Popper)}(this,(function(t){"use strict";function e(t){if(t&&t.__esModule)return t;var e=Object.create(null);return t&&Object.keys(t).forEach((function(i){if("default"!==i){var s=Object.getOwnPropertyDescriptor(t,i);Object.defineProperty(e,i,s.get?s:{enumerable:!0,get:function(){return t[i]}})}})),e.default=t,Object.freeze(e)}var i=e(t);const s=t=>{let e=t.getAttribute("data-bs-target");if(!e||"#"===e){let i=t.getAttribute("href");if(!i||!i.includes("#")&&!i.startsWith("."))return null;i.includes("#")&&!i.startsWith("#")&&(i="#"+i.split("#")[1]),e=i&&"#"!==i?i.trim():null}return e},n=t=>{const e=s(t);return e&&document.querySelector(e)?e:null},o=t=>{const e=s(t);return e?document.querySelector(e):null},r=t=>{t.dispatchEvent(new Event("transitionend"))},a=t=>!(!t||"object"!=typeof t)&&(void 0!==t.jquery&&(t=t[0]),void 0!==t.nodeType),l=t=>a(t)?t.jquery?t[0]:t:"string"==typeof t&&t.length>0?document.querySelector(t):null,c=(t,e,i)=>{Object.keys(i).forEach(s=>{const n=i[s],o=e[s],r=o&&a(o)?"element":null==(l=o)?""+l:{}.toString.call(l).match(/\s([a-z]+)/i)[1].toLowerCase();var l;if(!new RegExp(n).test(r))throw new TypeError(`${t.toUpperCase()}: Option "${s}" provided type "${r}" but expected type "${n}".`)})},h=t=>!(!a(t)||0===t.getClientRects().length)&&"visible"===getComputedStyle(t).getPropertyValue("visibility"),d=t=>!t||t.nodeType!==Node.ELEMENT_NODE||!!t.classList.contains("disabled")||(void 0!==t.disabled?t.disabled:t.hasAttribute("disabled")&&"false"!==t.getAttribute("disabled")),u=t=>{if(!document.documentElement.attachShadow)return null;if("function"==typeof t.getRootNode){const e=t.getRootNode();return e instanceof ShadowRoot?e:null}return t instanceof ShadowRoot?t:t.parentNode?u(t.parentNode):null},g=()=>{},p=t=>{t.offsetHeight},f=()=>{const{jQuery:t}=window;return t&&!document.body.hasAttribute("data-bs-no-jquery")?t:null},_=[],m=()=>"rtl"===document.documentElement.dir,b=t=>{var e;e=()=>{const e=f();if(e){const i=t.NAME,s=e.fn[i];e.fn[i]=t.jQueryInterface,e.fn[i].Constructor=t,e.fn[i].noConflict=()=>(e.fn[i]=s,t.jQueryInterface)}},"loading"===document.readyState?(_.length||document.addEventListener("DOMContentLoaded",()=>{_.forEach(t=>t())}),_.push(e)):e()},v=t=>{"function"==typeof t&&t()},y=(t,e,i=!0)=>{if(!i)return void v(t);const s=(t=>{if(!t)return 0;let{transitionDuration:e,transitionDelay:i}=window.getComputedStyle(t);const s=Number.parseFloat(e),n=Number.parseFloat(i);return s||n?(e=e.split(",")[0],i=i.split(",")[0],1e3*(Number.parseFloat(e)+Number.parseFloat(i))):0})(e)+5;let n=!1;const o=({target:i})=>{i===e&&(n=!0,e.removeEventListener("transitionend",o),v(t))};e.addEventListener("transitionend",o),setTimeout(()=>{n||r(e)},s)},w=(t,e,i,s)=>{let n=t.indexOf(e);if(-1===n)return t[!i&&s?t.length-1:0];const o=t.length;return n+=i?1:-1,s&&(n=(n+o)%o),t[Math.max(0,Math.min(n,o-1))]},E=/[^.]*(?=\..*)\.|.*/,A=/\..*/,T=/::\d+$/,C={};let k=1;const L={mouseenter:"mouseover",mouseleave:"mouseout"},S=/^(mouseenter|mouseleave)/i,O=new Set(["click","dblclick","mouseup","mousedown","contextmenu","mousewheel","DOMMouseScroll","mouseover","mouseout","mousemove","selectstart","selectend","keydown","keypress","keyup","orientationchange","touchstart","touchmove","touchend","touchcancel","pointerdown","pointermove","pointerup","pointerleave","pointercancel","gesturestart","gesturechange","gestureend","focus","blur","change","reset","select","submit","focusin","focusout","load","unload","beforeunload","resize","move","DOMContentLoaded","readystatechange","error","abort","scroll"]);function N(t,e){return e&&`${e}::${k++}`||t.uidEvent||k++}function D(t){const e=N(t);return t.uidEvent=e,C[e]=C[e]||{},C[e]}function I(t,e,i=null){const s=Object.keys(t);for(let n=0,o=s.length;nfunction(e){if(!e.relatedTarget||e.relatedTarget!==e.delegateTarget&&!e.delegateTarget.contains(e.relatedTarget))return t.call(this,e)};s?s=t(s):i=t(i)}const[o,r,a]=x(e,i,s),l=D(t),c=l[a]||(l[a]={}),h=I(c,r,o?i:null);if(h)return void(h.oneOff=h.oneOff&&n);const d=N(r,e.replace(E,"")),u=o?function(t,e,i){return function s(n){const o=t.querySelectorAll(e);for(let{target:r}=n;r&&r!==this;r=r.parentNode)for(let a=o.length;a--;)if(o[a]===r)return n.delegateTarget=r,s.oneOff&&H.off(t,n.type,e,i),i.apply(r,[n]);return null}}(t,i,s):function(t,e){return function i(s){return s.delegateTarget=t,i.oneOff&&H.off(t,s.type,e),e.apply(t,[s])}}(t,i);u.delegationSelector=o?i:null,u.originalHandler=r,u.oneOff=n,u.uidEvent=d,c[d]=u,t.addEventListener(a,u,o)}function M(t,e,i,s,n){const o=I(e[i],s,n);o&&(t.removeEventListener(i,o,Boolean(n)),delete e[i][o.uidEvent])}function j(t){return t=t.replace(A,""),L[t]||t}const H={on(t,e,i,s){P(t,e,i,s,!1)},one(t,e,i,s){P(t,e,i,s,!0)},off(t,e,i,s){if("string"!=typeof e||!t)return;const[n,o,r]=x(e,i,s),a=r!==e,l=D(t),c=e.startsWith(".");if(void 0!==o){if(!l||!l[r])return;return void M(t,l,r,o,n?i:null)}c&&Object.keys(l).forEach(i=>{!function(t,e,i,s){const n=e[i]||{};Object.keys(n).forEach(o=>{if(o.includes(s)){const s=n[o];M(t,e,i,s.originalHandler,s.delegationSelector)}})}(t,l,i,e.slice(1))});const h=l[r]||{};Object.keys(h).forEach(i=>{const s=i.replace(T,"");if(!a||e.includes(s)){const e=h[i];M(t,l,r,e.originalHandler,e.delegationSelector)}})},trigger(t,e,i){if("string"!=typeof e||!t)return null;const s=f(),n=j(e),o=e!==n,r=O.has(n);let a,l=!0,c=!0,h=!1,d=null;return o&&s&&(a=s.Event(e,i),s(t).trigger(a),l=!a.isPropagationStopped(),c=!a.isImmediatePropagationStopped(),h=a.isDefaultPrevented()),r?(d=document.createEvent("HTMLEvents"),d.initEvent(n,l,!0)):d=new CustomEvent(e,{bubbles:l,cancelable:!0}),void 0!==i&&Object.keys(i).forEach(t=>{Object.defineProperty(d,t,{get:()=>i[t]})}),h&&d.preventDefault(),c&&t.dispatchEvent(d),d.defaultPrevented&&void 0!==a&&a.preventDefault(),d}},B=new Map;var z={set(t,e,i){B.has(t)||B.set(t,new Map);const s=B.get(t);s.has(e)||0===s.size?s.set(e,i):console.error(`Bootstrap doesn't allow more than one instance per element. Bound instance: ${Array.from(s.keys())[0]}.`)},get:(t,e)=>B.has(t)&&B.get(t).get(e)||null,remove(t,e){if(!B.has(t))return;const i=B.get(t);i.delete(e),0===i.size&&B.delete(t)}};class R{constructor(t){(t=l(t))&&(this._element=t,z.set(this._element,this.constructor.DATA_KEY,this))}dispose(){z.remove(this._element,this.constructor.DATA_KEY),H.off(this._element,this.constructor.EVENT_KEY),Object.getOwnPropertyNames(this).forEach(t=>{this[t]=null})}_queueCallback(t,e,i=!0){y(t,e,i)}static getInstance(t){return z.get(l(t),this.DATA_KEY)}static getOrCreateInstance(t,e={}){return this.getInstance(t)||new this(t,"object"==typeof e?e:null)}static get VERSION(){return"5.1.0"}static get NAME(){throw new Error('You have to implement the static method "NAME", for each component!')}static get DATA_KEY(){return"bs."+this.NAME}static get EVENT_KEY(){return"."+this.DATA_KEY}}const F=(t,e="hide")=>{const i="click.dismiss"+t.EVENT_KEY,s=t.NAME;H.on(document,i,`[data-bs-dismiss="${s}"]`,(function(i){if(["A","AREA"].includes(this.tagName)&&i.preventDefault(),d(this))return;const n=o(this)||this.closest("."+s);t.getOrCreateInstance(n)[e]()}))};class W extends R{static get NAME(){return"alert"}close(){if(H.trigger(this._element,"close.bs.alert").defaultPrevented)return;this._element.classList.remove("show");const t=this._element.classList.contains("fade");this._queueCallback(()=>this._destroyElement(),this._element,t)}_destroyElement(){this._element.remove(),H.trigger(this._element,"closed.bs.alert"),this.dispose()}static jQueryInterface(t){return this.each((function(){const e=W.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}F(W,"close"),b(W);class $ extends R{static get NAME(){return"button"}toggle(){this._element.setAttribute("aria-pressed",this._element.classList.toggle("active"))}static jQueryInterface(t){return this.each((function(){const e=$.getOrCreateInstance(this);"toggle"===t&&e[t]()}))}}function q(t){return"true"===t||"false"!==t&&(t===Number(t).toString()?Number(t):""===t||"null"===t?null:t)}function U(t){return t.replace(/[A-Z]/g,t=>"-"+t.toLowerCase())}H.on(document,"click.bs.button.data-api",'[data-bs-toggle="button"]',t=>{t.preventDefault();const e=t.target.closest('[data-bs-toggle="button"]');$.getOrCreateInstance(e).toggle()}),b($);const K={setDataAttribute(t,e,i){t.setAttribute("data-bs-"+U(e),i)},removeDataAttribute(t,e){t.removeAttribute("data-bs-"+U(e))},getDataAttributes(t){if(!t)return{};const e={};return Object.keys(t.dataset).filter(t=>t.startsWith("bs")).forEach(i=>{let s=i.replace(/^bs/,"");s=s.charAt(0).toLowerCase()+s.slice(1,s.length),e[s]=q(t.dataset[i])}),e},getDataAttribute:(t,e)=>q(t.getAttribute("data-bs-"+U(e))),offset(t){const e=t.getBoundingClientRect();return{top:e.top+window.pageYOffset,left:e.left+window.pageXOffset}},position:t=>({top:t.offsetTop,left:t.offsetLeft})},V={find:(t,e=document.documentElement)=>[].concat(...Element.prototype.querySelectorAll.call(e,t)),findOne:(t,e=document.documentElement)=>Element.prototype.querySelector.call(e,t),children:(t,e)=>[].concat(...t.children).filter(t=>t.matches(e)),parents(t,e){const i=[];let s=t.parentNode;for(;s&&s.nodeType===Node.ELEMENT_NODE&&3!==s.nodeType;)s.matches(e)&&i.push(s),s=s.parentNode;return i},prev(t,e){let i=t.previousElementSibling;for(;i;){if(i.matches(e))return[i];i=i.previousElementSibling}return[]},next(t,e){let i=t.nextElementSibling;for(;i;){if(i.matches(e))return[i];i=i.nextElementSibling}return[]},focusableChildren(t){const e=["a","button","input","textarea","select","details","[tabindex]",'[contenteditable="true"]'].map(t=>t+':not([tabindex^="-"])').join(", ");return this.find(e,t).filter(t=>!d(t)&&h(t))}},X={interval:5e3,keyboard:!0,slide:!1,pause:"hover",wrap:!0,touch:!0},Y={interval:"(number|boolean)",keyboard:"boolean",slide:"(boolean|string)",pause:"(string|boolean)",wrap:"boolean",touch:"boolean"},Q="next",G="prev",Z="left",J="right",tt={ArrowLeft:J,ArrowRight:Z};class et extends R{constructor(t,e){super(t),this._items=null,this._interval=null,this._activeElement=null,this._isPaused=!1,this._isSliding=!1,this.touchTimeout=null,this.touchStartX=0,this.touchDeltaX=0,this._config=this._getConfig(e),this._indicatorsElement=V.findOne(".carousel-indicators",this._element),this._touchSupported="ontouchstart"in document.documentElement||navigator.maxTouchPoints>0,this._pointerEvent=Boolean(window.PointerEvent),this._addEventListeners()}static get Default(){return X}static get NAME(){return"carousel"}next(){this._slide(Q)}nextWhenVisible(){!document.hidden&&h(this._element)&&this.next()}prev(){this._slide(G)}pause(t){t||(this._isPaused=!0),V.findOne(".carousel-item-next, .carousel-item-prev",this._element)&&(r(this._element),this.cycle(!0)),clearInterval(this._interval),this._interval=null}cycle(t){t||(this._isPaused=!1),this._interval&&(clearInterval(this._interval),this._interval=null),this._config&&this._config.interval&&!this._isPaused&&(this._updateInterval(),this._interval=setInterval((document.visibilityState?this.nextWhenVisible:this.next).bind(this),this._config.interval))}to(t){this._activeElement=V.findOne(".active.carousel-item",this._element);const e=this._getItemIndex(this._activeElement);if(t>this._items.length-1||t<0)return;if(this._isSliding)return void H.one(this._element,"slid.bs.carousel",()=>this.to(t));if(e===t)return this.pause(),void this.cycle();const i=t>e?Q:G;this._slide(i,this._items[t])}_getConfig(t){return t={...X,...K.getDataAttributes(this._element),..."object"==typeof t?t:{}},c("carousel",t,Y),t}_handleSwipe(){const t=Math.abs(this.touchDeltaX);if(t<=40)return;const e=t/this.touchDeltaX;this.touchDeltaX=0,e&&this._slide(e>0?J:Z)}_addEventListeners(){this._config.keyboard&&H.on(this._element,"keydown.bs.carousel",t=>this._keydown(t)),"hover"===this._config.pause&&(H.on(this._element,"mouseenter.bs.carousel",t=>this.pause(t)),H.on(this._element,"mouseleave.bs.carousel",t=>this.cycle(t))),this._config.touch&&this._touchSupported&&this._addTouchEventListeners()}_addTouchEventListeners(){const t=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType?this._pointerEvent||(this.touchStartX=t.touches[0].clientX):this.touchStartX=t.clientX},e=t=>{this.touchDeltaX=t.touches&&t.touches.length>1?0:t.touches[0].clientX-this.touchStartX},i=t=>{!this._pointerEvent||"pen"!==t.pointerType&&"touch"!==t.pointerType||(this.touchDeltaX=t.clientX-this.touchStartX),this._handleSwipe(),"hover"===this._config.pause&&(this.pause(),this.touchTimeout&&clearTimeout(this.touchTimeout),this.touchTimeout=setTimeout(t=>this.cycle(t),500+this._config.interval))};V.find(".carousel-item img",this._element).forEach(t=>{H.on(t,"dragstart.bs.carousel",t=>t.preventDefault())}),this._pointerEvent?(H.on(this._element,"pointerdown.bs.carousel",e=>t(e)),H.on(this._element,"pointerup.bs.carousel",t=>i(t)),this._element.classList.add("pointer-event")):(H.on(this._element,"touchstart.bs.carousel",e=>t(e)),H.on(this._element,"touchmove.bs.carousel",t=>e(t)),H.on(this._element,"touchend.bs.carousel",t=>i(t)))}_keydown(t){if(/input|textarea/i.test(t.target.tagName))return;const e=tt[t.key];e&&(t.preventDefault(),this._slide(e))}_getItemIndex(t){return this._items=t&&t.parentNode?V.find(".carousel-item",t.parentNode):[],this._items.indexOf(t)}_getItemByOrder(t,e){const i=t===Q;return w(this._items,e,i,this._config.wrap)}_triggerSlideEvent(t,e){const i=this._getItemIndex(t),s=this._getItemIndex(V.findOne(".active.carousel-item",this._element));return H.trigger(this._element,"slide.bs.carousel",{relatedTarget:t,direction:e,from:s,to:i})}_setActiveIndicatorElement(t){if(this._indicatorsElement){const e=V.findOne(".active",this._indicatorsElement);e.classList.remove("active"),e.removeAttribute("aria-current");const i=V.find("[data-bs-target]",this._indicatorsElement);for(let e=0;e{H.trigger(this._element,"slid.bs.carousel",{relatedTarget:o,direction:d,from:n,to:r})};if(this._element.classList.contains("slide")){o.classList.add(h),p(o),s.classList.add(c),o.classList.add(c);const t=()=>{o.classList.remove(c,h),o.classList.add("active"),s.classList.remove("active",h,c),this._isSliding=!1,setTimeout(u,0)};this._queueCallback(t,s,!0)}else s.classList.remove("active"),o.classList.add("active"),this._isSliding=!1,u();a&&this.cycle()}_directionToOrder(t){return[J,Z].includes(t)?m()?t===Z?G:Q:t===Z?Q:G:t}_orderToDirection(t){return[Q,G].includes(t)?m()?t===G?Z:J:t===G?J:Z:t}static carouselInterface(t,e){const i=et.getOrCreateInstance(t,e);let{_config:s}=i;"object"==typeof e&&(s={...s,...e});const n="string"==typeof e?e:s.slide;if("number"==typeof e)i.to(e);else if("string"==typeof n){if(void 0===i[n])throw new TypeError(`No method named "${n}"`);i[n]()}else s.interval&&s.ride&&(i.pause(),i.cycle())}static jQueryInterface(t){return this.each((function(){et.carouselInterface(this,t)}))}static dataApiClickHandler(t){const e=o(this);if(!e||!e.classList.contains("carousel"))return;const i={...K.getDataAttributes(e),...K.getDataAttributes(this)},s=this.getAttribute("data-bs-slide-to");s&&(i.interval=!1),et.carouselInterface(e,i),s&&et.getInstance(e).to(s),t.preventDefault()}}H.on(document,"click.bs.carousel.data-api","[data-bs-slide], [data-bs-slide-to]",et.dataApiClickHandler),H.on(window,"load.bs.carousel.data-api",()=>{const t=V.find('[data-bs-ride="carousel"]');for(let e=0,i=t.length;et===this._element);null!==s&&o.length&&(this._selector=s,this._triggerArray.push(e))}this._initializeChildren(),this._config.parent||this._addAriaAndCollapsedClass(this._triggerArray,this._isShown()),this._config.toggle&&this.toggle()}static get Default(){return it}static get NAME(){return"collapse"}toggle(){this._isShown()?this.hide():this.show()}show(){if(this._isTransitioning||this._isShown())return;let t,e=[];if(this._config.parent){const t=V.find(".collapse .collapse",this._config.parent);e=V.find(".show, .collapsing",this._config.parent).filter(e=>!t.includes(e))}const i=V.findOne(this._selector);if(e.length){const s=e.find(t=>i!==t);if(t=s?nt.getInstance(s):null,t&&t._isTransitioning)return}if(H.trigger(this._element,"show.bs.collapse").defaultPrevented)return;e.forEach(e=>{i!==e&&nt.getOrCreateInstance(e,{toggle:!1}).hide(),t||z.set(e,"bs.collapse",null)});const s=this._getDimension();this._element.classList.remove("collapse"),this._element.classList.add("collapsing"),this._element.style[s]=0,this._addAriaAndCollapsedClass(this._triggerArray,!0),this._isTransitioning=!0;const n="scroll"+(s[0].toUpperCase()+s.slice(1));this._queueCallback(()=>{this._isTransitioning=!1,this._element.classList.remove("collapsing"),this._element.classList.add("collapse","show"),this._element.style[s]="",H.trigger(this._element,"shown.bs.collapse")},this._element,!0),this._element.style[s]=this._element[n]+"px"}hide(){if(this._isTransitioning||!this._isShown())return;if(H.trigger(this._element,"hide.bs.collapse").defaultPrevented)return;const t=this._getDimension();this._element.style[t]=this._element.getBoundingClientRect()[t]+"px",p(this._element),this._element.classList.add("collapsing"),this._element.classList.remove("collapse","show");const e=this._triggerArray.length;for(let t=0;t{this._isTransitioning=!1,this._element.classList.remove("collapsing"),this._element.classList.add("collapse"),H.trigger(this._element,"hidden.bs.collapse")},this._element,!0)}_isShown(t=this._element){return t.classList.contains("show")}_getConfig(t){return(t={...it,...K.getDataAttributes(this._element),...t}).toggle=Boolean(t.toggle),t.parent=l(t.parent),c("collapse",t,st),t}_getDimension(){return this._element.classList.contains("collapse-horizontal")?"width":"height"}_initializeChildren(){if(!this._config.parent)return;const t=V.find(".collapse .collapse",this._config.parent);V.find('[data-bs-toggle="collapse"]',this._config.parent).filter(e=>!t.includes(e)).forEach(t=>{const e=o(t);e&&this._addAriaAndCollapsedClass([t],this._isShown(e))})}_addAriaAndCollapsedClass(t,e){t.length&&t.forEach(t=>{e?t.classList.remove("collapsed"):t.classList.add("collapsed"),t.setAttribute("aria-expanded",e)})}static jQueryInterface(t){return this.each((function(){const e={};"string"==typeof t&&/show|hide/.test(t)&&(e.toggle=!1);const i=nt.getOrCreateInstance(this,e);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t]()}}))}}H.on(document,"click.bs.collapse.data-api",'[data-bs-toggle="collapse"]',(function(t){("A"===t.target.tagName||t.delegateTarget&&"A"===t.delegateTarget.tagName)&&t.preventDefault();const e=n(this);V.find(e).forEach(t=>{nt.getOrCreateInstance(t,{toggle:!1}).toggle()})})),b(nt);const ot=new RegExp("ArrowUp|ArrowDown|Escape"),rt=m()?"top-end":"top-start",at=m()?"top-start":"top-end",lt=m()?"bottom-end":"bottom-start",ct=m()?"bottom-start":"bottom-end",ht=m()?"left-start":"right-start",dt=m()?"right-start":"left-start",ut={offset:[0,2],boundary:"clippingParents",reference:"toggle",display:"dynamic",popperConfig:null,autoClose:!0},gt={offset:"(array|string|function)",boundary:"(string|element)",reference:"(string|element|object)",display:"string",popperConfig:"(null|object|function)",autoClose:"(boolean|string)"};class pt extends R{constructor(t,e){super(t),this._popper=null,this._config=this._getConfig(e),this._menu=this._getMenuElement(),this._inNavbar=this._detectNavbar()}static get Default(){return ut}static get DefaultType(){return gt}static get NAME(){return"dropdown"}toggle(){return this._isShown()?this.hide():this.show()}show(){if(d(this._element)||this._isShown(this._menu))return;const t={relatedTarget:this._element};if(H.trigger(this._element,"show.bs.dropdown",t).defaultPrevented)return;const e=pt.getParentFromElement(this._element);this._inNavbar?K.setDataAttribute(this._menu,"popper","none"):this._createPopper(e),"ontouchstart"in document.documentElement&&!e.closest(".navbar-nav")&&[].concat(...document.body.children).forEach(t=>H.on(t,"mouseover",g)),this._element.focus(),this._element.setAttribute("aria-expanded",!0),this._menu.classList.add("show"),this._element.classList.add("show"),H.trigger(this._element,"shown.bs.dropdown",t)}hide(){if(d(this._element)||!this._isShown(this._menu))return;const t={relatedTarget:this._element};this._completeHide(t)}dispose(){this._popper&&this._popper.destroy(),super.dispose()}update(){this._inNavbar=this._detectNavbar(),this._popper&&this._popper.update()}_completeHide(t){H.trigger(this._element,"hide.bs.dropdown",t).defaultPrevented||("ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>H.off(t,"mouseover",g)),this._popper&&this._popper.destroy(),this._menu.classList.remove("show"),this._element.classList.remove("show"),this._element.setAttribute("aria-expanded","false"),K.removeDataAttribute(this._menu,"popper"),H.trigger(this._element,"hidden.bs.dropdown",t))}_getConfig(t){if(t={...this.constructor.Default,...K.getDataAttributes(this._element),...t},c("dropdown",t,this.constructor.DefaultType),"object"==typeof t.reference&&!a(t.reference)&&"function"!=typeof t.reference.getBoundingClientRect)throw new TypeError("dropdown".toUpperCase()+': Option "reference" provided type "object" without a required "getBoundingClientRect" method.');return t}_createPopper(t){if(void 0===i)throw new TypeError("Bootstrap's dropdowns require Popper (https://popper.js.org)");let e=this._element;"parent"===this._config.reference?e=t:a(this._config.reference)?e=l(this._config.reference):"object"==typeof this._config.reference&&(e=this._config.reference);const s=this._getPopperConfig(),n=s.modifiers.find(t=>"applyStyles"===t.name&&!1===t.enabled);this._popper=i.createPopper(e,this._menu,s),n&&K.setDataAttribute(this._menu,"popper","static")}_isShown(t=this._element){return t.classList.contains("show")}_getMenuElement(){return V.next(this._element,".dropdown-menu")[0]}_getPlacement(){const t=this._element.parentNode;if(t.classList.contains("dropend"))return ht;if(t.classList.contains("dropstart"))return dt;const e="end"===getComputedStyle(this._menu).getPropertyValue("--bs-position").trim();return t.classList.contains("dropup")?e?at:rt:e?ct:lt}_detectNavbar(){return null!==this._element.closest(".navbar")}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_getPopperConfig(){const t={placement:this._getPlacement(),modifiers:[{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"offset",options:{offset:this._getOffset()}}]};return"static"===this._config.display&&(t.modifiers=[{name:"applyStyles",enabled:!1}]),{...t,..."function"==typeof this._config.popperConfig?this._config.popperConfig(t):this._config.popperConfig}}_selectMenuItem({key:t,target:e}){const i=V.find(".dropdown-menu .dropdown-item:not(.disabled):not(:disabled)",this._menu).filter(h);i.length&&w(i,e,"ArrowDown"===t,!i.includes(e)).focus()}static jQueryInterface(t){return this.each((function(){const e=pt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}static clearMenus(t){if(t&&(2===t.button||"keyup"===t.type&&"Tab"!==t.key))return;const e=V.find('[data-bs-toggle="dropdown"]');for(let i=0,s=e.length;ie+t),this._setElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight",e=>e+t),this._setElementAttributes(".sticky-top","marginRight",e=>e-t)}_disableOverFlow(){this._saveInitialAttribute(this._element,"overflow"),this._element.style.overflow="hidden"}_setElementAttributes(t,e,i){const s=this.getWidth();this._applyManipulationCallback(t,t=>{if(t!==this._element&&window.innerWidth>t.clientWidth+s)return;this._saveInitialAttribute(t,e);const n=window.getComputedStyle(t)[e];t.style[e]=i(Number.parseFloat(n))+"px"})}reset(){this._resetElementAttributes(this._element,"overflow"),this._resetElementAttributes(this._element,"paddingRight"),this._resetElementAttributes(".fixed-top, .fixed-bottom, .is-fixed, .sticky-top","paddingRight"),this._resetElementAttributes(".sticky-top","marginRight")}_saveInitialAttribute(t,e){const i=t.style[e];i&&K.setDataAttribute(t,e,i)}_resetElementAttributes(t,e){this._applyManipulationCallback(t,t=>{const i=K.getDataAttribute(t,e);void 0===i?t.style.removeProperty(e):(K.removeDataAttribute(t,e),t.style[e]=i)})}_applyManipulationCallback(t,e){a(t)?e(t):V.find(t,this._element).forEach(e)}isOverflowing(){return this.getWidth()>0}}const _t={className:"modal-backdrop",isVisible:!0,isAnimated:!1,rootElement:"body",clickCallback:null},mt={className:"string",isVisible:"boolean",isAnimated:"boolean",rootElement:"(element|string)",clickCallback:"(function|null)"};class bt{constructor(t){this._config=this._getConfig(t),this._isAppended=!1,this._element=null}show(t){this._config.isVisible?(this._append(),this._config.isAnimated&&p(this._getElement()),this._getElement().classList.add("show"),this._emulateAnimation(()=>{v(t)})):v(t)}hide(t){this._config.isVisible?(this._getElement().classList.remove("show"),this._emulateAnimation(()=>{this.dispose(),v(t)})):v(t)}_getElement(){if(!this._element){const t=document.createElement("div");t.className=this._config.className,this._config.isAnimated&&t.classList.add("fade"),this._element=t}return this._element}_getConfig(t){return(t={..._t,..."object"==typeof t?t:{}}).rootElement=l(t.rootElement),c("backdrop",t,mt),t}_append(){this._isAppended||(this._config.rootElement.append(this._getElement()),H.on(this._getElement(),"mousedown.bs.backdrop",()=>{v(this._config.clickCallback)}),this._isAppended=!0)}dispose(){this._isAppended&&(H.off(this._element,"mousedown.bs.backdrop"),this._element.remove(),this._isAppended=!1)}_emulateAnimation(t){y(t,this._getElement(),this._config.isAnimated)}}const vt={trapElement:null,autofocus:!0},yt={trapElement:"element",autofocus:"boolean"};class wt{constructor(t){this._config=this._getConfig(t),this._isActive=!1,this._lastTabNavDirection=null}activate(){const{trapElement:t,autofocus:e}=this._config;this._isActive||(e&&t.focus(),H.off(document,".bs.focustrap"),H.on(document,"focusin.bs.focustrap",t=>this._handleFocusin(t)),H.on(document,"keydown.tab.bs.focustrap",t=>this._handleKeydown(t)),this._isActive=!0)}deactivate(){this._isActive&&(this._isActive=!1,H.off(document,".bs.focustrap"))}_handleFocusin(t){const{target:e}=t,{trapElement:i}=this._config;if(e===document||e===i||i.contains(e))return;const s=V.focusableChildren(i);0===s.length?i.focus():"backward"===this._lastTabNavDirection?s[s.length-1].focus():s[0].focus()}_handleKeydown(t){"Tab"===t.key&&(this._lastTabNavDirection=t.shiftKey?"backward":"forward")}_getConfig(t){return t={...vt,..."object"==typeof t?t:{}},c("focustrap",t,yt),t}}const Et={backdrop:!0,keyboard:!0,focus:!0},At={backdrop:"(boolean|string)",keyboard:"boolean",focus:"boolean"};class Tt extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._dialog=V.findOne(".modal-dialog",this._element),this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._isShown=!1,this._ignoreBackdropClick=!1,this._isTransitioning=!1,this._scrollBar=new ft}static get Default(){return Et}static get NAME(){return"modal"}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||this._isTransitioning||H.trigger(this._element,"show.bs.modal",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._isAnimated()&&(this._isTransitioning=!0),this._scrollBar.hide(),document.body.classList.add("modal-open"),this._adjustDialog(),this._setEscapeEvent(),this._setResizeEvent(),H.on(this._dialog,"mousedown.dismiss.bs.modal",()=>{H.one(this._element,"mouseup.dismiss.bs.modal",t=>{t.target===this._element&&(this._ignoreBackdropClick=!0)})}),this._showBackdrop(()=>this._showElement(t)))}hide(){if(!this._isShown||this._isTransitioning)return;if(H.trigger(this._element,"hide.bs.modal").defaultPrevented)return;this._isShown=!1;const t=this._isAnimated();t&&(this._isTransitioning=!0),this._setEscapeEvent(),this._setResizeEvent(),this._focustrap.deactivate(),this._element.classList.remove("show"),H.off(this._element,"click.dismiss.bs.modal"),H.off(this._dialog,"mousedown.dismiss.bs.modal"),this._queueCallback(()=>this._hideModal(),this._element,t)}dispose(){[window,this._dialog].forEach(t=>H.off(t,".bs.modal")),this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}handleUpdate(){this._adjustDialog()}_initializeBackDrop(){return new bt({isVisible:Boolean(this._config.backdrop),isAnimated:this._isAnimated()})}_initializeFocusTrap(){return new wt({trapElement:this._element})}_getConfig(t){return t={...Et,...K.getDataAttributes(this._element),..."object"==typeof t?t:{}},c("modal",t,At),t}_showElement(t){const e=this._isAnimated(),i=V.findOne(".modal-body",this._dialog);this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE||document.body.append(this._element),this._element.style.display="block",this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.scrollTop=0,i&&(i.scrollTop=0),e&&p(this._element),this._element.classList.add("show"),this._queueCallback(()=>{this._config.focus&&this._focustrap.activate(),this._isTransitioning=!1,H.trigger(this._element,"shown.bs.modal",{relatedTarget:t})},this._dialog,e)}_setEscapeEvent(){this._isShown?H.on(this._element,"keydown.dismiss.bs.modal",t=>{this._config.keyboard&&"Escape"===t.key?(t.preventDefault(),this.hide()):this._config.keyboard||"Escape"!==t.key||this._triggerBackdropTransition()}):H.off(this._element,"keydown.dismiss.bs.modal")}_setResizeEvent(){this._isShown?H.on(window,"resize.bs.modal",()=>this._adjustDialog()):H.off(window,"resize.bs.modal")}_hideModal(){this._element.style.display="none",this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._isTransitioning=!1,this._backdrop.hide(()=>{document.body.classList.remove("modal-open"),this._resetAdjustments(),this._scrollBar.reset(),H.trigger(this._element,"hidden.bs.modal")})}_showBackdrop(t){H.on(this._element,"click.dismiss.bs.modal",t=>{this._ignoreBackdropClick?this._ignoreBackdropClick=!1:t.target===t.currentTarget&&(!0===this._config.backdrop?this.hide():"static"===this._config.backdrop&&this._triggerBackdropTransition())}),this._backdrop.show(t)}_isAnimated(){return this._element.classList.contains("fade")}_triggerBackdropTransition(){if(H.trigger(this._element,"hidePrevented.bs.modal").defaultPrevented)return;const{classList:t,scrollHeight:e,style:i}=this._element,s=e>document.documentElement.clientHeight;!s&&"hidden"===i.overflowY||t.contains("modal-static")||(s||(i.overflowY="hidden"),t.add("modal-static"),this._queueCallback(()=>{t.remove("modal-static"),s||this._queueCallback(()=>{i.overflowY=""},this._dialog)},this._dialog),this._element.focus())}_adjustDialog(){const t=this._element.scrollHeight>document.documentElement.clientHeight,e=this._scrollBar.getWidth(),i=e>0;(!i&&t&&!m()||i&&!t&&m())&&(this._element.style.paddingLeft=e+"px"),(i&&!t&&!m()||!i&&t&&m())&&(this._element.style.paddingRight=e+"px")}_resetAdjustments(){this._element.style.paddingLeft="",this._element.style.paddingRight=""}static jQueryInterface(t,e){return this.each((function(){const i=Tt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===i[t])throw new TypeError(`No method named "${t}"`);i[t](e)}}))}}H.on(document,"click.bs.modal.data-api",'[data-bs-toggle="modal"]',(function(t){const e=o(this);["A","AREA"].includes(this.tagName)&&t.preventDefault(),H.one(e,"show.bs.modal",t=>{t.defaultPrevented||H.one(e,"hidden.bs.modal",()=>{h(this)&&this.focus()})}),Tt.getOrCreateInstance(e).toggle(this)})),F(Tt),b(Tt);const Ct={backdrop:!0,keyboard:!0,scroll:!1},kt={backdrop:"boolean",keyboard:"boolean",scroll:"boolean"};class Lt extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._isShown=!1,this._backdrop=this._initializeBackDrop(),this._focustrap=this._initializeFocusTrap(),this._addEventListeners()}static get NAME(){return"offcanvas"}static get Default(){return Ct}toggle(t){return this._isShown?this.hide():this.show(t)}show(t){this._isShown||H.trigger(this._element,"show.bs.offcanvas",{relatedTarget:t}).defaultPrevented||(this._isShown=!0,this._element.style.visibility="visible",this._backdrop.show(),this._config.scroll||(new ft).hide(),this._element.removeAttribute("aria-hidden"),this._element.setAttribute("aria-modal",!0),this._element.setAttribute("role","dialog"),this._element.classList.add("show"),this._queueCallback(()=>{this._config.scroll||this._focustrap.activate(),H.trigger(this._element,"shown.bs.offcanvas",{relatedTarget:t})},this._element,!0))}hide(){this._isShown&&(H.trigger(this._element,"hide.bs.offcanvas").defaultPrevented||(this._focustrap.deactivate(),this._element.blur(),this._isShown=!1,this._element.classList.remove("show"),this._backdrop.hide(),this._queueCallback(()=>{this._element.setAttribute("aria-hidden",!0),this._element.removeAttribute("aria-modal"),this._element.removeAttribute("role"),this._element.style.visibility="hidden",this._config.scroll||(new ft).reset(),H.trigger(this._element,"hidden.bs.offcanvas")},this._element,!0)))}dispose(){this._backdrop.dispose(),this._focustrap.deactivate(),super.dispose()}_getConfig(t){return t={...Ct,...K.getDataAttributes(this._element),..."object"==typeof t?t:{}},c("offcanvas",t,kt),t}_initializeBackDrop(){return new bt({className:"offcanvas-backdrop",isVisible:this._config.backdrop,isAnimated:!0,rootElement:this._element.parentNode,clickCallback:()=>this.hide()})}_initializeFocusTrap(){return new wt({trapElement:this._element})}_addEventListeners(){H.on(this._element,"keydown.dismiss.bs.offcanvas",t=>{this._config.keyboard&&"Escape"===t.key&&this.hide()})}static jQueryInterface(t){return this.each((function(){const e=Lt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t]||t.startsWith("_")||"constructor"===t)throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}H.on(document,"click.bs.offcanvas.data-api",'[data-bs-toggle="offcanvas"]',(function(t){const e=o(this);if(["A","AREA"].includes(this.tagName)&&t.preventDefault(),d(this))return;H.one(e,"hidden.bs.offcanvas",()=>{h(this)&&this.focus()});const i=V.findOne(".offcanvas.show");i&&i!==e&&Lt.getInstance(i).hide(),Lt.getOrCreateInstance(e).toggle(this)})),H.on(window,"load.bs.offcanvas.data-api",()=>V.find(".offcanvas.show").forEach(t=>Lt.getOrCreateInstance(t).show())),F(Lt),b(Lt);const St=new Set(["background","cite","href","itemtype","longdesc","poster","src","xlink:href"]),Ot=/^(?:(?:https?|mailto|ftp|tel|file):|[^#&/:?]*(?:[#/?]|$))/i,Nt=/^data:(?:image\/(?:bmp|gif|jpeg|jpg|png|tiff|webp)|video\/(?:mpeg|mp4|ogg|webm)|audio\/(?:mp3|oga|ogg|opus));base64,[\d+/a-z]+=*$/i,Dt=(t,e)=>{const i=t.nodeName.toLowerCase();if(e.includes(i))return!St.has(i)||Boolean(Ot.test(t.nodeValue)||Nt.test(t.nodeValue));const s=e.filter(t=>t instanceof RegExp);for(let t=0,e=s.length;t{Dt(t,a)||i.removeAttribute(t.nodeName)})}return s.body.innerHTML}const xt=new Set(["sanitize","allowList","sanitizeFn"]),Pt={animation:"boolean",template:"string",title:"(string|element|function)",trigger:"string",delay:"(number|object)",html:"boolean",selector:"(string|boolean)",placement:"(string|function)",offset:"(array|string|function)",container:"(string|element|boolean)",fallbackPlacements:"array",boundary:"(string|element)",customClass:"(string|function)",sanitize:"boolean",sanitizeFn:"(null|function)",allowList:"object",popperConfig:"(null|object|function)"},Mt={AUTO:"auto",TOP:"top",RIGHT:m()?"left":"right",BOTTOM:"bottom",LEFT:m()?"right":"left"},jt={animation:!0,template:'',trigger:"hover focus",title:"",delay:0,html:!1,selector:!1,placement:"top",offset:[0,0],container:!1,fallbackPlacements:["top","right","bottom","left"],boundary:"clippingParents",customClass:"",sanitize:!0,sanitizeFn:null,allowList:{"*":["class","dir","id","lang","role",/^aria-[\w-]*$/i],a:["target","href","title","rel"],area:[],b:[],br:[],col:[],code:[],div:[],em:[],hr:[],h1:[],h2:[],h3:[],h4:[],h5:[],h6:[],i:[],img:["src","srcset","alt","title","width","height"],li:[],ol:[],p:[],pre:[],s:[],small:[],span:[],sub:[],sup:[],strong:[],u:[],ul:[]},popperConfig:null},Ht={HIDE:"hide.bs.tooltip",HIDDEN:"hidden.bs.tooltip",SHOW:"show.bs.tooltip",SHOWN:"shown.bs.tooltip",INSERTED:"inserted.bs.tooltip",CLICK:"click.bs.tooltip",FOCUSIN:"focusin.bs.tooltip",FOCUSOUT:"focusout.bs.tooltip",MOUSEENTER:"mouseenter.bs.tooltip",MOUSELEAVE:"mouseleave.bs.tooltip"};class Bt extends R{constructor(t,e){if(void 0===i)throw new TypeError("Bootstrap's tooltips require Popper (https://popper.js.org)");super(t),this._isEnabled=!0,this._timeout=0,this._hoverState="",this._activeTrigger={},this._popper=null,this._config=this._getConfig(e),this.tip=null,this._setListeners()}static get Default(){return jt}static get NAME(){return"tooltip"}static get Event(){return Ht}static get DefaultType(){return Pt}enable(){this._isEnabled=!0}disable(){this._isEnabled=!1}toggleEnabled(){this._isEnabled=!this._isEnabled}toggle(t){if(this._isEnabled)if(t){const e=this._initializeOnDelegatedTarget(t);e._activeTrigger.click=!e._activeTrigger.click,e._isWithActiveTrigger()?e._enter(null,e):e._leave(null,e)}else{if(this.getTipElement().classList.contains("show"))return void this._leave(null,this);this._enter(null,this)}}dispose(){clearTimeout(this._timeout),H.off(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this.tip&&this.tip.remove(),this._popper&&this._popper.destroy(),super.dispose()}show(){if("none"===this._element.style.display)throw new Error("Please use show on visible elements");if(!this.isWithContent()||!this._isEnabled)return;const t=H.trigger(this._element,this.constructor.Event.SHOW),e=u(this._element),s=null===e?this._element.ownerDocument.documentElement.contains(this._element):e.contains(this._element);if(t.defaultPrevented||!s)return;const n=this.getTipElement(),o=(t=>{do{t+=Math.floor(1e6*Math.random())}while(document.getElementById(t));return t})(this.constructor.NAME);n.setAttribute("id",o),this._element.setAttribute("aria-describedby",o),this._config.animation&&n.classList.add("fade");const r="function"==typeof this._config.placement?this._config.placement.call(this,n,this._element):this._config.placement,a=this._getAttachment(r);this._addAttachmentClass(a);const{container:l}=this._config;z.set(n,this.constructor.DATA_KEY,this),this._element.ownerDocument.documentElement.contains(this.tip)||(l.append(n),H.trigger(this._element,this.constructor.Event.INSERTED)),this._popper?this._popper.update():this._popper=i.createPopper(this._element,n,this._getPopperConfig(a)),n.classList.add("show");const c=this._resolvePossibleFunction(this._config.customClass);c&&n.classList.add(...c.split(" ")),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>{H.on(t,"mouseover",g)});const h=this.tip.classList.contains("fade");this._queueCallback(()=>{const t=this._hoverState;this._hoverState=null,H.trigger(this._element,this.constructor.Event.SHOWN),"out"===t&&this._leave(null,this)},this.tip,h)}hide(){if(!this._popper)return;const t=this.getTipElement();if(H.trigger(this._element,this.constructor.Event.HIDE).defaultPrevented)return;t.classList.remove("show"),"ontouchstart"in document.documentElement&&[].concat(...document.body.children).forEach(t=>H.off(t,"mouseover",g)),this._activeTrigger.click=!1,this._activeTrigger.focus=!1,this._activeTrigger.hover=!1;const e=this.tip.classList.contains("fade");this._queueCallback(()=>{this._isWithActiveTrigger()||("show"!==this._hoverState&&t.remove(),this._cleanTipClass(),this._element.removeAttribute("aria-describedby"),H.trigger(this._element,this.constructor.Event.HIDDEN),this._popper&&(this._popper.destroy(),this._popper=null))},this.tip,e),this._hoverState=""}update(){null!==this._popper&&this._popper.update()}isWithContent(){return Boolean(this.getTitle())}getTipElement(){if(this.tip)return this.tip;const t=document.createElement("div");t.innerHTML=this._config.template;const e=t.children[0];return this.setContent(e),e.classList.remove("fade","show"),this.tip=e,this.tip}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".tooltip-inner")}_sanitizeAndSetContent(t,e,i){const s=V.findOne(i,t);e||!s?this.setElementContent(s,e):s.remove()}setElementContent(t,e){if(null!==t)return a(e)?(e=l(e),void(this._config.html?e.parentNode!==t&&(t.innerHTML="",t.append(e)):t.textContent=e.textContent)):void(this._config.html?(this._config.sanitize&&(e=It(e,this._config.allowList,this._config.sanitizeFn)),t.innerHTML=e):t.textContent=e)}getTitle(){const t=this._element.getAttribute("data-bs-original-title")||this._config.title;return this._resolvePossibleFunction(t)}updateAttachment(t){return"right"===t?"end":"left"===t?"start":t}_initializeOnDelegatedTarget(t,e){return e||this.constructor.getOrCreateInstance(t.delegateTarget,this._getDelegateConfig())}_getOffset(){const{offset:t}=this._config;return"string"==typeof t?t.split(",").map(t=>Number.parseInt(t,10)):"function"==typeof t?e=>t(e,this._element):t}_resolvePossibleFunction(t){return"function"==typeof t?t.call(this._element):t}_getPopperConfig(t){const e={placement:t,modifiers:[{name:"flip",options:{fallbackPlacements:this._config.fallbackPlacements}},{name:"offset",options:{offset:this._getOffset()}},{name:"preventOverflow",options:{boundary:this._config.boundary}},{name:"arrow",options:{element:`.${this.constructor.NAME}-arrow`}},{name:"onChange",enabled:!0,phase:"afterWrite",fn:t=>this._handlePopperPlacementChange(t)}],onFirstUpdate:t=>{t.options.placement!==t.placement&&this._handlePopperPlacementChange(t)}};return{...e,..."function"==typeof this._config.popperConfig?this._config.popperConfig(e):this._config.popperConfig}}_addAttachmentClass(t){this.getTipElement().classList.add(`${this._getBasicClassPrefix()}-${this.updateAttachment(t)}`)}_getAttachment(t){return Mt[t.toUpperCase()]}_setListeners(){this._config.trigger.split(" ").forEach(t=>{if("click"===t)H.on(this._element,this.constructor.Event.CLICK,this._config.selector,t=>this.toggle(t));else if("manual"!==t){const e="hover"===t?this.constructor.Event.MOUSEENTER:this.constructor.Event.FOCUSIN,i="hover"===t?this.constructor.Event.MOUSELEAVE:this.constructor.Event.FOCUSOUT;H.on(this._element,e,this._config.selector,t=>this._enter(t)),H.on(this._element,i,this._config.selector,t=>this._leave(t))}}),this._hideModalHandler=()=>{this._element&&this.hide()},H.on(this._element.closest(".modal"),"hide.bs.modal",this._hideModalHandler),this._config.selector?this._config={...this._config,trigger:"manual",selector:""}:this._fixTitle()}_fixTitle(){const t=this._element.getAttribute("title"),e=typeof this._element.getAttribute("data-bs-original-title");(t||"string"!==e)&&(this._element.setAttribute("data-bs-original-title",t||""),!t||this._element.getAttribute("aria-label")||this._element.textContent||this._element.setAttribute("aria-label",t),this._element.setAttribute("title",""))}_enter(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusin"===t.type?"focus":"hover"]=!0),e.getTipElement().classList.contains("show")||"show"===e._hoverState?e._hoverState="show":(clearTimeout(e._timeout),e._hoverState="show",e._config.delay&&e._config.delay.show?e._timeout=setTimeout(()=>{"show"===e._hoverState&&e.show()},e._config.delay.show):e.show())}_leave(t,e){e=this._initializeOnDelegatedTarget(t,e),t&&(e._activeTrigger["focusout"===t.type?"focus":"hover"]=e._element.contains(t.relatedTarget)),e._isWithActiveTrigger()||(clearTimeout(e._timeout),e._hoverState="out",e._config.delay&&e._config.delay.hide?e._timeout=setTimeout(()=>{"out"===e._hoverState&&e.hide()},e._config.delay.hide):e.hide())}_isWithActiveTrigger(){for(const t in this._activeTrigger)if(this._activeTrigger[t])return!0;return!1}_getConfig(t){const e=K.getDataAttributes(this._element);return Object.keys(e).forEach(t=>{xt.has(t)&&delete e[t]}),(t={...this.constructor.Default,...e,..."object"==typeof t&&t?t:{}}).container=!1===t.container?document.body:l(t.container),"number"==typeof t.delay&&(t.delay={show:t.delay,hide:t.delay}),"number"==typeof t.title&&(t.title=t.title.toString()),"number"==typeof t.content&&(t.content=t.content.toString()),c("tooltip",t,this.constructor.DefaultType),t.sanitize&&(t.template=It(t.template,t.allowList,t.sanitizeFn)),t}_getDelegateConfig(){const t={};for(const e in this._config)this.constructor.Default[e]!==this._config[e]&&(t[e]=this._config[e]);return t}_cleanTipClass(){const t=this.getTipElement(),e=new RegExp(`(^|\\s)${this._getBasicClassPrefix()}\\S+`,"g"),i=t.getAttribute("class").match(e);null!==i&&i.length>0&&i.map(t=>t.trim()).forEach(e=>t.classList.remove(e))}_getBasicClassPrefix(){return"bs-tooltip"}_handlePopperPlacementChange(t){const{state:e}=t;e&&(this.tip=e.elements.popper,this._cleanTipClass(),this._addAttachmentClass(this._getAttachment(e.placement)))}static jQueryInterface(t){return this.each((function(){const e=Bt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}b(Bt);const zt={...Bt.Default,placement:"right",offset:[0,8],trigger:"click",content:"",template:''},Rt={...Bt.DefaultType,content:"(string|element|function)"},Ft={HIDE:"hide.bs.popover",HIDDEN:"hidden.bs.popover",SHOW:"show.bs.popover",SHOWN:"shown.bs.popover",INSERTED:"inserted.bs.popover",CLICK:"click.bs.popover",FOCUSIN:"focusin.bs.popover",FOCUSOUT:"focusout.bs.popover",MOUSEENTER:"mouseenter.bs.popover",MOUSELEAVE:"mouseleave.bs.popover"};class Wt extends Bt{static get Default(){return zt}static get NAME(){return"popover"}static get Event(){return Ft}static get DefaultType(){return Rt}isWithContent(){return this.getTitle()||this._getContent()}setContent(t){this._sanitizeAndSetContent(t,this.getTitle(),".popover-header"),this._sanitizeAndSetContent(t,this._getContent(),".popover-body")}_getContent(){return this._resolvePossibleFunction(this._config.content)}_getBasicClassPrefix(){return"bs-popover"}static jQueryInterface(t){return this.each((function(){const e=Wt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}b(Wt);const $t={offset:10,method:"auto",target:""},qt={offset:"number",method:"string",target:"(string|element)"},Ut=".nav-link, .list-group-item, .dropdown-item";class Kt extends R{constructor(t,e){super(t),this._scrollElement="BODY"===this._element.tagName?window:this._element,this._config=this._getConfig(e),this._offsets=[],this._targets=[],this._activeTarget=null,this._scrollHeight=0,H.on(this._scrollElement,"scroll.bs.scrollspy",()=>this._process()),this.refresh(),this._process()}static get Default(){return $t}static get NAME(){return"scrollspy"}refresh(){const t=this._scrollElement===this._scrollElement.window?"offset":"position",e="auto"===this._config.method?t:this._config.method,i="position"===e?this._getScrollTop():0;this._offsets=[],this._targets=[],this._scrollHeight=this._getScrollHeight(),V.find(Ut,this._config.target).map(t=>{const s=n(t),o=s?V.findOne(s):null;if(o){const t=o.getBoundingClientRect();if(t.width||t.height)return[K[e](o).top+i,s]}return null}).filter(t=>t).sort((t,e)=>t[0]-e[0]).forEach(t=>{this._offsets.push(t[0]),this._targets.push(t[1])})}dispose(){H.off(this._scrollElement,".bs.scrollspy"),super.dispose()}_getConfig(t){return(t={...$t,...K.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}}).target=l(t.target)||document.documentElement,c("scrollspy",t,qt),t}_getScrollTop(){return this._scrollElement===window?this._scrollElement.pageYOffset:this._scrollElement.scrollTop}_getScrollHeight(){return this._scrollElement.scrollHeight||Math.max(document.body.scrollHeight,document.documentElement.scrollHeight)}_getOffsetHeight(){return this._scrollElement===window?window.innerHeight:this._scrollElement.getBoundingClientRect().height}_process(){const t=this._getScrollTop()+this._config.offset,e=this._getScrollHeight(),i=this._config.offset+e-this._getOffsetHeight();if(this._scrollHeight!==e&&this.refresh(),t>=i){const t=this._targets[this._targets.length-1];this._activeTarget!==t&&this._activate(t)}else{if(this._activeTarget&&t0)return this._activeTarget=null,void this._clear();for(let e=this._offsets.length;e--;)this._activeTarget!==this._targets[e]&&t>=this._offsets[e]&&(void 0===this._offsets[e+1]||t`${e}[data-bs-target="${t}"],${e}[href="${t}"]`),i=V.findOne(e.join(","),this._config.target);i.classList.add("active"),i.classList.contains("dropdown-item")?V.findOne(".dropdown-toggle",i.closest(".dropdown")).classList.add("active"):V.parents(i,".nav, .list-group").forEach(t=>{V.prev(t,".nav-link, .list-group-item").forEach(t=>t.classList.add("active")),V.prev(t,".nav-item").forEach(t=>{V.children(t,".nav-link").forEach(t=>t.classList.add("active"))})}),H.trigger(this._scrollElement,"activate.bs.scrollspy",{relatedTarget:t})}_clear(){V.find(Ut,this._config.target).filter(t=>t.classList.contains("active")).forEach(t=>t.classList.remove("active"))}static jQueryInterface(t){return this.each((function(){const e=Kt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}H.on(window,"load.bs.scrollspy.data-api",()=>{V.find('[data-bs-spy="scroll"]').forEach(t=>new Kt(t))}),b(Kt);class Vt extends R{static get NAME(){return"tab"}show(){if(this._element.parentNode&&this._element.parentNode.nodeType===Node.ELEMENT_NODE&&this._element.classList.contains("active"))return;let t;const e=o(this._element),i=this._element.closest(".nav, .list-group");if(i){const e="UL"===i.nodeName||"OL"===i.nodeName?":scope > li > .active":".active";t=V.find(e,i),t=t[t.length-1]}const s=t?H.trigger(t,"hide.bs.tab",{relatedTarget:this._element}):null;if(H.trigger(this._element,"show.bs.tab",{relatedTarget:t}).defaultPrevented||null!==s&&s.defaultPrevented)return;this._activate(this._element,i);const n=()=>{H.trigger(t,"hidden.bs.tab",{relatedTarget:this._element}),H.trigger(this._element,"shown.bs.tab",{relatedTarget:t})};e?this._activate(e,e.parentNode,n):n()}_activate(t,e,i){const s=(!e||"UL"!==e.nodeName&&"OL"!==e.nodeName?V.children(e,".active"):V.find(":scope > li > .active",e))[0],n=i&&s&&s.classList.contains("fade"),o=()=>this._transitionComplete(t,s,i);s&&n?(s.classList.remove("show"),this._queueCallback(o,t,!0)):o()}_transitionComplete(t,e,i){if(e){e.classList.remove("active");const t=V.findOne(":scope > .dropdown-menu .active",e.parentNode);t&&t.classList.remove("active"),"tab"===e.getAttribute("role")&&e.setAttribute("aria-selected",!1)}t.classList.add("active"),"tab"===t.getAttribute("role")&&t.setAttribute("aria-selected",!0),p(t),t.classList.contains("fade")&&t.classList.add("show");let s=t.parentNode;if(s&&"LI"===s.nodeName&&(s=s.parentNode),s&&s.classList.contains("dropdown-menu")){const e=t.closest(".dropdown");e&&V.find(".dropdown-toggle",e).forEach(t=>t.classList.add("active")),t.setAttribute("aria-expanded",!0)}i&&i()}static jQueryInterface(t){return this.each((function(){const e=Vt.getOrCreateInstance(this);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t]()}}))}}H.on(document,"click.bs.tab.data-api",'[data-bs-toggle="tab"], [data-bs-toggle="pill"], [data-bs-toggle="list"]',(function(t){["A","AREA"].includes(this.tagName)&&t.preventDefault(),d(this)||Vt.getOrCreateInstance(this).show()})),b(Vt);const Xt={animation:"boolean",autohide:"boolean",delay:"number"},Yt={animation:!0,autohide:!0,delay:5e3};class Qt extends R{constructor(t,e){super(t),this._config=this._getConfig(e),this._timeout=null,this._hasMouseInteraction=!1,this._hasKeyboardInteraction=!1,this._setListeners()}static get DefaultType(){return Xt}static get Default(){return Yt}static get NAME(){return"toast"}show(){H.trigger(this._element,"show.bs.toast").defaultPrevented||(this._clearTimeout(),this._config.animation&&this._element.classList.add("fade"),this._element.classList.remove("hide"),p(this._element),this._element.classList.add("show"),this._element.classList.add("showing"),this._queueCallback(()=>{this._element.classList.remove("showing"),H.trigger(this._element,"shown.bs.toast"),this._maybeScheduleHide()},this._element,this._config.animation))}hide(){this._element.classList.contains("show")&&(H.trigger(this._element,"hide.bs.toast").defaultPrevented||(this._element.classList.add("showing"),this._queueCallback(()=>{this._element.classList.add("hide"),this._element.classList.remove("showing"),this._element.classList.remove("show"),H.trigger(this._element,"hidden.bs.toast")},this._element,this._config.animation)))}dispose(){this._clearTimeout(),this._element.classList.contains("show")&&this._element.classList.remove("show"),super.dispose()}_getConfig(t){return t={...Yt,...K.getDataAttributes(this._element),..."object"==typeof t&&t?t:{}},c("toast",t,this.constructor.DefaultType),t}_maybeScheduleHide(){this._config.autohide&&(this._hasMouseInteraction||this._hasKeyboardInteraction||(this._timeout=setTimeout(()=>{this.hide()},this._config.delay)))}_onInteraction(t,e){switch(t.type){case"mouseover":case"mouseout":this._hasMouseInteraction=e;break;case"focusin":case"focusout":this._hasKeyboardInteraction=e}if(e)return void this._clearTimeout();const i=t.relatedTarget;this._element===i||this._element.contains(i)||this._maybeScheduleHide()}_setListeners(){H.on(this._element,"mouseover.bs.toast",t=>this._onInteraction(t,!0)),H.on(this._element,"mouseout.bs.toast",t=>this._onInteraction(t,!1)),H.on(this._element,"focusin.bs.toast",t=>this._onInteraction(t,!0)),H.on(this._element,"focusout.bs.toast",t=>this._onInteraction(t,!1))}_clearTimeout(){clearTimeout(this._timeout),this._timeout=null}static jQueryInterface(t){return this.each((function(){const e=Qt.getOrCreateInstance(this,t);if("string"==typeof t){if(void 0===e[t])throw new TypeError(`No method named "${t}"`);e[t](this)}}))}}return F(Qt),b(Qt),{Alert:W,Button:$,Carousel:et,Collapse:nt,Dropdown:pt,Modal:Tt,Offcanvas:Lt,Popover:Wt,ScrollSpy:Kt,Tab:Vt,Toast:Qt,Tooltip:Bt}})); +//# sourceMappingURL=bootstrap.min.js.map \ No newline at end of file diff --git a/static/felcloud/website/js/isotope.min.js b/static/felcloud/website/js/isotope.min.js new file mode 100644 index 0000000..fef409f --- /dev/null +++ b/static/felcloud/website/js/isotope.min.js @@ -0,0 +1,1817 @@ +/*! + * Isotope PACKAGED v3.0.6 + * + * Licensed GPLv3 for open source use + * or Isotope Commercial License for commercial use + * + * https://isotope.metafizzy.co + * Copyright 2010-2018 Metafizzy + */ + +!(function (t, e) { + "function" == typeof define && define.amd + ? define("jquery-bridget/jquery-bridget", ["jquery"], function (i) { + return e(t, i); + }) + : "object" == typeof module && module.exports + ? (module.exports = e(t, require("jquery"))) + : (t.jQueryBridget = e(t, t.jQuery)); +})(window, function (t, e) { + "use strict"; + function i(i, s, a) { + function u(t, e, o) { + var n, + s = "$()." + i + '("' + e + '")'; + return ( + t.each(function (t, u) { + var h = a.data(u, i); + if (!h) + return void r( + i + " not initialized. Cannot call methods, i.e. " + s + ); + var d = h[e]; + if (!d || "_" == e.charAt(0)) + return void r(s + " is not a valid method"); + var l = d.apply(h, o); + n = void 0 === n ? l : n; + }), + void 0 !== n ? n : t + ); + } + function h(t, e) { + t.each(function (t, o) { + var n = a.data(o, i); + n ? (n.option(e), n._init()) : ((n = new s(o, e)), a.data(o, i, n)); + }); + } + (a = a || e || t.jQuery), + a && + (s.prototype.option || + (s.prototype.option = function (t) { + a.isPlainObject(t) && + (this.options = a.extend(!0, this.options, t)); + }), + (a.fn[i] = function (t) { + if ("string" == typeof t) { + var e = n.call(arguments, 1); + return u(this, t, e); + } + return h(this, t), this; + }), + o(a)); + } + function o(t) { + !t || (t && t.bridget) || (t.bridget = i); + } + var n = Array.prototype.slice, + s = t.console, + r = + "undefined" == typeof s + ? function () {} + : function (t) { + s.error(t); + }; + return o(e || t.jQuery), i; +}), + (function (t, e) { + "function" == typeof define && define.amd + ? define("ev-emitter/ev-emitter", e) + : "object" == typeof module && module.exports + ? (module.exports = e()) + : (t.EvEmitter = e()); + })("undefined" != typeof window ? window : this, function () { + function t() {} + var e = t.prototype; + return ( + (e.on = function (t, e) { + if (t && e) { + var i = (this._events = this._events || {}), + o = (i[t] = i[t] || []); + return o.indexOf(e) == -1 && o.push(e), this; + } + }), + (e.once = function (t, e) { + if (t && e) { + this.on(t, e); + var i = (this._onceEvents = this._onceEvents || {}), + o = (i[t] = i[t] || {}); + return (o[e] = !0), this; + } + }), + (e.off = function (t, e) { + var i = this._events && this._events[t]; + if (i && i.length) { + var o = i.indexOf(e); + return o != -1 && i.splice(o, 1), this; + } + }), + (e.emitEvent = function (t, e) { + var i = this._events && this._events[t]; + if (i && i.length) { + (i = i.slice(0)), (e = e || []); + for ( + var o = this._onceEvents && this._onceEvents[t], n = 0; + n < i.length; + n++ + ) { + var s = i[n], + r = o && o[s]; + r && (this.off(t, s), delete o[s]), s.apply(this, e); + } + return this; + } + }), + (e.allOff = function () { + delete this._events, delete this._onceEvents; + }), + t + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define("get-size/get-size", e) + : "object" == typeof module && module.exports + ? (module.exports = e()) + : (t.getSize = e()); + })(window, function () { + "use strict"; + function t(t) { + var e = parseFloat(t), + i = t.indexOf("%") == -1 && !isNaN(e); + return i && e; + } + function e() {} + function i() { + for ( + var t = { + width: 0, + height: 0, + innerWidth: 0, + innerHeight: 0, + outerWidth: 0, + outerHeight: 0, + }, + e = 0; + e < h; + e++ + ) { + var i = u[e]; + t[i] = 0; + } + return t; + } + function o(t) { + var e = getComputedStyle(t); + return ( + e || + a( + "Style returned " + + e + + ". Are you running this code in a hidden iframe on Firefox? See https://bit.ly/getsizebug1" + ), + e + ); + } + function n() { + if (!d) { + d = !0; + var e = document.createElement("div"); + (e.style.width = "200px"), + (e.style.padding = "1px 2px 3px 4px"), + (e.style.borderStyle = "solid"), + (e.style.borderWidth = "1px 2px 3px 4px"), + (e.style.boxSizing = "border-box"); + var i = document.body || document.documentElement; + i.appendChild(e); + var n = o(e); + (r = 200 == Math.round(t(n.width))), + (s.isBoxSizeOuter = r), + i.removeChild(e); + } + } + function s(e) { + if ( + (n(), + "string" == typeof e && (e = document.querySelector(e)), + e && "object" == typeof e && e.nodeType) + ) { + var s = o(e); + if ("none" == s.display) return i(); + var a = {}; + (a.width = e.offsetWidth), (a.height = e.offsetHeight); + for ( + var d = (a.isBorderBox = "border-box" == s.boxSizing), l = 0; + l < h; + l++ + ) { + var f = u[l], + c = s[f], + m = parseFloat(c); + a[f] = isNaN(m) ? 0 : m; + } + var p = a.paddingLeft + a.paddingRight, + y = a.paddingTop + a.paddingBottom, + g = a.marginLeft + a.marginRight, + v = a.marginTop + a.marginBottom, + _ = a.borderLeftWidth + a.borderRightWidth, + z = a.borderTopWidth + a.borderBottomWidth, + I = d && r, + x = t(s.width); + x !== !1 && (a.width = x + (I ? 0 : p + _)); + var S = t(s.height); + return ( + S !== !1 && (a.height = S + (I ? 0 : y + z)), + (a.innerWidth = a.width - (p + _)), + (a.innerHeight = a.height - (y + z)), + (a.outerWidth = a.width + g), + (a.outerHeight = a.height + v), + a + ); + } + } + var r, + a = + "undefined" == typeof console + ? e + : function (t) { + console.error(t); + }, + u = [ + "paddingLeft", + "paddingRight", + "paddingTop", + "paddingBottom", + "marginLeft", + "marginRight", + "marginTop", + "marginBottom", + "borderLeftWidth", + "borderRightWidth", + "borderTopWidth", + "borderBottomWidth", + ], + h = u.length, + d = !1; + return s; + }), + (function (t, e) { + "use strict"; + "function" == typeof define && define.amd + ? define("desandro-matches-selector/matches-selector", e) + : "object" == typeof module && module.exports + ? (module.exports = e()) + : (t.matchesSelector = e()); + })(window, function () { + "use strict"; + var t = (function () { + var t = window.Element.prototype; + if (t.matches) return "matches"; + if (t.matchesSelector) return "matchesSelector"; + for (var e = ["webkit", "moz", "ms", "o"], i = 0; i < e.length; i++) { + var o = e[i], + n = o + "MatchesSelector"; + if (t[n]) return n; + } + })(); + return function (e, i) { + return e[t](i); + }; + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define( + "fizzy-ui-utils/utils", + ["desandro-matches-selector/matches-selector"], + function (i) { + return e(t, i); + } + ) + : "object" == typeof module && module.exports + ? (module.exports = e(t, require("desandro-matches-selector"))) + : (t.fizzyUIUtils = e(t, t.matchesSelector)); + })(window, function (t, e) { + var i = {}; + (i.extend = function (t, e) { + for (var i in e) t[i] = e[i]; + return t; + }), + (i.modulo = function (t, e) { + return ((t % e) + e) % e; + }); + var o = Array.prototype.slice; + (i.makeArray = function (t) { + if (Array.isArray(t)) return t; + if (null === t || void 0 === t) return []; + var e = "object" == typeof t && "number" == typeof t.length; + return e ? o.call(t) : [t]; + }), + (i.removeFrom = function (t, e) { + var i = t.indexOf(e); + i != -1 && t.splice(i, 1); + }), + (i.getParent = function (t, i) { + for (; t.parentNode && t != document.body; ) + if (((t = t.parentNode), e(t, i))) return t; + }), + (i.getQueryElement = function (t) { + return "string" == typeof t ? document.querySelector(t) : t; + }), + (i.handleEvent = function (t) { + var e = "on" + t.type; + this[e] && this[e](t); + }), + (i.filterFindElements = function (t, o) { + t = i.makeArray(t); + var n = []; + return ( + t.forEach(function (t) { + if (t instanceof HTMLElement) { + if (!o) return void n.push(t); + e(t, o) && n.push(t); + for (var i = t.querySelectorAll(o), s = 0; s < i.length; s++) + n.push(i[s]); + } + }), + n + ); + }), + (i.debounceMethod = function (t, e, i) { + i = i || 100; + var o = t.prototype[e], + n = e + "Timeout"; + t.prototype[e] = function () { + var t = this[n]; + clearTimeout(t); + var e = arguments, + s = this; + this[n] = setTimeout(function () { + o.apply(s, e), delete s[n]; + }, i); + }; + }), + (i.docReady = function (t) { + var e = document.readyState; + "complete" == e || "interactive" == e + ? setTimeout(t) + : document.addEventListener("DOMContentLoaded", t); + }), + (i.toDashed = function (t) { + return t + .replace(/(.)([A-Z])/g, function (t, e, i) { + return e + "-" + i; + }) + .toLowerCase(); + }); + var n = t.console; + return ( + (i.htmlInit = function (e, o) { + i.docReady(function () { + var s = i.toDashed(o), + r = "data-" + s, + a = document.querySelectorAll("[" + r + "]"), + u = document.querySelectorAll(".js-" + s), + h = i.makeArray(a).concat(i.makeArray(u)), + d = r + "-options", + l = t.jQuery; + h.forEach(function (t) { + var i, + s = t.getAttribute(r) || t.getAttribute(d); + try { + i = s && JSON.parse(s); + } catch (a) { + return void ( + n && + n.error("Error parsing " + r + " on " + t.className + ": " + a) + ); + } + var u = new e(t, i); + l && l.data(t, o, u); + }); + }); + }), + i + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define( + "outlayer/item", + ["ev-emitter/ev-emitter", "get-size/get-size"], + e + ) + : "object" == typeof module && module.exports + ? (module.exports = e(require("ev-emitter"), require("get-size"))) + : ((t.Outlayer = {}), (t.Outlayer.Item = e(t.EvEmitter, t.getSize))); + })(window, function (t, e) { + "use strict"; + function i(t) { + for (var e in t) return !1; + return (e = null), !0; + } + function o(t, e) { + t && + ((this.element = t), + (this.layout = e), + (this.position = { x: 0, y: 0 }), + this._create()); + } + function n(t) { + return t.replace(/([A-Z])/g, function (t) { + return "-" + t.toLowerCase(); + }); + } + var s = document.documentElement.style, + r = "string" == typeof s.transition ? "transition" : "WebkitTransition", + a = "string" == typeof s.transform ? "transform" : "WebkitTransform", + u = { + WebkitTransition: "webkitTransitionEnd", + transition: "transitionend", + }[r], + h = { + transform: a, + transition: r, + transitionDuration: r + "Duration", + transitionProperty: r + "Property", + transitionDelay: r + "Delay", + }, + d = (o.prototype = Object.create(t.prototype)); + (d.constructor = o), + (d._create = function () { + (this._transn = { ingProperties: {}, clean: {}, onEnd: {} }), + this.css({ position: "absolute" }); + }), + (d.handleEvent = function (t) { + var e = "on" + t.type; + this[e] && this[e](t); + }), + (d.getSize = function () { + this.size = e(this.element); + }), + (d.css = function (t) { + var e = this.element.style; + for (var i in t) { + var o = h[i] || i; + e[o] = t[i]; + } + }), + (d.getPosition = function () { + var t = getComputedStyle(this.element), + e = this.layout._getOption("originLeft"), + i = this.layout._getOption("originTop"), + o = t[e ? "left" : "right"], + n = t[i ? "top" : "bottom"], + s = parseFloat(o), + r = parseFloat(n), + a = this.layout.size; + o.indexOf("%") != -1 && (s = (s / 100) * a.width), + n.indexOf("%") != -1 && (r = (r / 100) * a.height), + (s = isNaN(s) ? 0 : s), + (r = isNaN(r) ? 0 : r), + (s -= e ? a.paddingLeft : a.paddingRight), + (r -= i ? a.paddingTop : a.paddingBottom), + (this.position.x = s), + (this.position.y = r); + }), + (d.layoutPosition = function () { + var t = this.layout.size, + e = {}, + i = this.layout._getOption("originLeft"), + o = this.layout._getOption("originTop"), + n = i ? "paddingLeft" : "paddingRight", + s = i ? "left" : "right", + r = i ? "right" : "left", + a = this.position.x + t[n]; + (e[s] = this.getXValue(a)), (e[r] = ""); + var u = o ? "paddingTop" : "paddingBottom", + h = o ? "top" : "bottom", + d = o ? "bottom" : "top", + l = this.position.y + t[u]; + (e[h] = this.getYValue(l)), + (e[d] = ""), + this.css(e), + this.emitEvent("layout", [this]); + }), + (d.getXValue = function (t) { + var e = this.layout._getOption("horizontal"); + return this.layout.options.percentPosition && !e + ? (t / this.layout.size.width) * 100 + "%" + : t + "px"; + }), + (d.getYValue = function (t) { + var e = this.layout._getOption("horizontal"); + return this.layout.options.percentPosition && e + ? (t / this.layout.size.height) * 100 + "%" + : t + "px"; + }), + (d._transitionTo = function (t, e) { + this.getPosition(); + var i = this.position.x, + o = this.position.y, + n = t == this.position.x && e == this.position.y; + if ((this.setPosition(t, e), n && !this.isTransitioning)) + return void this.layoutPosition(); + var s = t - i, + r = e - o, + a = {}; + (a.transform = this.getTranslate(s, r)), + this.transition({ + to: a, + onTransitionEnd: { transform: this.layoutPosition }, + isCleaning: !0, + }); + }), + (d.getTranslate = function (t, e) { + var i = this.layout._getOption("originLeft"), + o = this.layout._getOption("originTop"); + return ( + (t = i ? t : -t), + (e = o ? e : -e), + "translate3d(" + t + "px, " + e + "px, 0)" + ); + }), + (d.goTo = function (t, e) { + this.setPosition(t, e), this.layoutPosition(); + }), + (d.moveTo = d._transitionTo), + (d.setPosition = function (t, e) { + (this.position.x = parseFloat(t)), (this.position.y = parseFloat(e)); + }), + (d._nonTransition = function (t) { + this.css(t.to), t.isCleaning && this._removeStyles(t.to); + for (var e in t.onTransitionEnd) t.onTransitionEnd[e].call(this); + }), + (d.transition = function (t) { + if (!parseFloat(this.layout.options.transitionDuration)) + return void this._nonTransition(t); + var e = this._transn; + for (var i in t.onTransitionEnd) e.onEnd[i] = t.onTransitionEnd[i]; + for (i in t.to) + (e.ingProperties[i] = !0), t.isCleaning && (e.clean[i] = !0); + if (t.from) { + this.css(t.from); + var o = this.element.offsetHeight; + o = null; + } + this.enableTransition(t.to), + this.css(t.to), + (this.isTransitioning = !0); + }); + var l = "opacity," + n(a); + (d.enableTransition = function () { + if (!this.isTransitioning) { + var t = this.layout.options.transitionDuration; + (t = "number" == typeof t ? t + "ms" : t), + this.css({ + transitionProperty: l, + transitionDuration: t, + transitionDelay: this.staggerDelay || 0, + }), + this.element.addEventListener(u, this, !1); + } + }), + (d.onwebkitTransitionEnd = function (t) { + this.ontransitionend(t); + }), + (d.onotransitionend = function (t) { + this.ontransitionend(t); + }); + var f = { "-webkit-transform": "transform" }; + (d.ontransitionend = function (t) { + if (t.target === this.element) { + var e = this._transn, + o = f[t.propertyName] || t.propertyName; + if ( + (delete e.ingProperties[o], + i(e.ingProperties) && this.disableTransition(), + o in e.clean && + ((this.element.style[t.propertyName] = ""), delete e.clean[o]), + o in e.onEnd) + ) { + var n = e.onEnd[o]; + n.call(this), delete e.onEnd[o]; + } + this.emitEvent("transitionEnd", [this]); + } + }), + (d.disableTransition = function () { + this.removeTransitionStyles(), + this.element.removeEventListener(u, this, !1), + (this.isTransitioning = !1); + }), + (d._removeStyles = function (t) { + var e = {}; + for (var i in t) e[i] = ""; + this.css(e); + }); + var c = { + transitionProperty: "", + transitionDuration: "", + transitionDelay: "", + }; + return ( + (d.removeTransitionStyles = function () { + this.css(c); + }), + (d.stagger = function (t) { + (t = isNaN(t) ? 0 : t), (this.staggerDelay = t + "ms"); + }), + (d.removeElem = function () { + this.element.parentNode.removeChild(this.element), + this.css({ display: "" }), + this.emitEvent("remove", [this]); + }), + (d.remove = function () { + return r && parseFloat(this.layout.options.transitionDuration) + ? (this.once("transitionEnd", function () { + this.removeElem(); + }), + void this.hide()) + : void this.removeElem(); + }), + (d.reveal = function () { + delete this.isHidden, this.css({ display: "" }); + var t = this.layout.options, + e = {}, + i = this.getHideRevealTransitionEndProperty("visibleStyle"); + (e[i] = this.onRevealTransitionEnd), + this.transition({ + from: t.hiddenStyle, + to: t.visibleStyle, + isCleaning: !0, + onTransitionEnd: e, + }); + }), + (d.onRevealTransitionEnd = function () { + this.isHidden || this.emitEvent("reveal"); + }), + (d.getHideRevealTransitionEndProperty = function (t) { + var e = this.layout.options[t]; + if (e.opacity) return "opacity"; + for (var i in e) return i; + }), + (d.hide = function () { + (this.isHidden = !0), this.css({ display: "" }); + var t = this.layout.options, + e = {}, + i = this.getHideRevealTransitionEndProperty("hiddenStyle"); + (e[i] = this.onHideTransitionEnd), + this.transition({ + from: t.visibleStyle, + to: t.hiddenStyle, + isCleaning: !0, + onTransitionEnd: e, + }); + }), + (d.onHideTransitionEnd = function () { + this.isHidden && + (this.css({ display: "none" }), this.emitEvent("hide")); + }), + (d.destroy = function () { + this.css({ + position: "", + left: "", + right: "", + top: "", + bottom: "", + transition: "", + transform: "", + }); + }), + o + ); + }), + (function (t, e) { + "use strict"; + "function" == typeof define && define.amd + ? define( + "outlayer/outlayer", + [ + "ev-emitter/ev-emitter", + "get-size/get-size", + "fizzy-ui-utils/utils", + "./item", + ], + function (i, o, n, s) { + return e(t, i, o, n, s); + } + ) + : "object" == typeof module && module.exports + ? (module.exports = e( + t, + require("ev-emitter"), + require("get-size"), + require("fizzy-ui-utils"), + require("./item") + )) + : (t.Outlayer = e( + t, + t.EvEmitter, + t.getSize, + t.fizzyUIUtils, + t.Outlayer.Item + )); + })(window, function (t, e, i, o, n) { + "use strict"; + function s(t, e) { + var i = o.getQueryElement(t); + if (!i) + return void ( + u && + u.error( + "Bad element for " + this.constructor.namespace + ": " + (i || t) + ) + ); + (this.element = i), + h && (this.$element = h(this.element)), + (this.options = o.extend({}, this.constructor.defaults)), + this.option(e); + var n = ++l; + (this.element.outlayerGUID = n), (f[n] = this), this._create(); + var s = this._getOption("initLayout"); + s && this.layout(); + } + function r(t) { + function e() { + t.apply(this, arguments); + } + return ( + (e.prototype = Object.create(t.prototype)), + (e.prototype.constructor = e), + e + ); + } + function a(t) { + if ("number" == typeof t) return t; + var e = t.match(/(^\d*\.?\d*)(\w*)/), + i = e && e[1], + o = e && e[2]; + if (!i.length) return 0; + i = parseFloat(i); + var n = m[o] || 1; + return i * n; + } + var u = t.console, + h = t.jQuery, + d = function () {}, + l = 0, + f = {}; + (s.namespace = "outlayer"), + (s.Item = n), + (s.defaults = { + containerStyle: { position: "relative" }, + initLayout: !0, + originLeft: !0, + originTop: !0, + resize: !0, + resizeContainer: !0, + transitionDuration: "0.4s", + hiddenStyle: { opacity: 0, transform: "scale(0.001)" }, + visibleStyle: { opacity: 1, transform: "scale(1)" }, + }); + var c = s.prototype; + o.extend(c, e.prototype), + (c.option = function (t) { + o.extend(this.options, t); + }), + (c._getOption = function (t) { + var e = this.constructor.compatOptions[t]; + return e && void 0 !== this.options[e] + ? this.options[e] + : this.options[t]; + }), + (s.compatOptions = { + initLayout: "isInitLayout", + horizontal: "isHorizontal", + layoutInstant: "isLayoutInstant", + originLeft: "isOriginLeft", + originTop: "isOriginTop", + resize: "isResizeBound", + resizeContainer: "isResizingContainer", + }), + (c._create = function () { + this.reloadItems(), + (this.stamps = []), + this.stamp(this.options.stamp), + o.extend(this.element.style, this.options.containerStyle); + var t = this._getOption("resize"); + t && this.bindResize(); + }), + (c.reloadItems = function () { + this.items = this._itemize(this.element.children); + }), + (c._itemize = function (t) { + for ( + var e = this._filterFindItemElements(t), + i = this.constructor.Item, + o = [], + n = 0; + n < e.length; + n++ + ) { + var s = e[n], + r = new i(s, this); + o.push(r); + } + return o; + }), + (c._filterFindItemElements = function (t) { + return o.filterFindElements(t, this.options.itemSelector); + }), + (c.getItemElements = function () { + return this.items.map(function (t) { + return t.element; + }); + }), + (c.layout = function () { + this._resetLayout(), this._manageStamps(); + var t = this._getOption("layoutInstant"), + e = void 0 !== t ? t : !this._isLayoutInited; + this.layoutItems(this.items, e), (this._isLayoutInited = !0); + }), + (c._init = c.layout), + (c._resetLayout = function () { + this.getSize(); + }), + (c.getSize = function () { + this.size = i(this.element); + }), + (c._getMeasurement = function (t, e) { + var o, + n = this.options[t]; + n + ? ("string" == typeof n + ? (o = this.element.querySelector(n)) + : n instanceof HTMLElement && (o = n), + (this[t] = o ? i(o)[e] : n)) + : (this[t] = 0); + }), + (c.layoutItems = function (t, e) { + (t = this._getItemsForLayout(t)), + this._layoutItems(t, e), + this._postLayout(); + }), + (c._getItemsForLayout = function (t) { + return t.filter(function (t) { + return !t.isIgnored; + }); + }), + (c._layoutItems = function (t, e) { + if ((this._emitCompleteOnItems("layout", t), t && t.length)) { + var i = []; + t.forEach(function (t) { + var o = this._getItemLayoutPosition(t); + (o.item = t), (o.isInstant = e || t.isLayoutInstant), i.push(o); + }, this), + this._processLayoutQueue(i); + } + }), + (c._getItemLayoutPosition = function () { + return { x: 0, y: 0 }; + }), + (c._processLayoutQueue = function (t) { + this.updateStagger(), + t.forEach(function (t, e) { + this._positionItem(t.item, t.x, t.y, t.isInstant, e); + }, this); + }), + (c.updateStagger = function () { + var t = this.options.stagger; + return null === t || void 0 === t + ? void (this.stagger = 0) + : ((this.stagger = a(t)), this.stagger); + }), + (c._positionItem = function (t, e, i, o, n) { + o ? t.goTo(e, i) : (t.stagger(n * this.stagger), t.moveTo(e, i)); + }), + (c._postLayout = function () { + this.resizeContainer(); + }), + (c.resizeContainer = function () { + var t = this._getOption("resizeContainer"); + if (t) { + var e = this._getContainerSize(); + e && + (this._setContainerMeasure(e.width, !0), + this._setContainerMeasure(e.height, !1)); + } + }), + (c._getContainerSize = d), + (c._setContainerMeasure = function (t, e) { + if (void 0 !== t) { + var i = this.size; + i.isBorderBox && + (t += e + ? i.paddingLeft + + i.paddingRight + + i.borderLeftWidth + + i.borderRightWidth + : i.paddingBottom + + i.paddingTop + + i.borderTopWidth + + i.borderBottomWidth), + (t = Math.max(t, 0)), + (this.element.style[e ? "width" : "height"] = t + "px"); + } + }), + (c._emitCompleteOnItems = function (t, e) { + function i() { + n.dispatchEvent(t + "Complete", null, [e]); + } + function o() { + r++, r == s && i(); + } + var n = this, + s = e.length; + if (!e || !s) return void i(); + var r = 0; + e.forEach(function (e) { + e.once(t, o); + }); + }), + (c.dispatchEvent = function (t, e, i) { + var o = e ? [e].concat(i) : i; + if ((this.emitEvent(t, o), h)) + if (((this.$element = this.$element || h(this.element)), e)) { + var n = h.Event(e); + (n.type = t), this.$element.trigger(n, i); + } else this.$element.trigger(t, i); + }), + (c.ignore = function (t) { + var e = this.getItem(t); + e && (e.isIgnored = !0); + }), + (c.unignore = function (t) { + var e = this.getItem(t); + e && delete e.isIgnored; + }), + (c.stamp = function (t) { + (t = this._find(t)), + t && + ((this.stamps = this.stamps.concat(t)), + t.forEach(this.ignore, this)); + }), + (c.unstamp = function (t) { + (t = this._find(t)), + t && + t.forEach(function (t) { + o.removeFrom(this.stamps, t), this.unignore(t); + }, this); + }), + (c._find = function (t) { + if (t) + return ( + "string" == typeof t && (t = this.element.querySelectorAll(t)), + (t = o.makeArray(t)) + ); + }), + (c._manageStamps = function () { + this.stamps && + this.stamps.length && + (this._getBoundingRect(), + this.stamps.forEach(this._manageStamp, this)); + }), + (c._getBoundingRect = function () { + var t = this.element.getBoundingClientRect(), + e = this.size; + this._boundingRect = { + left: t.left + e.paddingLeft + e.borderLeftWidth, + top: t.top + e.paddingTop + e.borderTopWidth, + right: t.right - (e.paddingRight + e.borderRightWidth), + bottom: t.bottom - (e.paddingBottom + e.borderBottomWidth), + }; + }), + (c._manageStamp = d), + (c._getElementOffset = function (t) { + var e = t.getBoundingClientRect(), + o = this._boundingRect, + n = i(t), + s = { + left: e.left - o.left - n.marginLeft, + top: e.top - o.top - n.marginTop, + right: o.right - e.right - n.marginRight, + bottom: o.bottom - e.bottom - n.marginBottom, + }; + return s; + }), + (c.handleEvent = o.handleEvent), + (c.bindResize = function () { + t.addEventListener("resize", this), (this.isResizeBound = !0); + }), + (c.unbindResize = function () { + t.removeEventListener("resize", this), (this.isResizeBound = !1); + }), + (c.onresize = function () { + this.resize(); + }), + o.debounceMethod(s, "onresize", 100), + (c.resize = function () { + this.isResizeBound && this.needsResizeLayout() && this.layout(); + }), + (c.needsResizeLayout = function () { + var t = i(this.element), + e = this.size && t; + return e && t.innerWidth !== this.size.innerWidth; + }), + (c.addItems = function (t) { + var e = this._itemize(t); + return e.length && (this.items = this.items.concat(e)), e; + }), + (c.appended = function (t) { + var e = this.addItems(t); + e.length && (this.layoutItems(e, !0), this.reveal(e)); + }), + (c.prepended = function (t) { + var e = this._itemize(t); + if (e.length) { + var i = this.items.slice(0); + (this.items = e.concat(i)), + this._resetLayout(), + this._manageStamps(), + this.layoutItems(e, !0), + this.reveal(e), + this.layoutItems(i); + } + }), + (c.reveal = function (t) { + if ((this._emitCompleteOnItems("reveal", t), t && t.length)) { + var e = this.updateStagger(); + t.forEach(function (t, i) { + t.stagger(i * e), t.reveal(); + }); + } + }), + (c.hide = function (t) { + if ((this._emitCompleteOnItems("hide", t), t && t.length)) { + var e = this.updateStagger(); + t.forEach(function (t, i) { + t.stagger(i * e), t.hide(); + }); + } + }), + (c.revealItemElements = function (t) { + var e = this.getItems(t); + this.reveal(e); + }), + (c.hideItemElements = function (t) { + var e = this.getItems(t); + this.hide(e); + }), + (c.getItem = function (t) { + for (var e = 0; e < this.items.length; e++) { + var i = this.items[e]; + if (i.element == t) return i; + } + }), + (c.getItems = function (t) { + t = o.makeArray(t); + var e = []; + return ( + t.forEach(function (t) { + var i = this.getItem(t); + i && e.push(i); + }, this), + e + ); + }), + (c.remove = function (t) { + var e = this.getItems(t); + this._emitCompleteOnItems("remove", e), + e && + e.length && + e.forEach(function (t) { + t.remove(), o.removeFrom(this.items, t); + }, this); + }), + (c.destroy = function () { + var t = this.element.style; + (t.height = ""), + (t.position = ""), + (t.width = ""), + this.items.forEach(function (t) { + t.destroy(); + }), + this.unbindResize(); + var e = this.element.outlayerGUID; + delete f[e], + delete this.element.outlayerGUID, + h && h.removeData(this.element, this.constructor.namespace); + }), + (s.data = function (t) { + t = o.getQueryElement(t); + var e = t && t.outlayerGUID; + return e && f[e]; + }), + (s.create = function (t, e) { + var i = r(s); + return ( + (i.defaults = o.extend({}, s.defaults)), + o.extend(i.defaults, e), + (i.compatOptions = o.extend({}, s.compatOptions)), + (i.namespace = t), + (i.data = s.data), + (i.Item = r(n)), + o.htmlInit(i, t), + h && h.bridget && h.bridget(t, i), + i + ); + }); + var m = { ms: 1, s: 1e3 }; + return (s.Item = n), s; + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define("isotope-layout/js/item", ["outlayer/outlayer"], e) + : "object" == typeof module && module.exports + ? (module.exports = e(require("outlayer"))) + : ((t.Isotope = t.Isotope || {}), (t.Isotope.Item = e(t.Outlayer))); + })(window, function (t) { + "use strict"; + function e() { + t.Item.apply(this, arguments); + } + var i = (e.prototype = Object.create(t.Item.prototype)), + o = i._create; + (i._create = function () { + (this.id = this.layout.itemGUID++), o.call(this), (this.sortData = {}); + }), + (i.updateSortData = function () { + if (!this.isIgnored) { + (this.sortData.id = this.id), + (this.sortData["original-order"] = this.id), + (this.sortData.random = Math.random()); + var t = this.layout.options.getSortData, + e = this.layout._sorters; + for (var i in t) { + var o = e[i]; + this.sortData[i] = o(this.element, this); + } + } + }); + var n = i.destroy; + return ( + (i.destroy = function () { + n.apply(this, arguments), this.css({ display: "" }); + }), + e + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define( + "isotope-layout/js/layout-mode", + ["get-size/get-size", "outlayer/outlayer"], + e + ) + : "object" == typeof module && module.exports + ? (module.exports = e(require("get-size"), require("outlayer"))) + : ((t.Isotope = t.Isotope || {}), + (t.Isotope.LayoutMode = e(t.getSize, t.Outlayer))); + })(window, function (t, e) { + "use strict"; + function i(t) { + (this.isotope = t), + t && + ((this.options = t.options[this.namespace]), + (this.element = t.element), + (this.items = t.filteredItems), + (this.size = t.size)); + } + var o = i.prototype, + n = [ + "_resetLayout", + "_getItemLayoutPosition", + "_manageStamp", + "_getContainerSize", + "_getElementOffset", + "needsResizeLayout", + "_getOption", + ]; + return ( + n.forEach(function (t) { + o[t] = function () { + return e.prototype[t].apply(this.isotope, arguments); + }; + }), + (o.needsVerticalResizeLayout = function () { + var e = t(this.isotope.element), + i = this.isotope.size && e; + return i && e.innerHeight != this.isotope.size.innerHeight; + }), + (o._getMeasurement = function () { + this.isotope._getMeasurement.apply(this, arguments); + }), + (o.getColumnWidth = function () { + this.getSegmentSize("column", "Width"); + }), + (o.getRowHeight = function () { + this.getSegmentSize("row", "Height"); + }), + (o.getSegmentSize = function (t, e) { + var i = t + e, + o = "outer" + e; + if ((this._getMeasurement(i, o), !this[i])) { + var n = this.getFirstItemSize(); + this[i] = (n && n[o]) || this.isotope.size["inner" + e]; + } + }), + (o.getFirstItemSize = function () { + var e = this.isotope.filteredItems[0]; + return e && e.element && t(e.element); + }), + (o.layout = function () { + this.isotope.layout.apply(this.isotope, arguments); + }), + (o.getSize = function () { + this.isotope.getSize(), (this.size = this.isotope.size); + }), + (i.modes = {}), + (i.create = function (t, e) { + function n() { + i.apply(this, arguments); + } + return ( + (n.prototype = Object.create(o)), + (n.prototype.constructor = n), + e && (n.options = e), + (n.prototype.namespace = t), + (i.modes[t] = n), + n + ); + }), + i + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define( + "masonry-layout/masonry", + ["outlayer/outlayer", "get-size/get-size"], + e + ) + : "object" == typeof module && module.exports + ? (module.exports = e(require("outlayer"), require("get-size"))) + : (t.Masonry = e(t.Outlayer, t.getSize)); + })(window, function (t, e) { + var i = t.create("masonry"); + i.compatOptions.fitWidth = "isFitWidth"; + var o = i.prototype; + return ( + (o._resetLayout = function () { + this.getSize(), + this._getMeasurement("columnWidth", "outerWidth"), + this._getMeasurement("gutter", "outerWidth"), + this.measureColumns(), + (this.colYs = []); + for (var t = 0; t < this.cols; t++) this.colYs.push(0); + (this.maxY = 0), (this.horizontalColIndex = 0); + }), + (o.measureColumns = function () { + if ((this.getContainerWidth(), !this.columnWidth)) { + var t = this.items[0], + i = t && t.element; + this.columnWidth = (i && e(i).outerWidth) || this.containerWidth; + } + var o = (this.columnWidth += this.gutter), + n = this.containerWidth + this.gutter, + s = n / o, + r = o - (n % o), + a = r && r < 1 ? "round" : "floor"; + (s = Math[a](s)), (this.cols = Math.max(s, 1)); + }), + (o.getContainerWidth = function () { + var t = this._getOption("fitWidth"), + i = t ? this.element.parentNode : this.element, + o = e(i); + this.containerWidth = o && o.innerWidth; + }), + (o._getItemLayoutPosition = function (t) { + t.getSize(); + var e = t.size.outerWidth % this.columnWidth, + i = e && e < 1 ? "round" : "ceil", + o = Math[i](t.size.outerWidth / this.columnWidth); + o = Math.min(o, this.cols); + for ( + var n = this.options.horizontalOrder + ? "_getHorizontalColPosition" + : "_getTopColPosition", + s = this[n](o, t), + r = { x: this.columnWidth * s.col, y: s.y }, + a = s.y + t.size.outerHeight, + u = o + s.col, + h = s.col; + h < u; + h++ + ) + this.colYs[h] = a; + return r; + }), + (o._getTopColPosition = function (t) { + var e = this._getTopColGroup(t), + i = Math.min.apply(Math, e); + return { col: e.indexOf(i), y: i }; + }), + (o._getTopColGroup = function (t) { + if (t < 2) return this.colYs; + for (var e = [], i = this.cols + 1 - t, o = 0; o < i; o++) + e[o] = this._getColGroupY(o, t); + return e; + }), + (o._getColGroupY = function (t, e) { + if (e < 2) return this.colYs[t]; + var i = this.colYs.slice(t, t + e); + return Math.max.apply(Math, i); + }), + (o._getHorizontalColPosition = function (t, e) { + var i = this.horizontalColIndex % this.cols, + o = t > 1 && i + t > this.cols; + i = o ? 0 : i; + var n = e.size.outerWidth && e.size.outerHeight; + return ( + (this.horizontalColIndex = n ? i + t : this.horizontalColIndex), + { col: i, y: this._getColGroupY(i, t) } + ); + }), + (o._manageStamp = function (t) { + var i = e(t), + o = this._getElementOffset(t), + n = this._getOption("originLeft"), + s = n ? o.left : o.right, + r = s + i.outerWidth, + a = Math.floor(s / this.columnWidth); + a = Math.max(0, a); + var u = Math.floor(r / this.columnWidth); + (u -= r % this.columnWidth ? 0 : 1), (u = Math.min(this.cols - 1, u)); + for ( + var h = this._getOption("originTop"), + d = (h ? o.top : o.bottom) + i.outerHeight, + l = a; + l <= u; + l++ + ) + this.colYs[l] = Math.max(d, this.colYs[l]); + }), + (o._getContainerSize = function () { + this.maxY = Math.max.apply(Math, this.colYs); + var t = { height: this.maxY }; + return ( + this._getOption("fitWidth") && + (t.width = this._getContainerFitWidth()), + t + ); + }), + (o._getContainerFitWidth = function () { + for (var t = 0, e = this.cols; --e && 0 === this.colYs[e]; ) t++; + return (this.cols - t) * this.columnWidth - this.gutter; + }), + (o.needsResizeLayout = function () { + var t = this.containerWidth; + return this.getContainerWidth(), t != this.containerWidth; + }), + i + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define( + "isotope-layout/js/layout-modes/masonry", + ["../layout-mode", "masonry-layout/masonry"], + e + ) + : "object" == typeof module && module.exports + ? (module.exports = e( + require("../layout-mode"), + require("masonry-layout") + )) + : e(t.Isotope.LayoutMode, t.Masonry); + })(window, function (t, e) { + "use strict"; + var i = t.create("masonry"), + o = i.prototype, + n = { _getElementOffset: !0, layout: !0, _getMeasurement: !0 }; + for (var s in e.prototype) n[s] || (o[s] = e.prototype[s]); + var r = o.measureColumns; + o.measureColumns = function () { + (this.items = this.isotope.filteredItems), r.call(this); + }; + var a = o._getOption; + return ( + (o._getOption = function (t) { + return "fitWidth" == t + ? void 0 !== this.options.isFitWidth + ? this.options.isFitWidth + : this.options.fitWidth + : a.apply(this.isotope, arguments); + }), + i + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define("isotope-layout/js/layout-modes/fit-rows", ["../layout-mode"], e) + : "object" == typeof exports + ? (module.exports = e(require("../layout-mode"))) + : e(t.Isotope.LayoutMode); + })(window, function (t) { + "use strict"; + var e = t.create("fitRows"), + i = e.prototype; + return ( + (i._resetLayout = function () { + (this.x = 0), + (this.y = 0), + (this.maxY = 0), + this._getMeasurement("gutter", "outerWidth"); + }), + (i._getItemLayoutPosition = function (t) { + t.getSize(); + var e = t.size.outerWidth + this.gutter, + i = this.isotope.size.innerWidth + this.gutter; + 0 !== this.x && e + this.x > i && ((this.x = 0), (this.y = this.maxY)); + var o = { x: this.x, y: this.y }; + return ( + (this.maxY = Math.max(this.maxY, this.y + t.size.outerHeight)), + (this.x += e), + o + ); + }), + (i._getContainerSize = function () { + return { height: this.maxY }; + }), + e + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define("isotope-layout/js/layout-modes/vertical", ["../layout-mode"], e) + : "object" == typeof module && module.exports + ? (module.exports = e(require("../layout-mode"))) + : e(t.Isotope.LayoutMode); + })(window, function (t) { + "use strict"; + var e = t.create("vertical", { horizontalAlignment: 0 }), + i = e.prototype; + return ( + (i._resetLayout = function () { + this.y = 0; + }), + (i._getItemLayoutPosition = function (t) { + t.getSize(); + var e = + (this.isotope.size.innerWidth - t.size.outerWidth) * + this.options.horizontalAlignment, + i = this.y; + return (this.y += t.size.outerHeight), { x: e, y: i }; + }), + (i._getContainerSize = function () { + return { height: this.y }; + }), + e + ); + }), + (function (t, e) { + "function" == typeof define && define.amd + ? define( + [ + "outlayer/outlayer", + "get-size/get-size", + "desandro-matches-selector/matches-selector", + "fizzy-ui-utils/utils", + "isotope-layout/js/item", + "isotope-layout/js/layout-mode", + "isotope-layout/js/layout-modes/masonry", + "isotope-layout/js/layout-modes/fit-rows", + "isotope-layout/js/layout-modes/vertical", + ], + function (i, o, n, s, r, a) { + return e(t, i, o, n, s, r, a); + } + ) + : "object" == typeof module && module.exports + ? (module.exports = e( + t, + require("outlayer"), + require("get-size"), + require("desandro-matches-selector"), + require("fizzy-ui-utils"), + require("isotope-layout/js/item"), + require("isotope-layout/js/layout-mode"), + require("isotope-layout/js/layout-modes/masonry"), + require("isotope-layout/js/layout-modes/fit-rows"), + require("isotope-layout/js/layout-modes/vertical") + )) + : (t.Isotope = e( + t, + t.Outlayer, + t.getSize, + t.matchesSelector, + t.fizzyUIUtils, + t.Isotope.Item, + t.Isotope.LayoutMode + )); + })(window, function (t, e, i, o, n, s, r) { + function a(t, e) { + return function (i, o) { + for (var n = 0; n < t.length; n++) { + var s = t[n], + r = i.sortData[s], + a = o.sortData[s]; + if (r > a || r < a) { + var u = void 0 !== e[s] ? e[s] : e, + h = u ? 1 : -1; + return (r > a ? 1 : -1) * h; + } + } + return 0; + }; + } + var u = t.jQuery, + h = String.prototype.trim + ? function (t) { + return t.trim(); + } + : function (t) { + return t.replace(/^\s+|\s+$/g, ""); + }, + d = e.create("isotope", { + layoutMode: "masonry", + isJQueryFiltering: !0, + sortAscending: !0, + }); + (d.Item = s), (d.LayoutMode = r); + var l = d.prototype; + (l._create = function () { + (this.itemGUID = 0), + (this._sorters = {}), + this._getSorters(), + e.prototype._create.call(this), + (this.modes = {}), + (this.filteredItems = this.items), + (this.sortHistory = ["original-order"]); + for (var t in r.modes) this._initLayoutMode(t); + }), + (l.reloadItems = function () { + (this.itemGUID = 0), e.prototype.reloadItems.call(this); + }), + (l._itemize = function () { + for ( + var t = e.prototype._itemize.apply(this, arguments), i = 0; + i < t.length; + i++ + ) { + var o = t[i]; + o.id = this.itemGUID++; + } + return this._updateItemsSortData(t), t; + }), + (l._initLayoutMode = function (t) { + var e = r.modes[t], + i = this.options[t] || {}; + (this.options[t] = e.options ? n.extend(e.options, i) : i), + (this.modes[t] = new e(this)); + }), + (l.layout = function () { + return !this._isLayoutInited && this._getOption("initLayout") + ? void this.arrange() + : void this._layout(); + }), + (l._layout = function () { + var t = this._getIsInstant(); + this._resetLayout(), + this._manageStamps(), + this.layoutItems(this.filteredItems, t), + (this._isLayoutInited = !0); + }), + (l.arrange = function (t) { + this.option(t), this._getIsInstant(); + var e = this._filter(this.items); + (this.filteredItems = e.matches), + this._bindArrangeComplete(), + this._isInstant + ? this._noTransition(this._hideReveal, [e]) + : this._hideReveal(e), + this._sort(), + this._layout(); + }), + (l._init = l.arrange), + (l._hideReveal = function (t) { + this.reveal(t.needReveal), this.hide(t.needHide); + }), + (l._getIsInstant = function () { + var t = this._getOption("layoutInstant"), + e = void 0 !== t ? t : !this._isLayoutInited; + return (this._isInstant = e), e; + }), + (l._bindArrangeComplete = function () { + function t() { + e && + i && + o && + n.dispatchEvent("arrangeComplete", null, [n.filteredItems]); + } + var e, + i, + o, + n = this; + this.once("layoutComplete", function () { + (e = !0), t(); + }), + this.once("hideComplete", function () { + (i = !0), t(); + }), + this.once("revealComplete", function () { + (o = !0), t(); + }); + }), + (l._filter = function (t) { + var e = this.options.filter; + e = e || "*"; + for ( + var i = [], o = [], n = [], s = this._getFilterTest(e), r = 0; + r < t.length; + r++ + ) { + var a = t[r]; + if (!a.isIgnored) { + var u = s(a); + u && i.push(a), + u && a.isHidden ? o.push(a) : u || a.isHidden || n.push(a); + } + } + return { matches: i, needReveal: o, needHide: n }; + }), + (l._getFilterTest = function (t) { + return u && this.options.isJQueryFiltering + ? function (e) { + return u(e.element).is(t); + } + : "function" == typeof t + ? function (e) { + return t(e.element); + } + : function (e) { + return o(e.element, t); + }; + }), + (l.updateSortData = function (t) { + var e; + t ? ((t = n.makeArray(t)), (e = this.getItems(t))) : (e = this.items), + this._getSorters(), + this._updateItemsSortData(e); + }), + (l._getSorters = function () { + var t = this.options.getSortData; + for (var e in t) { + var i = t[e]; + this._sorters[e] = f(i); + } + }), + (l._updateItemsSortData = function (t) { + for (var e = t && t.length, i = 0; e && i < e; i++) { + var o = t[i]; + o.updateSortData(); + } + }); + var f = (function () { + function t(t) { + if ("string" != typeof t) return t; + var i = h(t).split(" "), + o = i[0], + n = o.match(/^\[(.+)\]$/), + s = n && n[1], + r = e(s, o), + a = d.sortDataParsers[i[1]]; + return (t = a + ? function (t) { + return t && a(r(t)); + } + : function (t) { + return t && r(t); + }); + } + function e(t, e) { + return t + ? function (e) { + return e.getAttribute(t); + } + : function (t) { + var i = t.querySelector(e); + return i && i.textContent; + }; + } + return t; + })(); + (d.sortDataParsers = { + parseInt: function (t) { + return parseInt(t, 10); + }, + parseFloat: function (t) { + return parseFloat(t); + }, + }), + (l._sort = function () { + if (this.options.sortBy) { + var t = n.makeArray(this.options.sortBy); + this._getIsSameSortBy(t) || + (this.sortHistory = t.concat(this.sortHistory)); + var e = a(this.sortHistory, this.options.sortAscending); + this.filteredItems.sort(e); + } + }), + (l._getIsSameSortBy = function (t) { + for (var e = 0; e < t.length; e++) + if (t[e] != this.sortHistory[e]) return !1; + return !0; + }), + (l._mode = function () { + var t = this.options.layoutMode, + e = this.modes[t]; + if (!e) throw new Error("No layout mode: " + t); + return (e.options = this.options[t]), e; + }), + (l._resetLayout = function () { + e.prototype._resetLayout.call(this), this._mode()._resetLayout(); + }), + (l._getItemLayoutPosition = function (t) { + return this._mode()._getItemLayoutPosition(t); + }), + (l._manageStamp = function (t) { + this._mode()._manageStamp(t); + }), + (l._getContainerSize = function () { + return this._mode()._getContainerSize(); + }), + (l.needsResizeLayout = function () { + return this._mode().needsResizeLayout(); + }), + (l.appended = function (t) { + var e = this.addItems(t); + if (e.length) { + var i = this._filterRevealAdded(e); + this.filteredItems = this.filteredItems.concat(i); + } + }), + (l.prepended = function (t) { + var e = this._itemize(t); + if (e.length) { + this._resetLayout(), this._manageStamps(); + var i = this._filterRevealAdded(e); + this.layoutItems(this.filteredItems), + (this.filteredItems = i.concat(this.filteredItems)), + (this.items = e.concat(this.items)); + } + }), + (l._filterRevealAdded = function (t) { + var e = this._filter(t); + return ( + this.hide(e.needHide), + this.reveal(e.matches), + this.layoutItems(e.matches, !0), + e.matches + ); + }), + (l.insert = function (t) { + var e = this.addItems(t); + if (e.length) { + var i, + o, + n = e.length; + for (i = 0; i < n; i++) + (o = e[i]), this.element.appendChild(o.element); + var s = this._filter(e).matches; + for (i = 0; i < n; i++) e[i].isLayoutInstant = !0; + for (this.arrange(), i = 0; i < n; i++) delete e[i].isLayoutInstant; + this.reveal(s); + } + }); + var c = l.remove; + return ( + (l.remove = function (t) { + t = n.makeArray(t); + var e = this.getItems(t); + c.call(this, t); + for (var i = e && e.length, o = 0; i && o < i; o++) { + var s = e[o]; + n.removeFrom(this.filteredItems, s); + } + }), + (l.shuffle = function () { + for (var t = 0; t < this.items.length; t++) { + var e = this.items[t]; + e.sortData.random = Math.random(); + } + (this.options.sortBy = "random"), this._sort(), this._layout(); + }), + (l._noTransition = function (t, e) { + var i = this.options.transitionDuration; + this.options.transitionDuration = 0; + var o = t.apply(this, e); + return (this.options.transitionDuration = i), o; + }), + (l.getFilteredItemElements = function () { + return this.filteredItems.map(function (t) { + return t.element; + }); + }), + d + ); + }); diff --git a/static/felcloud/website/js/jquery.countdown.js b/static/felcloud/website/js/jquery.countdown.js new file mode 100644 index 0000000..e09f45a --- /dev/null +++ b/static/felcloud/website/js/jquery.countdown.js @@ -0,0 +1,205 @@ +/*! + * The Final Countdown for jQuery v2.2.0 (http://hilios.github.io/jQuery.countdown/) + * Copyright (c) 2016 Edson Hilios + * + * Permission is hereby granted, free of charge, to any person obtaining a copy of + * this software and associated documentation files (the "Software"), to deal in + * the Software without restriction, including without limitation the rights to + * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of + * the Software, and to permit persons to whom the Software is furnished to do so, + * subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in all + * copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS + * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR + * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER + * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN + * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + */ +!(function (a) { + "use strict"; + "function" == typeof define && define.amd ? define(["jquery"], a) : a(jQuery); +})(function (a) { + "use strict"; + function b(a) { + if (a instanceof Date) return a; + if (String(a).match(g)) + return ( + String(a).match(/^[0-9]*$/) && (a = Number(a)), + String(a).match(/\-/) && (a = String(a).replace(/\-/g, "/")), + new Date(a) + ); + throw new Error("Couldn't cast `" + a + "` to a date object."); + } + function c(a) { + var b = a.toString().replace(/([.?*+^$[\]\\(){}|-])/g, "\\$1"); + return new RegExp(b); + } + function d(a) { + return function (b) { + var d = b.match(/%(-|!)?[A-Z]{1}(:[^;]+;)?/gi); + if (d) + for (var f = 0, g = d.length; f < g; ++f) { + var h = d[f].match(/%(-|!)?([a-zA-Z]{1})(:[^;]+;)?/), + j = c(h[0]), + k = h[1] || "", + l = h[3] || "", + m = null; + (h = h[2]), + i.hasOwnProperty(h) && ((m = i[h]), (m = Number(a[m]))), + null !== m && + ("!" === k && (m = e(l, m)), + "" === k && m < 10 && (m = "0" + m.toString()), + (b = b.replace(j, m.toString()))); + } + return (b = b.replace(/%%/, "%")); + }; + } + function e(a, b) { + var c = "s", + d = ""; + return ( + a && + ((a = a.replace(/(:|;|\s)/gi, "").split(/\,/)), + 1 === a.length ? (c = a[0]) : ((d = a[0]), (c = a[1]))), + Math.abs(b) > 1 ? c : d + ); + } + var f = [], + g = [], + h = { precision: 100, elapse: !1, defer: !1 }; + g.push(/^[0-9]*$/.source), + g.push(/([0-9]{1,2}\/){2}[0-9]{4}( [0-9]{1,2}(:[0-9]{2}){2})?/.source), + g.push(/[0-9]{4}([\/\-][0-9]{1,2}){2}( [0-9]{1,2}(:[0-9]{2}){2})?/.source), + (g = new RegExp(g.join("|"))); + var i = { + Y: "years", + m: "months", + n: "daysToMonth", + d: "daysToWeek", + w: "weeks", + W: "weeksToMonth", + H: "hours", + M: "minutes", + S: "seconds", + D: "totalDays", + I: "totalHours", + N: "totalMinutes", + T: "totalSeconds", + }, + j = function (b, c, d) { + (this.el = b), + (this.$el = a(b)), + (this.interval = null), + (this.offset = {}), + (this.options = a.extend({}, h)), + (this.instanceNumber = f.length), + f.push(this), + this.$el.data("countdown-instance", this.instanceNumber), + d && + ("function" == typeof d + ? (this.$el.on("update.countdown", d), + this.$el.on("stoped.countdown", d), + this.$el.on("finish.countdown", d)) + : (this.options = a.extend({}, h, d))), + this.setFinalDate(c), + this.options.defer === !1 && this.start(); + }; + a.extend(j.prototype, { + start: function () { + null !== this.interval && clearInterval(this.interval); + var a = this; + this.update(), + (this.interval = setInterval(function () { + a.update.call(a); + }, this.options.precision)); + }, + stop: function () { + clearInterval(this.interval), + (this.interval = null), + this.dispatchEvent("stoped"); + }, + toggle: function () { + this.interval ? this.stop() : this.start(); + }, + pause: function () { + this.stop(); + }, + resume: function () { + this.start(); + }, + remove: function () { + this.stop.call(this), + (f[this.instanceNumber] = null), + delete this.$el.data().countdownInstance; + }, + setFinalDate: function (a) { + this.finalDate = b(a); + }, + update: function () { + if (0 === this.$el.closest("html").length) return void this.remove(); + var b, + c = void 0 !== a._data(this.el, "events"), + d = new Date(); + (b = this.finalDate.getTime() - d.getTime()), + (b = Math.ceil(b / 1e3)), + (b = !this.options.elapse && b < 0 ? 0 : Math.abs(b)), + this.totalSecsLeft !== b && + c && + ((this.totalSecsLeft = b), + (this.elapsed = d >= this.finalDate), + (this.offset = { + seconds: this.totalSecsLeft % 60, + minutes: Math.floor(this.totalSecsLeft / 60) % 60, + hours: Math.floor(this.totalSecsLeft / 60 / 60) % 24, + days: Math.floor(this.totalSecsLeft / 60 / 60 / 24) % 7, + daysToWeek: Math.floor(this.totalSecsLeft / 60 / 60 / 24) % 7, + daysToMonth: Math.floor( + (this.totalSecsLeft / 60 / 60 / 24) % 30.4368 + ), + weeks: Math.floor(this.totalSecsLeft / 60 / 60 / 24 / 7), + weeksToMonth: Math.floor(this.totalSecsLeft / 60 / 60 / 24 / 7) % 4, + months: Math.floor(this.totalSecsLeft / 60 / 60 / 24 / 30.4368), + years: Math.abs(this.finalDate.getFullYear() - d.getFullYear()), + totalDays: Math.floor(this.totalSecsLeft / 60 / 60 / 24), + totalHours: Math.floor(this.totalSecsLeft / 60 / 60), + totalMinutes: Math.floor(this.totalSecsLeft / 60), + totalSeconds: this.totalSecsLeft, + }), + this.options.elapse || 0 !== this.totalSecsLeft + ? this.dispatchEvent("update") + : (this.stop(), this.dispatchEvent("finish"))); + }, + dispatchEvent: function (b) { + var c = a.Event(b + ".countdown"); + (c.finalDate = this.finalDate), + (c.elapsed = this.elapsed), + (c.offset = a.extend({}, this.offset)), + (c.strftime = d(this.offset)), + this.$el.trigger(c); + }, + }), + (a.fn.countdown = function () { + var b = Array.prototype.slice.call(arguments, 0); + return this.each(function () { + var c = a(this).data("countdown-instance"); + if (void 0 !== c) { + var d = f[c], + e = b[0]; + j.prototype.hasOwnProperty(e) + ? d[e].apply(d, b.slice(1)) + : null === String(e).match(/^[$A-Z_][0-9A-Z_$]*$/i) + ? (d.setFinalDate.call(d, e), d.start()) + : a.error( + "Method %s does not exist on jQuery.countdown".replace( + /\%s/gi, + e + ) + ); + } else new j(this, b[0], b[1]); + }); + }); +}); diff --git a/static/felcloud/website/js/jquery.magnific-popup.min.js b/static/felcloud/website/js/jquery.magnific-popup.min.js new file mode 100644 index 0000000..5fc4d1e --- /dev/null +++ b/static/felcloud/website/js/jquery.magnific-popup.min.js @@ -0,0 +1,4 @@ +/*! Magnific Popup - v1.1.0 - 2016-02-20 +* http://dimsemenov.com/plugins/magnific-popup/ +* Copyright (c) 2016 Dmitry Semenov; */ +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):a("object"==typeof exports?require("jquery"):window.jQuery||window.Zepto)}(function(a){var b,c,d,e,f,g,h="Close",i="BeforeClose",j="AfterClose",k="BeforeAppend",l="MarkupParse",m="Open",n="Change",o="mfp",p="."+o,q="mfp-ready",r="mfp-removing",s="mfp-prevent-close",t=function(){},u=!!window.jQuery,v=a(window),w=function(a,c){b.ev.on(o+a+p,c)},x=function(b,c,d,e){var f=document.createElement("div");return f.className="mfp-"+b,d&&(f.innerHTML=d),e?c&&c.appendChild(f):(f=a(f),c&&f.appendTo(c)),f},y=function(c,d){b.ev.triggerHandler(o+c,d),b.st.callbacks&&(c=c.charAt(0).toLowerCase()+c.slice(1),b.st.callbacks[c]&&b.st.callbacks[c].apply(b,a.isArray(d)?d:[d]))},z=function(c){return c===g&&b.currTemplate.closeBtn||(b.currTemplate.closeBtn=a(b.st.closeMarkup.replace("%title%",b.st.tClose)),g=c),b.currTemplate.closeBtn},A=function(){a.magnificPopup.instance||(b=new t,b.init(),a.magnificPopup.instance=b)},B=function(){var a=document.createElement("p").style,b=["ms","O","Moz","Webkit"];if(void 0!==a.transition)return!0;for(;b.length;)if(b.pop()+"Transition"in a)return!0;return!1};t.prototype={constructor:t,init:function(){var c=navigator.appVersion;b.isLowIE=b.isIE8=document.all&&!document.addEventListener,b.isAndroid=/android/gi.test(c),b.isIOS=/iphone|ipad|ipod/gi.test(c),b.supportsTransition=B(),b.probablyMobile=b.isAndroid||b.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),d=a(document),b.popupsCache={}},open:function(c){var e;if(c.isObj===!1){b.items=c.items.toArray(),b.index=0;var g,h=c.items;for(e=0;e(a||v.height())},_setFocus:function(){(b.st.focus?b.content.find(b.st.focus).eq(0):b.wrap).focus()},_onFocusIn:function(c){return c.target===b.wrap[0]||a.contains(b.wrap[0],c.target)?void 0:(b._setFocus(),!1)},_parseMarkup:function(b,c,d){var e;d.data&&(c=a.extend(d.data,c)),y(l,[b,c,d]),a.each(c,function(c,d){if(void 0===d||d===!1)return!0;if(e=c.split("_"),e.length>1){var f=b.find(p+"-"+e[0]);if(f.length>0){var g=e[1];"replaceWith"===g?f[0]!==d[0]&&f.replaceWith(d):"img"===g?f.is("img")?f.attr("src",d):f.replaceWith(a("").attr("src",d).attr("class",f.attr("class"))):f.attr(e[1],d)}}else b.find(p+"-"+c).html(d)})},_getScrollbarSize:function(){if(void 0===b.scrollbarSize){var a=document.createElement("div");a.style.cssText="width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;",document.body.appendChild(a),b.scrollbarSize=a.offsetWidth-a.clientWidth,document.body.removeChild(a)}return b.scrollbarSize}},a.magnificPopup={instance:null,proto:t.prototype,modules:[],open:function(b,c){return A(),b=b?a.extend(!0,{},b):{},b.isObj=!0,b.index=c||0,this.instance.open(b)},close:function(){return a.magnificPopup.instance&&a.magnificPopup.instance.close()},registerModule:function(b,c){c.options&&(a.magnificPopup.defaults[b]=c.options),a.extend(this.proto,c.proto),this.modules.push(b)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:"",preloader:!0,focus:"",closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:"auto",fixedBgPos:"auto",overflowY:"auto",closeMarkup:'',tClose:"Close (Esc)",tLoading:"Loading...",autoFocusLast:!0}},a.fn.magnificPopup=function(c){A();var d=a(this);if("string"==typeof c)if("open"===c){var e,f=u?d.data("magnificPopup"):d[0].magnificPopup,g=parseInt(arguments[1],10)||0;f.items?e=f.items[g]:(e=d,f.delegate&&(e=e.find(f.delegate)),e=e.eq(g)),b._openClick({mfpEl:e},d,f)}else b.isOpen&&b[c].apply(b,Array.prototype.slice.call(arguments,1));else c=a.extend(!0,{},c),u?d.data("magnificPopup",c):d[0].magnificPopup=c,b.addGroup(d,c);return d};var C,D,E,F="inline",G=function(){E&&(D.after(E.addClass(C)).detach(),E=null)};a.magnificPopup.registerModule(F,{options:{hiddenClass:"hide",markup:"",tNotFound:"Content not found"},proto:{initInline:function(){b.types.push(F),w(h+"."+F,function(){G()})},getInline:function(c,d){if(G(),c.src){var e=b.st.inline,f=a(c.src);if(f.length){var g=f[0].parentNode;g&&g.tagName&&(D||(C=e.hiddenClass,D=x(C),C="mfp-"+C),E=f.after(D).detach().removeClass(C)),b.updateStatus("ready")}else b.updateStatus("error",e.tNotFound),f=a("
");return c.inlineElement=f,f}return b.updateStatus("ready"),b._parseMarkup(d,{},c),d}}});var H,I="ajax",J=function(){H&&a(document.body).removeClass(H)},K=function(){J(),b.req&&b.req.abort()};a.magnificPopup.registerModule(I,{options:{settings:null,cursor:"mfp-ajax-cur",tError:'The content could not be loaded.'},proto:{initAjax:function(){b.types.push(I),H=b.st.ajax.cursor,w(h+"."+I,K),w("BeforeChange."+I,K)},getAjax:function(c){H&&a(document.body).addClass(H),b.updateStatus("loading");var d=a.extend({url:c.src,success:function(d,e,f){var g={data:d,xhr:f};y("ParseAjax",g),b.appendContent(a(g.data),I),c.finished=!0,J(),b._setFocus(),setTimeout(function(){b.wrap.addClass(q)},16),b.updateStatus("ready"),y("AjaxContentAdded")},error:function(){J(),c.finished=c.loadError=!0,b.updateStatus("error",b.st.ajax.tError.replace("%url%",c.src))}},b.st.ajax.settings);return b.req=a.ajax(d),""}}});var L,M=function(c){if(c.data&&void 0!==c.data.title)return c.data.title;var d=b.st.image.titleSrc;if(d){if(a.isFunction(d))return d.call(b,c);if(c.el)return c.el.attr(d)||""}return""};a.magnificPopup.registerModule("image",{options:{markup:'
',cursor:"mfp-zoom-out-cur",titleSrc:"title",verticalFit:!0,tError:'The image could not be loaded.'},proto:{initImage:function(){var c=b.st.image,d=".image";b.types.push("image"),w(m+d,function(){"image"===b.currItem.type&&c.cursor&&a(document.body).addClass(c.cursor)}),w(h+d,function(){c.cursor&&a(document.body).removeClass(c.cursor),v.off("resize"+p)}),w("Resize"+d,b.resizeImage),b.isLowIE&&w("AfterChange",b.resizeImage)},resizeImage:function(){var a=b.currItem;if(a&&a.img&&b.st.image.verticalFit){var c=0;b.isLowIE&&(c=parseInt(a.img.css("padding-top"),10)+parseInt(a.img.css("padding-bottom"),10)),a.img.css("max-height",b.wH-c)}},_onImageHasSize:function(a){a.img&&(a.hasSize=!0,L&&clearInterval(L),a.isCheckingImgSize=!1,y("ImageHasSize",a),a.imgHidden&&(b.content&&b.content.removeClass("mfp-loading"),a.imgHidden=!1))},findImageSize:function(a){var c=0,d=a.img[0],e=function(f){L&&clearInterval(L),L=setInterval(function(){return d.naturalWidth>0?void b._onImageHasSize(a):(c>200&&clearInterval(L),c++,void(3===c?e(10):40===c?e(50):100===c&&e(500)))},f)};e(1)},getImage:function(c,d){var e=0,f=function(){c&&(c.img[0].complete?(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("ready")),c.hasSize=!0,c.loaded=!0,y("ImageLoadComplete")):(e++,200>e?setTimeout(f,100):g()))},g=function(){c&&(c.img.off(".mfploader"),c===b.currItem&&(b._onImageHasSize(c),b.updateStatus("error",h.tError.replace("%url%",c.src))),c.hasSize=!0,c.loaded=!0,c.loadError=!0)},h=b.st.image,i=d.find(".mfp-img");if(i.length){var j=document.createElement("img");j.className="mfp-img",c.el&&c.el.find("img").length&&(j.alt=c.el.find("img").attr("alt")),c.img=a(j).on("load.mfploader",f).on("error.mfploader",g),j.src=c.src,i.is("img")&&(c.img=c.img.clone()),j=c.img[0],j.naturalWidth>0?c.hasSize=!0:j.width||(c.hasSize=!1)}return b._parseMarkup(d,{title:M(c),img_replaceWith:c.img},c),b.resizeImage(),c.hasSize?(L&&clearInterval(L),c.loadError?(d.addClass("mfp-loading"),b.updateStatus("error",h.tError.replace("%url%",c.src))):(d.removeClass("mfp-loading"),b.updateStatus("ready")),d):(b.updateStatus("loading"),c.loading=!0,c.hasSize||(c.imgHidden=!0,d.addClass("mfp-loading"),b.findImageSize(c)),d)}}});var N,O=function(){return void 0===N&&(N=void 0!==document.createElement("p").style.MozTransform),N};a.magnificPopup.registerModule("zoom",{options:{enabled:!1,easing:"ease-in-out",duration:300,opener:function(a){return a.is("img")?a:a.find("img")}},proto:{initZoom:function(){var a,c=b.st.zoom,d=".zoom";if(c.enabled&&b.supportsTransition){var e,f,g=c.duration,j=function(a){var b=a.clone().removeAttr("style").removeAttr("class").addClass("mfp-animated-image"),d="all "+c.duration/1e3+"s "+c.easing,e={position:"fixed",zIndex:9999,left:0,top:0,"-webkit-backface-visibility":"hidden"},f="transition";return e["-webkit-"+f]=e["-moz-"+f]=e["-o-"+f]=e[f]=d,b.css(e),b},k=function(){b.content.css("visibility","visible")};w("BuildControls"+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.content.css("visibility","hidden"),a=b._getItemToZoom(),!a)return void k();f=j(a),f.css(b._getOffset()),b.wrap.append(f),e=setTimeout(function(){f.css(b._getOffset(!0)),e=setTimeout(function(){k(),setTimeout(function(){f.remove(),a=f=null,y("ZoomAnimationEnded")},16)},g)},16)}}),w(i+d,function(){if(b._allowZoom()){if(clearTimeout(e),b.st.removalDelay=g,!a){if(a=b._getItemToZoom(),!a)return;f=j(a)}f.css(b._getOffset(!0)),b.wrap.append(f),b.content.css("visibility","hidden"),setTimeout(function(){f.css(b._getOffset())},16)}}),w(h+d,function(){b._allowZoom()&&(k(),f&&f.remove(),a=null)})}},_allowZoom:function(){return"image"===b.currItem.type},_getItemToZoom:function(){return b.currItem.hasSize?b.currItem.img:!1},_getOffset:function(c){var d;d=c?b.currItem.img:b.st.zoom.opener(b.currItem.el||b.currItem);var e=d.offset(),f=parseInt(d.css("padding-top"),10),g=parseInt(d.css("padding-bottom"),10);e.top-=a(window).scrollTop()-f;var h={width:d.width(),height:(u?d.innerHeight():d[0].offsetHeight)-g-f};return O()?h["-moz-transform"]=h.transform="translate("+e.left+"px,"+e.top+"px)":(h.left=e.left,h.top=e.top),h}}});var P="iframe",Q="//about:blank",R=function(a){if(b.currTemplate[P]){var c=b.currTemplate[P].find("iframe");c.length&&(a||(c[0].src=Q),b.isIE8&&c.css("display",a?"block":"none"))}};a.magnificPopup.registerModule(P,{options:{markup:'
',srcAction:"iframe_src",patterns:{youtube:{index:"youtube.com",id:"v=",src:"//www.youtube.com/embed/%id%?autoplay=1"},vimeo:{index:"vimeo.com/",id:"/",src:"//player.vimeo.com/video/%id%?autoplay=1"},gmaps:{index:"//maps.google.",src:"%id%&output=embed"}}},proto:{initIframe:function(){b.types.push(P),w("BeforeChange",function(a,b,c){b!==c&&(b===P?R():c===P&&R(!0))}),w(h+"."+P,function(){R()})},getIframe:function(c,d){var e=c.src,f=b.st.iframe;a.each(f.patterns,function(){return e.indexOf(this.index)>-1?(this.id&&(e="string"==typeof this.id?e.substr(e.lastIndexOf(this.id)+this.id.length,e.length):this.id.call(this,e)),e=this.src.replace("%id%",e),!1):void 0});var g={};return f.srcAction&&(g[f.srcAction]=e),b._parseMarkup(d,g,c),b.updateStatus("ready"),d}}});var S=function(a){var c=b.items.length;return a>c-1?a-c:0>a?c+a:a},T=function(a,b,c){return a.replace(/%curr%/gi,b+1).replace(/%total%/gi,c)};a.magnificPopup.registerModule("gallery",{options:{enabled:!1,arrowMarkup:'',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:"Previous (Left arrow key)",tNext:"Next (Right arrow key)",tCounter:"%curr% of %total%"},proto:{initGallery:function(){var c=b.st.gallery,e=".mfp-gallery";return b.direction=!0,c&&c.enabled?(f+=" mfp-gallery",w(m+e,function(){c.navigateByImgClick&&b.wrap.on("click"+e,".mfp-img",function(){return b.items.length>1?(b.next(),!1):void 0}),d.on("keydown"+e,function(a){37===a.keyCode?b.prev():39===a.keyCode&&b.next()})}),w("UpdateStatus"+e,function(a,c){c.text&&(c.text=T(c.text,b.currItem.index,b.items.length))}),w(l+e,function(a,d,e,f){var g=b.items.length;e.counter=g>1?T(c.tCounter,f.index,g):""}),w("BuildControls"+e,function(){if(b.items.length>1&&c.arrows&&!b.arrowLeft){var d=c.arrowMarkup,e=b.arrowLeft=a(d.replace(/%title%/gi,c.tPrev).replace(/%dir%/gi,"left")).addClass(s),f=b.arrowRight=a(d.replace(/%title%/gi,c.tNext).replace(/%dir%/gi,"right")).addClass(s);e.click(function(){b.prev()}),f.click(function(){b.next()}),b.container.append(e.add(f))}}),w(n+e,function(){b._preloadTimeout&&clearTimeout(b._preloadTimeout),b._preloadTimeout=setTimeout(function(){b.preloadNearbyImages(),b._preloadTimeout=null},16)}),void w(h+e,function(){d.off(e),b.wrap.off("click"+e),b.arrowRight=b.arrowLeft=null})):!1},next:function(){b.direction=!0,b.index=S(b.index+1),b.updateItemHTML()},prev:function(){b.direction=!1,b.index=S(b.index-1),b.updateItemHTML()},goTo:function(a){b.direction=a>=b.index,b.index=a,b.updateItemHTML()},preloadNearbyImages:function(){var a,c=b.st.gallery.preload,d=Math.min(c[0],b.items.length),e=Math.min(c[1],b.items.length);for(a=1;a<=(b.direction?e:d);a++)b._preloadItem(b.index+a);for(a=1;a<=(b.direction?d:e);a++)b._preloadItem(b.index-a)},_preloadItem:function(c){if(c=S(c),!b.items[c].preloaded){var d=b.items[c];d.parsed||(d=b.parseEl(c)),y("LazyLoad",d),"image"===d.type&&(d.img=a('').on("load.mfploader",function(){d.hasSize=!0}).on("error.mfploader",function(){d.hasSize=!0,d.loadError=!0,y("LazyLoadError",d)}).attr("src",d.src)),d.preloaded=!0}}}});var U="retina";a.magnificPopup.registerModule(U,{options:{replaceSrc:function(a){return a.src.replace(/\.\w+$/,function(a){return"@2x"+a})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var a=b.st.retina,c=a.ratio;c=isNaN(c)?c():c,c>1&&(w("ImageHasSize."+U,function(a,b){b.img.css({"max-width":b.img[0].naturalWidth/c,width:"100%"})}),w("ElementParse."+U,function(b,d){d.src=a.replaceSrc(d,c)}))}}}}),A()}); \ No newline at end of file diff --git a/static/felcloud/website/js/jquery.min.js b/static/felcloud/website/js/jquery.min.js new file mode 100644 index 0000000..afbe927 --- /dev/null +++ b/static/felcloud/website/js/jquery.min.js @@ -0,0 +1,5574 @@ +/*! jQuery v3.5.1 | (c) JS Foundation and other contributors | jquery.org/license */ +!(function (e, t) { + "use strict"; + "object" == typeof module && "object" == typeof module.exports + ? (module.exports = e.document + ? t(e, !0) + : function (e) { + if (!e.document) + throw new Error("jQuery requires a window with a document"); + return t(e); + }) + : t(e); +})("undefined" != typeof window ? window : this, function (C, e) { + "use strict"; + var t = [], + r = Object.getPrototypeOf, + s = t.slice, + g = t.flat + ? function (e) { + return t.flat.call(e); + } + : function (e) { + return t.concat.apply([], e); + }, + u = t.push, + i = t.indexOf, + n = {}, + o = n.toString, + v = n.hasOwnProperty, + a = v.toString, + l = a.call(Object), + y = {}, + m = function (e) { + return "function" == typeof e && "number" != typeof e.nodeType; + }, + x = function (e) { + return null != e && e === e.window; + }, + E = C.document, + c = { type: !0, src: !0, nonce: !0, noModule: !0 }; + function b(e, t, n) { + var r, + i, + o = (n = n || E).createElement("script"); + if (((o.text = e), t)) + for (r in c) + (i = t[r] || (t.getAttribute && t.getAttribute(r))) && + o.setAttribute(r, i); + n.head.appendChild(o).parentNode.removeChild(o); + } + function w(e) { + return null == e + ? e + "" + : "object" == typeof e || "function" == typeof e + ? n[o.call(e)] || "object" + : typeof e; + } + var f = "3.5.1", + S = function (e, t) { + return new S.fn.init(e, t); + }; + function p(e) { + var t = !!e && "length" in e && e.length, + n = w(e); + return ( + !m(e) && + !x(e) && + ("array" === n || + 0 === t || + ("number" == typeof t && 0 < t && t - 1 in e)) + ); + } + (S.fn = S.prototype = + { + jquery: f, + constructor: S, + length: 0, + toArray: function () { + return s.call(this); + }, + get: function (e) { + return null == e + ? s.call(this) + : e < 0 + ? this[e + this.length] + : this[e]; + }, + pushStack: function (e) { + var t = S.merge(this.constructor(), e); + return (t.prevObject = this), t; + }, + each: function (e) { + return S.each(this, e); + }, + map: function (n) { + return this.pushStack( + S.map(this, function (e, t) { + return n.call(e, t, e); + }) + ); + }, + slice: function () { + return this.pushStack(s.apply(this, arguments)); + }, + first: function () { + return this.eq(0); + }, + last: function () { + return this.eq(-1); + }, + even: function () { + return this.pushStack( + S.grep(this, function (e, t) { + return (t + 1) % 2; + }) + ); + }, + odd: function () { + return this.pushStack( + S.grep(this, function (e, t) { + return t % 2; + }) + ); + }, + eq: function (e) { + var t = this.length, + n = +e + (e < 0 ? t : 0); + return this.pushStack(0 <= n && n < t ? [this[n]] : []); + }, + end: function () { + return this.prevObject || this.constructor(); + }, + push: u, + sort: t.sort, + splice: t.splice, + }), + (S.extend = S.fn.extend = + function () { + var e, + t, + n, + r, + i, + o, + a = arguments[0] || {}, + s = 1, + u = arguments.length, + l = !1; + for ( + "boolean" == typeof a && ((l = a), (a = arguments[s] || {}), s++), + "object" == typeof a || m(a) || (a = {}), + s === u && ((a = this), s--); + s < u; + s++ + ) + if (null != (e = arguments[s])) + for (t in e) + (r = e[t]), + "__proto__" !== t && + a !== r && + (l && r && (S.isPlainObject(r) || (i = Array.isArray(r))) + ? ((n = a[t]), + (o = + i && !Array.isArray(n) + ? [] + : i || S.isPlainObject(n) + ? n + : {}), + (i = !1), + (a[t] = S.extend(l, o, r))) + : void 0 !== r && (a[t] = r)); + return a; + }), + S.extend({ + expando: "jQuery" + (f + Math.random()).replace(/\D/g, ""), + isReady: !0, + error: function (e) { + throw new Error(e); + }, + noop: function () {}, + isPlainObject: function (e) { + var t, n; + return ( + !(!e || "[object Object]" !== o.call(e)) && + (!(t = r(e)) || + ("function" == + typeof (n = v.call(t, "constructor") && t.constructor) && + a.call(n) === l)) + ); + }, + isEmptyObject: function (e) { + var t; + for (t in e) return !1; + return !0; + }, + globalEval: function (e, t, n) { + b(e, { nonce: t && t.nonce }, n); + }, + each: function (e, t) { + var n, + r = 0; + if (p(e)) { + for (n = e.length; r < n; r++) + if (!1 === t.call(e[r], r, e[r])) break; + } else for (r in e) if (!1 === t.call(e[r], r, e[r])) break; + return e; + }, + makeArray: function (e, t) { + var n = t || []; + return ( + null != e && + (p(Object(e)) + ? S.merge(n, "string" == typeof e ? [e] : e) + : u.call(n, e)), + n + ); + }, + inArray: function (e, t, n) { + return null == t ? -1 : i.call(t, e, n); + }, + merge: function (e, t) { + for (var n = +t.length, r = 0, i = e.length; r < n; r++) e[i++] = t[r]; + return (e.length = i), e; + }, + grep: function (e, t, n) { + for (var r = [], i = 0, o = e.length, a = !n; i < o; i++) + !t(e[i], i) !== a && r.push(e[i]); + return r; + }, + map: function (e, t, n) { + var r, + i, + o = 0, + a = []; + if (p(e)) + for (r = e.length; o < r; o++) + null != (i = t(e[o], o, n)) && a.push(i); + else for (o in e) null != (i = t(e[o], o, n)) && a.push(i); + return g(a); + }, + guid: 1, + support: y, + }), + "function" == typeof Symbol && (S.fn[Symbol.iterator] = t[Symbol.iterator]), + S.each( + "Boolean Number String Function Array Date RegExp Object Error Symbol".split( + " " + ), + function (e, t) { + n["[object " + t + "]"] = t.toLowerCase(); + } + ); + var d = (function (n) { + var e, + d, + b, + o, + i, + h, + f, + g, + w, + u, + l, + T, + C, + a, + E, + v, + s, + c, + y, + S = "sizzle" + 1 * new Date(), + p = n.document, + k = 0, + r = 0, + m = ue(), + x = ue(), + A = ue(), + N = ue(), + D = function (e, t) { + return e === t && (l = !0), 0; + }, + j = {}.hasOwnProperty, + t = [], + q = t.pop, + L = t.push, + H = t.push, + O = t.slice, + P = function (e, t) { + for (var n = 0, r = e.length; n < r; n++) if (e[n] === t) return n; + return -1; + }, + R = + "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", + M = "[\\x20\\t\\r\\n\\f]", + I = + "(?:\\\\[\\da-fA-F]{1,6}" + + M + + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", + W = + "\\[" + + M + + "*(" + + I + + ")(?:" + + M + + "*([*^$|!~]?=)" + + M + + "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + + I + + "))|)" + + M + + "*\\]", + F = + ":(" + + I + + ")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|" + + W + + ")*)|.*)\\)|)", + B = new RegExp(M + "+", "g"), + $ = new RegExp("^" + M + "+|((?:^|[^\\\\])(?:\\\\.)*)" + M + "+$", "g"), + _ = new RegExp("^" + M + "*," + M + "*"), + z = new RegExp("^" + M + "*([>+~]|" + M + ")" + M + "*"), + U = new RegExp(M + "|>"), + X = new RegExp(F), + V = new RegExp("^" + I + "$"), + G = { + ID: new RegExp("^#(" + I + ")"), + CLASS: new RegExp("^\\.(" + I + ")"), + TAG: new RegExp("^(" + I + "|[*])"), + ATTR: new RegExp("^" + W), + PSEUDO: new RegExp("^" + F), + CHILD: new RegExp( + "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + + M + + "*(even|odd|(([+-]|)(\\d*)n|)" + + M + + "*(?:([+-]|)" + + M + + "*(\\d+)|))" + + M + + "*\\)|)", + "i" + ), + bool: new RegExp("^(?:" + R + ")$", "i"), + needsContext: new RegExp( + "^" + + M + + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + + M + + "*((?:-\\d)?\\d*)" + + M + + "*\\)|)(?=[^-]|$)", + "i" + ), + }, + Y = /HTML$/i, + Q = /^(?:input|select|textarea|button)$/i, + J = /^h\d$/i, + K = /^[^{]+\{\s*\[native \w/, + Z = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, + ee = /[+~]/, + te = new RegExp("\\\\[\\da-fA-F]{1,6}" + M + "?|\\\\([^\\r\\n\\f])", "g"), + ne = function (e, t) { + var n = "0x" + e.slice(1) - 65536; + return ( + t || + (n < 0 + ? String.fromCharCode(n + 65536) + : String.fromCharCode((n >> 10) | 55296, (1023 & n) | 56320)) + ); + }, + re = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, + ie = function (e, t) { + return t + ? "\0" === e + ? "\ufffd" + : e.slice(0, -1) + + "\\" + + e.charCodeAt(e.length - 1).toString(16) + + " " + : "\\" + e; + }, + oe = function () { + T(); + }, + ae = be( + function (e) { + return !0 === e.disabled && "fieldset" === e.nodeName.toLowerCase(); + }, + { dir: "parentNode", next: "legend" } + ); + try { + H.apply((t = O.call(p.childNodes)), p.childNodes), + t[p.childNodes.length].nodeType; + } catch (e) { + H = { + apply: t.length + ? function (e, t) { + L.apply(e, O.call(t)); + } + : function (e, t) { + var n = e.length, + r = 0; + while ((e[n++] = t[r++])); + e.length = n - 1; + }, + }; + } + function se(t, e, n, r) { + var i, + o, + a, + s, + u, + l, + c, + f = e && e.ownerDocument, + p = e ? e.nodeType : 9; + if ( + ((n = n || []), + "string" != typeof t || !t || (1 !== p && 9 !== p && 11 !== p)) + ) + return n; + if (!r && (T(e), (e = e || C), E)) { + if (11 !== p && (u = Z.exec(t))) + if ((i = u[1])) { + if (9 === p) { + if (!(a = e.getElementById(i))) return n; + if (a.id === i) return n.push(a), n; + } else if (f && (a = f.getElementById(i)) && y(e, a) && a.id === i) + return n.push(a), n; + } else { + if (u[2]) return H.apply(n, e.getElementsByTagName(t)), n; + if ( + (i = u[3]) && + d.getElementsByClassName && + e.getElementsByClassName + ) + return H.apply(n, e.getElementsByClassName(i)), n; + } + if ( + d.qsa && + !N[t + " "] && + (!v || !v.test(t)) && + (1 !== p || "object" !== e.nodeName.toLowerCase()) + ) { + if (((c = t), (f = e), 1 === p && (U.test(t) || z.test(t)))) { + ((f = (ee.test(t) && ye(e.parentNode)) || e) === e && d.scope) || + ((s = e.getAttribute("id")) + ? (s = s.replace(re, ie)) + : e.setAttribute("id", (s = S))), + (o = (l = h(t)).length); + while (o--) l[o] = (s ? "#" + s : ":scope") + " " + xe(l[o]); + c = l.join(","); + } + try { + return H.apply(n, f.querySelectorAll(c)), n; + } catch (e) { + N(t, !0); + } finally { + s === S && e.removeAttribute("id"); + } + } + } + return g(t.replace($, "$1"), e, n, r); + } + function ue() { + var r = []; + return function e(t, n) { + return ( + r.push(t + " ") > b.cacheLength && delete e[r.shift()], + (e[t + " "] = n) + ); + }; + } + function le(e) { + return (e[S] = !0), e; + } + function ce(e) { + var t = C.createElement("fieldset"); + try { + return !!e(t); + } catch (e) { + return !1; + } finally { + t.parentNode && t.parentNode.removeChild(t), (t = null); + } + } + function fe(e, t) { + var n = e.split("|"), + r = n.length; + while (r--) b.attrHandle[n[r]] = t; + } + function pe(e, t) { + var n = t && e, + r = + n && + 1 === e.nodeType && + 1 === t.nodeType && + e.sourceIndex - t.sourceIndex; + if (r) return r; + if (n) while ((n = n.nextSibling)) if (n === t) return -1; + return e ? 1 : -1; + } + function de(t) { + return function (e) { + return "input" === e.nodeName.toLowerCase() && e.type === t; + }; + } + function he(n) { + return function (e) { + var t = e.nodeName.toLowerCase(); + return ("input" === t || "button" === t) && e.type === n; + }; + } + function ge(t) { + return function (e) { + return "form" in e + ? e.parentNode && !1 === e.disabled + ? "label" in e + ? "label" in e.parentNode + ? e.parentNode.disabled === t + : e.disabled === t + : e.isDisabled === t || (e.isDisabled !== !t && ae(e) === t) + : e.disabled === t + : "label" in e && e.disabled === t; + }; + } + function ve(a) { + return le(function (o) { + return ( + (o = +o), + le(function (e, t) { + var n, + r = a([], e.length, o), + i = r.length; + while (i--) e[(n = r[i])] && (e[n] = !(t[n] = e[n])); + }) + ); + }); + } + function ye(e) { + return e && "undefined" != typeof e.getElementsByTagName && e; + } + for (e in ((d = se.support = {}), + (i = se.isXML = + function (e) { + var t = e.namespaceURI, + n = (e.ownerDocument || e).documentElement; + return !Y.test(t || (n && n.nodeName) || "HTML"); + }), + (T = se.setDocument = + function (e) { + var t, + n, + r = e ? e.ownerDocument || e : p; + return ( + r != C && + 9 === r.nodeType && + r.documentElement && + ((a = (C = r).documentElement), + (E = !i(C)), + p != C && + (n = C.defaultView) && + n.top !== n && + (n.addEventListener + ? n.addEventListener("unload", oe, !1) + : n.attachEvent && n.attachEvent("onunload", oe)), + (d.scope = ce(function (e) { + return ( + a.appendChild(e).appendChild(C.createElement("div")), + "undefined" != typeof e.querySelectorAll && + !e.querySelectorAll(":scope fieldset div").length + ); + })), + (d.attributes = ce(function (e) { + return (e.className = "i"), !e.getAttribute("className"); + })), + (d.getElementsByTagName = ce(function (e) { + return ( + e.appendChild(C.createComment("")), + !e.getElementsByTagName("*").length + ); + })), + (d.getElementsByClassName = K.test(C.getElementsByClassName)), + (d.getById = ce(function (e) { + return ( + (a.appendChild(e).id = S), + !C.getElementsByName || !C.getElementsByName(S).length + ); + })), + d.getById + ? ((b.filter.ID = function (e) { + var t = e.replace(te, ne); + return function (e) { + return e.getAttribute("id") === t; + }; + }), + (b.find.ID = function (e, t) { + if ("undefined" != typeof t.getElementById && E) { + var n = t.getElementById(e); + return n ? [n] : []; + } + })) + : ((b.filter.ID = function (e) { + var n = e.replace(te, ne); + return function (e) { + var t = + "undefined" != typeof e.getAttributeNode && + e.getAttributeNode("id"); + return t && t.value === n; + }; + }), + (b.find.ID = function (e, t) { + if ("undefined" != typeof t.getElementById && E) { + var n, + r, + i, + o = t.getElementById(e); + if (o) { + if ((n = o.getAttributeNode("id")) && n.value === e) + return [o]; + (i = t.getElementsByName(e)), (r = 0); + while ((o = i[r++])) + if ((n = o.getAttributeNode("id")) && n.value === e) + return [o]; + } + return []; + } + })), + (b.find.TAG = d.getElementsByTagName + ? function (e, t) { + return "undefined" != typeof t.getElementsByTagName + ? t.getElementsByTagName(e) + : d.qsa + ? t.querySelectorAll(e) + : void 0; + } + : function (e, t) { + var n, + r = [], + i = 0, + o = t.getElementsByTagName(e); + if ("*" === e) { + while ((n = o[i++])) 1 === n.nodeType && r.push(n); + return r; + } + return o; + }), + (b.find.CLASS = + d.getElementsByClassName && + function (e, t) { + if ("undefined" != typeof t.getElementsByClassName && E) + return t.getElementsByClassName(e); + }), + (s = []), + (v = []), + (d.qsa = K.test(C.querySelectorAll)) && + (ce(function (e) { + var t; + (a.appendChild(e).innerHTML = + ""), + e.querySelectorAll("[msallowcapture^='']").length && + v.push("[*^$]=" + M + "*(?:''|\"\")"), + e.querySelectorAll("[selected]").length || + v.push("\\[" + M + "*(?:value|" + R + ")"), + e.querySelectorAll("[id~=" + S + "-]").length || v.push("~="), + (t = C.createElement("input")).setAttribute("name", ""), + e.appendChild(t), + e.querySelectorAll("[name='']").length || + v.push("\\[" + M + "*name" + M + "*=" + M + "*(?:''|\"\")"), + e.querySelectorAll(":checked").length || v.push(":checked"), + e.querySelectorAll("a#" + S + "+*").length || + v.push(".#.+[+~]"), + e.querySelectorAll("\\\f"), + v.push("[\\r\\n\\f]"); + }), + ce(function (e) { + e.innerHTML = + ""; + var t = C.createElement("input"); + t.setAttribute("type", "hidden"), + e.appendChild(t).setAttribute("name", "D"), + e.querySelectorAll("[name=d]").length && + v.push("name" + M + "*[*^$|!~]?="), + 2 !== e.querySelectorAll(":enabled").length && + v.push(":enabled", ":disabled"), + (a.appendChild(e).disabled = !0), + 2 !== e.querySelectorAll(":disabled").length && + v.push(":enabled", ":disabled"), + e.querySelectorAll("*,:x"), + v.push(",.*:"); + })), + (d.matchesSelector = K.test( + (c = + a.matches || + a.webkitMatchesSelector || + a.mozMatchesSelector || + a.oMatchesSelector || + a.msMatchesSelector) + )) && + ce(function (e) { + (d.disconnectedMatch = c.call(e, "*")), + c.call(e, "[s!='']:x"), + s.push("!=", F); + }), + (v = v.length && new RegExp(v.join("|"))), + (s = s.length && new RegExp(s.join("|"))), + (t = K.test(a.compareDocumentPosition)), + (y = + t || K.test(a.contains) + ? function (e, t) { + var n = 9 === e.nodeType ? e.documentElement : e, + r = t && t.parentNode; + return ( + e === r || + !( + !r || + 1 !== r.nodeType || + !(n.contains + ? n.contains(r) + : e.compareDocumentPosition && + 16 & e.compareDocumentPosition(r)) + ) + ); + } + : function (e, t) { + if (t) while ((t = t.parentNode)) if (t === e) return !0; + return !1; + }), + (D = t + ? function (e, t) { + if (e === t) return (l = !0), 0; + var n = + !e.compareDocumentPosition - !t.compareDocumentPosition; + return ( + n || + (1 & + (n = + (e.ownerDocument || e) == (t.ownerDocument || t) + ? e.compareDocumentPosition(t) + : 1) || + (!d.sortDetached && t.compareDocumentPosition(e) === n) + ? e == C || (e.ownerDocument == p && y(p, e)) + ? -1 + : t == C || (t.ownerDocument == p && y(p, t)) + ? 1 + : u + ? P(u, e) - P(u, t) + : 0 + : 4 & n + ? -1 + : 1) + ); + } + : function (e, t) { + if (e === t) return (l = !0), 0; + var n, + r = 0, + i = e.parentNode, + o = t.parentNode, + a = [e], + s = [t]; + if (!i || !o) + return e == C + ? -1 + : t == C + ? 1 + : i + ? -1 + : o + ? 1 + : u + ? P(u, e) - P(u, t) + : 0; + if (i === o) return pe(e, t); + n = e; + while ((n = n.parentNode)) a.unshift(n); + n = t; + while ((n = n.parentNode)) s.unshift(n); + while (a[r] === s[r]) r++; + return r + ? pe(a[r], s[r]) + : a[r] == p + ? -1 + : s[r] == p + ? 1 + : 0; + })), + C + ); + }), + (se.matches = function (e, t) { + return se(e, null, null, t); + }), + (se.matchesSelector = function (e, t) { + if ( + (T(e), + d.matchesSelector && + E && + !N[t + " "] && + (!s || !s.test(t)) && + (!v || !v.test(t))) + ) + try { + var n = c.call(e, t); + if ( + n || + d.disconnectedMatch || + (e.document && 11 !== e.document.nodeType) + ) + return n; + } catch (e) { + N(t, !0); + } + return 0 < se(t, C, null, [e]).length; + }), + (se.contains = function (e, t) { + return (e.ownerDocument || e) != C && T(e), y(e, t); + }), + (se.attr = function (e, t) { + (e.ownerDocument || e) != C && T(e); + var n = b.attrHandle[t.toLowerCase()], + r = n && j.call(b.attrHandle, t.toLowerCase()) ? n(e, t, !E) : void 0; + return void 0 !== r + ? r + : d.attributes || !E + ? e.getAttribute(t) + : (r = e.getAttributeNode(t)) && r.specified + ? r.value + : null; + }), + (se.escape = function (e) { + return (e + "").replace(re, ie); + }), + (se.error = function (e) { + throw new Error("Syntax error, unrecognized expression: " + e); + }), + (se.uniqueSort = function (e) { + var t, + n = [], + r = 0, + i = 0; + if ( + ((l = !d.detectDuplicates), + (u = !d.sortStable && e.slice(0)), + e.sort(D), + l) + ) { + while ((t = e[i++])) t === e[i] && (r = n.push(i)); + while (r--) e.splice(n[r], 1); + } + return (u = null), e; + }), + (o = se.getText = + function (e) { + var t, + n = "", + r = 0, + i = e.nodeType; + if (i) { + if (1 === i || 9 === i || 11 === i) { + if ("string" == typeof e.textContent) return e.textContent; + for (e = e.firstChild; e; e = e.nextSibling) n += o(e); + } else if (3 === i || 4 === i) return e.nodeValue; + } else while ((t = e[r++])) n += o(t); + return n; + }), + ((b = se.selectors = + { + cacheLength: 50, + createPseudo: le, + match: G, + attrHandle: {}, + find: {}, + relative: { + ">": { dir: "parentNode", first: !0 }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: !0 }, + "~": { dir: "previousSibling" }, + }, + preFilter: { + ATTR: function (e) { + return ( + (e[1] = e[1].replace(te, ne)), + (e[3] = (e[3] || e[4] || e[5] || "").replace(te, ne)), + "~=" === e[2] && (e[3] = " " + e[3] + " "), + e.slice(0, 4) + ); + }, + CHILD: function (e) { + return ( + (e[1] = e[1].toLowerCase()), + "nth" === e[1].slice(0, 3) + ? (e[3] || se.error(e[0]), + (e[4] = +(e[4] + ? e[5] + (e[6] || 1) + : 2 * ("even" === e[3] || "odd" === e[3]))), + (e[5] = +(e[7] + e[8] || "odd" === e[3]))) + : e[3] && se.error(e[0]), + e + ); + }, + PSEUDO: function (e) { + var t, + n = !e[6] && e[2]; + return G.CHILD.test(e[0]) + ? null + : (e[3] + ? (e[2] = e[4] || e[5] || "") + : n && + X.test(n) && + (t = h(n, !0)) && + (t = n.indexOf(")", n.length - t) - n.length) && + ((e[0] = e[0].slice(0, t)), (e[2] = n.slice(0, t))), + e.slice(0, 3)); + }, + }, + filter: { + TAG: function (e) { + var t = e.replace(te, ne).toLowerCase(); + return "*" === e + ? function () { + return !0; + } + : function (e) { + return e.nodeName && e.nodeName.toLowerCase() === t; + }; + }, + CLASS: function (e) { + var t = m[e + " "]; + return ( + t || + ((t = new RegExp("(^|" + M + ")" + e + "(" + M + "|$)")) && + m(e, function (e) { + return t.test( + ("string" == typeof e.className && e.className) || + ("undefined" != typeof e.getAttribute && + e.getAttribute("class")) || + "" + ); + })) + ); + }, + ATTR: function (n, r, i) { + return function (e) { + var t = se.attr(e, n); + return null == t + ? "!=" === r + : !r || + ((t += ""), + "=" === r + ? t === i + : "!=" === r + ? t !== i + : "^=" === r + ? i && 0 === t.indexOf(i) + : "*=" === r + ? i && -1 < t.indexOf(i) + : "$=" === r + ? i && t.slice(-i.length) === i + : "~=" === r + ? -1 < (" " + t.replace(B, " ") + " ").indexOf(i) + : "|=" === r && + (t === i || t.slice(0, i.length + 1) === i + "-")); + }; + }, + CHILD: function (h, e, t, g, v) { + var y = "nth" !== h.slice(0, 3), + m = "last" !== h.slice(-4), + x = "of-type" === e; + return 1 === g && 0 === v + ? function (e) { + return !!e.parentNode; + } + : function (e, t, n) { + var r, + i, + o, + a, + s, + u, + l = y !== m ? "nextSibling" : "previousSibling", + c = e.parentNode, + f = x && e.nodeName.toLowerCase(), + p = !n && !x, + d = !1; + if (c) { + if (y) { + while (l) { + a = e; + while ((a = a[l])) + if ( + x + ? a.nodeName.toLowerCase() === f + : 1 === a.nodeType + ) + return !1; + u = l = "only" === h && !u && "nextSibling"; + } + return !0; + } + if (((u = [m ? c.firstChild : c.lastChild]), m && p)) { + (d = + (s = + (r = + (i = + (o = (a = c)[S] || (a[S] = {}))[a.uniqueID] || + (o[a.uniqueID] = {}))[h] || [])[0] === k && + r[1]) && r[2]), + (a = s && c.childNodes[s]); + while ((a = (++s && a && a[l]) || (d = s = 0) || u.pop())) + if (1 === a.nodeType && ++d && a === e) { + i[h] = [k, s, d]; + break; + } + } else if ( + (p && + (d = s = + (r = + (i = + (o = (a = e)[S] || (a[S] = {}))[a.uniqueID] || + (o[a.uniqueID] = {}))[h] || [])[0] === k && r[1]), + !1 === d) + ) + while ((a = (++s && a && a[l]) || (d = s = 0) || u.pop())) + if ( + (x + ? a.nodeName.toLowerCase() === f + : 1 === a.nodeType) && + ++d && + (p && + ((i = + (o = a[S] || (a[S] = {}))[a.uniqueID] || + (o[a.uniqueID] = {}))[h] = [k, d]), + a === e) + ) + break; + return (d -= v) === g || (d % g == 0 && 0 <= d / g); + } + }; + }, + PSEUDO: function (e, o) { + var t, + a = + b.pseudos[e] || + b.setFilters[e.toLowerCase()] || + se.error("unsupported pseudo: " + e); + return a[S] + ? a(o) + : 1 < a.length + ? ((t = [e, e, "", o]), + b.setFilters.hasOwnProperty(e.toLowerCase()) + ? le(function (e, t) { + var n, + r = a(e, o), + i = r.length; + while (i--) e[(n = P(e, r[i]))] = !(t[n] = r[i]); + }) + : function (e) { + return a(e, 0, t); + }) + : a; + }, + }, + pseudos: { + not: le(function (e) { + var r = [], + i = [], + s = f(e.replace($, "$1")); + return s[S] + ? le(function (e, t, n, r) { + var i, + o = s(e, null, r, []), + a = e.length; + while (a--) (i = o[a]) && (e[a] = !(t[a] = i)); + }) + : function (e, t, n) { + return (r[0] = e), s(r, null, n, i), (r[0] = null), !i.pop(); + }; + }), + has: le(function (t) { + return function (e) { + return 0 < se(t, e).length; + }; + }), + contains: le(function (t) { + return ( + (t = t.replace(te, ne)), + function (e) { + return -1 < (e.textContent || o(e)).indexOf(t); + } + ); + }), + lang: le(function (n) { + return ( + V.test(n || "") || se.error("unsupported lang: " + n), + (n = n.replace(te, ne).toLowerCase()), + function (e) { + var t; + do { + if ( + (t = E + ? e.lang + : e.getAttribute("xml:lang") || e.getAttribute("lang")) + ) + return ( + (t = t.toLowerCase()) === n || 0 === t.indexOf(n + "-") + ); + } while ((e = e.parentNode) && 1 === e.nodeType); + return !1; + } + ); + }), + target: function (e) { + var t = n.location && n.location.hash; + return t && t.slice(1) === e.id; + }, + root: function (e) { + return e === a; + }, + focus: function (e) { + return ( + e === C.activeElement && + (!C.hasFocus || C.hasFocus()) && + !!(e.type || e.href || ~e.tabIndex) + ); + }, + enabled: ge(!1), + disabled: ge(!0), + checked: function (e) { + var t = e.nodeName.toLowerCase(); + return ( + ("input" === t && !!e.checked) || ("option" === t && !!e.selected) + ); + }, + selected: function (e) { + return ( + e.parentNode && e.parentNode.selectedIndex, !0 === e.selected + ); + }, + empty: function (e) { + for (e = e.firstChild; e; e = e.nextSibling) + if (e.nodeType < 6) return !1; + return !0; + }, + parent: function (e) { + return !b.pseudos.empty(e); + }, + header: function (e) { + return J.test(e.nodeName); + }, + input: function (e) { + return Q.test(e.nodeName); + }, + button: function (e) { + var t = e.nodeName.toLowerCase(); + return ("input" === t && "button" === e.type) || "button" === t; + }, + text: function (e) { + var t; + return ( + "input" === e.nodeName.toLowerCase() && + "text" === e.type && + (null == (t = e.getAttribute("type")) || + "text" === t.toLowerCase()) + ); + }, + first: ve(function () { + return [0]; + }), + last: ve(function (e, t) { + return [t - 1]; + }), + eq: ve(function (e, t, n) { + return [n < 0 ? n + t : n]; + }), + even: ve(function (e, t) { + for (var n = 0; n < t; n += 2) e.push(n); + return e; + }), + odd: ve(function (e, t) { + for (var n = 1; n < t; n += 2) e.push(n); + return e; + }), + lt: ve(function (e, t, n) { + for (var r = n < 0 ? n + t : t < n ? t : n; 0 <= --r; ) e.push(r); + return e; + }), + gt: ve(function (e, t, n) { + for (var r = n < 0 ? n + t : n; ++r < t; ) e.push(r); + return e; + }), + }, + }).pseudos.nth = b.pseudos.eq), + { radio: !0, checkbox: !0, file: !0, password: !0, image: !0 })) + b.pseudos[e] = de(e); + for (e in { submit: !0, reset: !0 }) b.pseudos[e] = he(e); + function me() {} + function xe(e) { + for (var t = 0, n = e.length, r = ""; t < n; t++) r += e[t].value; + return r; + } + function be(s, e, t) { + var u = e.dir, + l = e.next, + c = l || u, + f = t && "parentNode" === c, + p = r++; + return e.first + ? function (e, t, n) { + while ((e = e[u])) if (1 === e.nodeType || f) return s(e, t, n); + return !1; + } + : function (e, t, n) { + var r, + i, + o, + a = [k, p]; + if (n) { + while ((e = e[u])) + if ((1 === e.nodeType || f) && s(e, t, n)) return !0; + } else + while ((e = e[u])) + if (1 === e.nodeType || f) + if ( + ((i = + (o = e[S] || (e[S] = {}))[e.uniqueID] || + (o[e.uniqueID] = {})), + l && l === e.nodeName.toLowerCase()) + ) + e = e[u] || e; + else { + if ((r = i[c]) && r[0] === k && r[1] === p) + return (a[2] = r[2]); + if (((i[c] = a)[2] = s(e, t, n))) return !0; + } + return !1; + }; + } + function we(i) { + return 1 < i.length + ? function (e, t, n) { + var r = i.length; + while (r--) if (!i[r](e, t, n)) return !1; + return !0; + } + : i[0]; + } + function Te(e, t, n, r, i) { + for (var o, a = [], s = 0, u = e.length, l = null != t; s < u; s++) + (o = e[s]) && ((n && !n(o, r, i)) || (a.push(o), l && t.push(s))); + return a; + } + function Ce(d, h, g, v, y, e) { + return ( + v && !v[S] && (v = Ce(v)), + y && !y[S] && (y = Ce(y, e)), + le(function (e, t, n, r) { + var i, + o, + a, + s = [], + u = [], + l = t.length, + c = + e || + (function (e, t, n) { + for (var r = 0, i = t.length; r < i; r++) se(e, t[r], n); + return n; + })(h || "*", n.nodeType ? [n] : n, []), + f = !d || (!e && h) ? c : Te(c, s, d, n, r), + p = g ? (y || (e ? d : l || v) ? [] : t) : f; + if ((g && g(f, p, n, r), v)) { + (i = Te(p, u)), v(i, [], n, r), (o = i.length); + while (o--) (a = i[o]) && (p[u[o]] = !(f[u[o]] = a)); + } + if (e) { + if (y || d) { + if (y) { + (i = []), (o = p.length); + while (o--) (a = p[o]) && i.push((f[o] = a)); + y(null, (p = []), i, r); + } + o = p.length; + while (o--) + (a = p[o]) && + -1 < (i = y ? P(e, a) : s[o]) && + (e[i] = !(t[i] = a)); + } + } else (p = Te(p === t ? p.splice(l, p.length) : p)), y ? y(null, t, p, r) : H.apply(t, p); + }) + ); + } + function Ee(e) { + for ( + var i, + t, + n, + r = e.length, + o = b.relative[e[0].type], + a = o || b.relative[" "], + s = o ? 1 : 0, + u = be( + function (e) { + return e === i; + }, + a, + !0 + ), + l = be( + function (e) { + return -1 < P(i, e); + }, + a, + !0 + ), + c = [ + function (e, t, n) { + var r = + (!o && (n || t !== w)) || + ((i = t).nodeType ? u(e, t, n) : l(e, t, n)); + return (i = null), r; + }, + ]; + s < r; + s++ + ) + if ((t = b.relative[e[s].type])) c = [be(we(c), t)]; + else { + if ((t = b.filter[e[s].type].apply(null, e[s].matches))[S]) { + for (n = ++s; n < r; n++) if (b.relative[e[n].type]) break; + return Ce( + 1 < s && we(c), + 1 < s && + xe( + e + .slice(0, s - 1) + .concat({ value: " " === e[s - 2].type ? "*" : "" }) + ).replace($, "$1"), + t, + s < n && Ee(e.slice(s, n)), + n < r && Ee((e = e.slice(n))), + n < r && xe(e) + ); + } + c.push(t); + } + return we(c); + } + return ( + (me.prototype = b.filters = b.pseudos), + (b.setFilters = new me()), + (h = se.tokenize = + function (e, t) { + var n, + r, + i, + o, + a, + s, + u, + l = x[e + " "]; + if (l) return t ? 0 : l.slice(0); + (a = e), (s = []), (u = b.preFilter); + while (a) { + for (o in ((n && !(r = _.exec(a))) || + (r && (a = a.slice(r[0].length) || a), s.push((i = []))), + (n = !1), + (r = z.exec(a)) && + ((n = r.shift()), + i.push({ value: n, type: r[0].replace($, " ") }), + (a = a.slice(n.length))), + b.filter)) + !(r = G[o].exec(a)) || + (u[o] && !(r = u[o](r))) || + ((n = r.shift()), + i.push({ value: n, type: o, matches: r }), + (a = a.slice(n.length))); + if (!n) break; + } + return t ? a.length : a ? se.error(e) : x(e, s).slice(0); + }), + (f = se.compile = + function (e, t) { + var n, + v, + y, + m, + x, + r, + i = [], + o = [], + a = A[e + " "]; + if (!a) { + t || (t = h(e)), (n = t.length); + while (n--) (a = Ee(t[n]))[S] ? i.push(a) : o.push(a); + (a = A( + e, + ((v = o), + (m = 0 < (y = i).length), + (x = 0 < v.length), + (r = function (e, t, n, r, i) { + var o, + a, + s, + u = 0, + l = "0", + c = e && [], + f = [], + p = w, + d = e || (x && b.find.TAG("*", i)), + h = (k += null == p ? 1 : Math.random() || 0.1), + g = d.length; + for ( + i && (w = t == C || t || i); + l !== g && null != (o = d[l]); + l++ + ) { + if (x && o) { + (a = 0), t || o.ownerDocument == C || (T(o), (n = !E)); + while ((s = v[a++])) + if (s(o, t || C, n)) { + r.push(o); + break; + } + i && (k = h); + } + m && ((o = !s && o) && u--, e && c.push(o)); + } + if (((u += l), m && l !== u)) { + a = 0; + while ((s = y[a++])) s(c, f, t, n); + if (e) { + if (0 < u) while (l--) c[l] || f[l] || (f[l] = q.call(r)); + f = Te(f); + } + H.apply(r, f), + i && + !e && + 0 < f.length && + 1 < u + y.length && + se.uniqueSort(r); + } + return i && ((k = h), (w = p)), c; + }), + m ? le(r) : r) + )).selector = e; + } + return a; + }), + (g = se.select = + function (e, t, n, r) { + var i, + o, + a, + s, + u, + l = "function" == typeof e && e, + c = !r && h((e = l.selector || e)); + if (((n = n || []), 1 === c.length)) { + if ( + 2 < (o = c[0] = c[0].slice(0)).length && + "ID" === (a = o[0]).type && + 9 === t.nodeType && + E && + b.relative[o[1].type] + ) { + if (!(t = (b.find.ID(a.matches[0].replace(te, ne), t) || [])[0])) + return n; + l && (t = t.parentNode), (e = e.slice(o.shift().value.length)); + } + i = G.needsContext.test(e) ? 0 : o.length; + while (i--) { + if (((a = o[i]), b.relative[(s = a.type)])) break; + if ( + (u = b.find[s]) && + (r = u( + a.matches[0].replace(te, ne), + (ee.test(o[0].type) && ye(t.parentNode)) || t + )) + ) { + if ((o.splice(i, 1), !(e = r.length && xe(o)))) + return H.apply(n, r), n; + break; + } + } + } + return ( + (l || f(e, c))( + r, + t, + !E, + n, + !t || (ee.test(e) && ye(t.parentNode)) || t + ), + n + ); + }), + (d.sortStable = S.split("").sort(D).join("") === S), + (d.detectDuplicates = !!l), + T(), + (d.sortDetached = ce(function (e) { + return 1 & e.compareDocumentPosition(C.createElement("fieldset")); + })), + ce(function (e) { + return ( + (e.innerHTML = ""), + "#" === e.firstChild.getAttribute("href") + ); + }) || + fe("type|href|height|width", function (e, t, n) { + if (!n) return e.getAttribute(t, "type" === t.toLowerCase() ? 1 : 2); + }), + (d.attributes && + ce(function (e) { + return ( + (e.innerHTML = ""), + e.firstChild.setAttribute("value", ""), + "" === e.firstChild.getAttribute("value") + ); + })) || + fe("value", function (e, t, n) { + if (!n && "input" === e.nodeName.toLowerCase()) return e.defaultValue; + }), + ce(function (e) { + return null == e.getAttribute("disabled"); + }) || + fe(R, function (e, t, n) { + var r; + if (!n) + return !0 === e[t] + ? t.toLowerCase() + : (r = e.getAttributeNode(t)) && r.specified + ? r.value + : null; + }), + se + ); + })(C); + (S.find = d), + (S.expr = d.selectors), + (S.expr[":"] = S.expr.pseudos), + (S.uniqueSort = S.unique = d.uniqueSort), + (S.text = d.getText), + (S.isXMLDoc = d.isXML), + (S.contains = d.contains), + (S.escapeSelector = d.escape); + var h = function (e, t, n) { + var r = [], + i = void 0 !== n; + while ((e = e[t]) && 9 !== e.nodeType) + if (1 === e.nodeType) { + if (i && S(e).is(n)) break; + r.push(e); + } + return r; + }, + T = function (e, t) { + for (var n = []; e; e = e.nextSibling) + 1 === e.nodeType && e !== t && n.push(e); + return n; + }, + k = S.expr.match.needsContext; + function A(e, t) { + return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase(); + } + var N = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i; + function D(e, n, r) { + return m(n) + ? S.grep(e, function (e, t) { + return !!n.call(e, t, e) !== r; + }) + : n.nodeType + ? S.grep(e, function (e) { + return (e === n) !== r; + }) + : "string" != typeof n + ? S.grep(e, function (e) { + return -1 < i.call(n, e) !== r; + }) + : S.filter(n, e, r); + } + (S.filter = function (e, t, n) { + var r = t[0]; + return ( + n && (e = ":not(" + e + ")"), + 1 === t.length && 1 === r.nodeType + ? S.find.matchesSelector(r, e) + ? [r] + : [] + : S.find.matches( + e, + S.grep(t, function (e) { + return 1 === e.nodeType; + }) + ) + ); + }), + S.fn.extend({ + find: function (e) { + var t, + n, + r = this.length, + i = this; + if ("string" != typeof e) + return this.pushStack( + S(e).filter(function () { + for (t = 0; t < r; t++) if (S.contains(i[t], this)) return !0; + }) + ); + for (n = this.pushStack([]), t = 0; t < r; t++) S.find(e, i[t], n); + return 1 < r ? S.uniqueSort(n) : n; + }, + filter: function (e) { + return this.pushStack(D(this, e || [], !1)); + }, + not: function (e) { + return this.pushStack(D(this, e || [], !0)); + }, + is: function (e) { + return !!D(this, "string" == typeof e && k.test(e) ? S(e) : e || [], !1) + .length; + }, + }); + var j, + q = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/; + ((S.fn.init = function (e, t, n) { + var r, i; + if (!e) return this; + if (((n = n || j), "string" == typeof e)) { + if ( + !(r = + "<" === e[0] && ">" === e[e.length - 1] && 3 <= e.length + ? [null, e, null] + : q.exec(e)) || + (!r[1] && t) + ) + return !t || t.jquery ? (t || n).find(e) : this.constructor(t).find(e); + if (r[1]) { + if ( + ((t = t instanceof S ? t[0] : t), + S.merge( + this, + S.parseHTML(r[1], t && t.nodeType ? t.ownerDocument || t : E, !0) + ), + N.test(r[1]) && S.isPlainObject(t)) + ) + for (r in t) m(this[r]) ? this[r](t[r]) : this.attr(r, t[r]); + return this; + } + return ( + (i = E.getElementById(r[2])) && ((this[0] = i), (this.length = 1)), this + ); + } + return e.nodeType + ? ((this[0] = e), (this.length = 1), this) + : m(e) + ? void 0 !== n.ready + ? n.ready(e) + : e(S) + : S.makeArray(e, this); + }).prototype = S.fn), + (j = S(E)); + var L = /^(?:parents|prev(?:Until|All))/, + H = { children: !0, contents: !0, next: !0, prev: !0 }; + function O(e, t) { + while ((e = e[t]) && 1 !== e.nodeType); + return e; + } + S.fn.extend({ + has: function (e) { + var t = S(e, this), + n = t.length; + return this.filter(function () { + for (var e = 0; e < n; e++) if (S.contains(this, t[e])) return !0; + }); + }, + closest: function (e, t) { + var n, + r = 0, + i = this.length, + o = [], + a = "string" != typeof e && S(e); + if (!k.test(e)) + for (; r < i; r++) + for (n = this[r]; n && n !== t; n = n.parentNode) + if ( + n.nodeType < 11 && + (a + ? -1 < a.index(n) + : 1 === n.nodeType && S.find.matchesSelector(n, e)) + ) { + o.push(n); + break; + } + return this.pushStack(1 < o.length ? S.uniqueSort(o) : o); + }, + index: function (e) { + return e + ? "string" == typeof e + ? i.call(S(e), this[0]) + : i.call(this, e.jquery ? e[0] : e) + : this[0] && this[0].parentNode + ? this.first().prevAll().length + : -1; + }, + add: function (e, t) { + return this.pushStack(S.uniqueSort(S.merge(this.get(), S(e, t)))); + }, + addBack: function (e) { + return this.add(null == e ? this.prevObject : this.prevObject.filter(e)); + }, + }), + S.each( + { + parent: function (e) { + var t = e.parentNode; + return t && 11 !== t.nodeType ? t : null; + }, + parents: function (e) { + return h(e, "parentNode"); + }, + parentsUntil: function (e, t, n) { + return h(e, "parentNode", n); + }, + next: function (e) { + return O(e, "nextSibling"); + }, + prev: function (e) { + return O(e, "previousSibling"); + }, + nextAll: function (e) { + return h(e, "nextSibling"); + }, + prevAll: function (e) { + return h(e, "previousSibling"); + }, + nextUntil: function (e, t, n) { + return h(e, "nextSibling", n); + }, + prevUntil: function (e, t, n) { + return h(e, "previousSibling", n); + }, + siblings: function (e) { + return T((e.parentNode || {}).firstChild, e); + }, + children: function (e) { + return T(e.firstChild); + }, + contents: function (e) { + return null != e.contentDocument && r(e.contentDocument) + ? e.contentDocument + : (A(e, "template") && (e = e.content || e), + S.merge([], e.childNodes)); + }, + }, + function (r, i) { + S.fn[r] = function (e, t) { + var n = S.map(this, i, e); + return ( + "Until" !== r.slice(-5) && (t = e), + t && "string" == typeof t && (n = S.filter(t, n)), + 1 < this.length && + (H[r] || S.uniqueSort(n), L.test(r) && n.reverse()), + this.pushStack(n) + ); + }; + } + ); + var P = /[^\x20\t\r\n\f]+/g; + function R(e) { + return e; + } + function M(e) { + throw e; + } + function I(e, t, n, r) { + var i; + try { + e && m((i = e.promise)) + ? i.call(e).done(t).fail(n) + : e && m((i = e.then)) + ? i.call(e, t, n) + : t.apply(void 0, [e].slice(r)); + } catch (e) { + n.apply(void 0, [e]); + } + } + (S.Callbacks = function (r) { + var e, n; + r = + "string" == typeof r + ? ((e = r), + (n = {}), + S.each(e.match(P) || [], function (e, t) { + n[t] = !0; + }), + n) + : S.extend({}, r); + var i, + t, + o, + a, + s = [], + u = [], + l = -1, + c = function () { + for (a = a || r.once, o = i = !0; u.length; l = -1) { + t = u.shift(); + while (++l < s.length) + !1 === s[l].apply(t[0], t[1]) && + r.stopOnFalse && + ((l = s.length), (t = !1)); + } + r.memory || (t = !1), (i = !1), a && (s = t ? [] : ""); + }, + f = { + add: function () { + return ( + s && + (t && !i && ((l = s.length - 1), u.push(t)), + (function n(e) { + S.each(e, function (e, t) { + m(t) + ? (r.unique && f.has(t)) || s.push(t) + : t && t.length && "string" !== w(t) && n(t); + }); + })(arguments), + t && !i && c()), + this + ); + }, + remove: function () { + return ( + S.each(arguments, function (e, t) { + var n; + while (-1 < (n = S.inArray(t, s, n))) + s.splice(n, 1), n <= l && l--; + }), + this + ); + }, + has: function (e) { + return e ? -1 < S.inArray(e, s) : 0 < s.length; + }, + empty: function () { + return s && (s = []), this; + }, + disable: function () { + return (a = u = []), (s = t = ""), this; + }, + disabled: function () { + return !s; + }, + lock: function () { + return (a = u = []), t || i || (s = t = ""), this; + }, + locked: function () { + return !!a; + }, + fireWith: function (e, t) { + return ( + a || + ((t = [e, (t = t || []).slice ? t.slice() : t]), + u.push(t), + i || c()), + this + ); + }, + fire: function () { + return f.fireWith(this, arguments), this; + }, + fired: function () { + return !!o; + }, + }; + return f; + }), + S.extend({ + Deferred: function (e) { + var o = [ + [ + "notify", + "progress", + S.Callbacks("memory"), + S.Callbacks("memory"), + 2, + ], + [ + "resolve", + "done", + S.Callbacks("once memory"), + S.Callbacks("once memory"), + 0, + "resolved", + ], + [ + "reject", + "fail", + S.Callbacks("once memory"), + S.Callbacks("once memory"), + 1, + "rejected", + ], + ], + i = "pending", + a = { + state: function () { + return i; + }, + always: function () { + return s.done(arguments).fail(arguments), this; + }, + catch: function (e) { + return a.then(null, e); + }, + pipe: function () { + var i = arguments; + return S.Deferred(function (r) { + S.each(o, function (e, t) { + var n = m(i[t[4]]) && i[t[4]]; + s[t[1]](function () { + var e = n && n.apply(this, arguments); + e && m(e.promise) + ? e + .promise() + .progress(r.notify) + .done(r.resolve) + .fail(r.reject) + : r[t[0] + "With"](this, n ? [e] : arguments); + }); + }), + (i = null); + }).promise(); + }, + then: function (t, n, r) { + var u = 0; + function l(i, o, a, s) { + return function () { + var n = this, + r = arguments, + e = function () { + var e, t; + if (!(i < u)) { + if ((e = a.apply(n, r)) === o.promise()) + throw new TypeError("Thenable self-resolution"); + (t = + e && + ("object" == typeof e || "function" == typeof e) && + e.then), + m(t) + ? s + ? t.call(e, l(u, o, R, s), l(u, o, M, s)) + : (u++, + t.call( + e, + l(u, o, R, s), + l(u, o, M, s), + l(u, o, R, o.notifyWith) + )) + : (a !== R && ((n = void 0), (r = [e])), + (s || o.resolveWith)(n, r)); + } + }, + t = s + ? e + : function () { + try { + e(); + } catch (e) { + S.Deferred.exceptionHook && + S.Deferred.exceptionHook(e, t.stackTrace), + u <= i + 1 && + (a !== M && ((n = void 0), (r = [e])), + o.rejectWith(n, r)); + } + }; + i + ? t() + : (S.Deferred.getStackHook && + (t.stackTrace = S.Deferred.getStackHook()), + C.setTimeout(t)); + }; + } + return S.Deferred(function (e) { + o[0][3].add(l(0, e, m(r) ? r : R, e.notifyWith)), + o[1][3].add(l(0, e, m(t) ? t : R)), + o[2][3].add(l(0, e, m(n) ? n : M)); + }).promise(); + }, + promise: function (e) { + return null != e ? S.extend(e, a) : a; + }, + }, + s = {}; + return ( + S.each(o, function (e, t) { + var n = t[2], + r = t[5]; + (a[t[1]] = n.add), + r && + n.add( + function () { + i = r; + }, + o[3 - e][2].disable, + o[3 - e][3].disable, + o[0][2].lock, + o[0][3].lock + ), + n.add(t[3].fire), + (s[t[0]] = function () { + return ( + s[t[0] + "With"](this === s ? void 0 : this, arguments), this + ); + }), + (s[t[0] + "With"] = n.fireWith); + }), + a.promise(s), + e && e.call(s, s), + s + ); + }, + when: function (e) { + var n = arguments.length, + t = n, + r = Array(t), + i = s.call(arguments), + o = S.Deferred(), + a = function (t) { + return function (e) { + (r[t] = this), + (i[t] = 1 < arguments.length ? s.call(arguments) : e), + --n || o.resolveWith(r, i); + }; + }; + if ( + n <= 1 && + (I(e, o.done(a(t)).resolve, o.reject, !n), + "pending" === o.state() || m(i[t] && i[t].then)) + ) + return o.then(); + while (t--) I(i[t], a(t), o.reject); + return o.promise(); + }, + }); + var W = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; + (S.Deferred.exceptionHook = function (e, t) { + C.console && + C.console.warn && + e && + W.test(e.name) && + C.console.warn("jQuery.Deferred exception: " + e.message, e.stack, t); + }), + (S.readyException = function (e) { + C.setTimeout(function () { + throw e; + }); + }); + var F = S.Deferred(); + function B() { + E.removeEventListener("DOMContentLoaded", B), + C.removeEventListener("load", B), + S.ready(); + } + (S.fn.ready = function (e) { + return ( + F.then(e)["catch"](function (e) { + S.readyException(e); + }), + this + ); + }), + S.extend({ + isReady: !1, + readyWait: 1, + ready: function (e) { + (!0 === e ? --S.readyWait : S.isReady) || + ((S.isReady = !0) !== e && 0 < --S.readyWait) || + F.resolveWith(E, [S]); + }, + }), + (S.ready.then = F.then), + "complete" === E.readyState || + ("loading" !== E.readyState && !E.documentElement.doScroll) + ? C.setTimeout(S.ready) + : (E.addEventListener("DOMContentLoaded", B), + C.addEventListener("load", B)); + var $ = function (e, t, n, r, i, o, a) { + var s = 0, + u = e.length, + l = null == n; + if ("object" === w(n)) + for (s in ((i = !0), n)) $(e, t, s, n[s], !0, o, a); + else if ( + void 0 !== r && + ((i = !0), + m(r) || (a = !0), + l && + (a + ? (t.call(e, r), (t = null)) + : ((l = t), + (t = function (e, t, n) { + return l.call(S(e), n); + }))), + t) + ) + for (; s < u; s++) t(e[s], n, a ? r : r.call(e[s], s, t(e[s], n))); + return i ? e : l ? t.call(e) : u ? t(e[0], n) : o; + }, + _ = /^-ms-/, + z = /-([a-z])/g; + function U(e, t) { + return t.toUpperCase(); + } + function X(e) { + return e.replace(_, "ms-").replace(z, U); + } + var V = function (e) { + return 1 === e.nodeType || 9 === e.nodeType || !+e.nodeType; + }; + function G() { + this.expando = S.expando + G.uid++; + } + (G.uid = 1), + (G.prototype = { + cache: function (e) { + var t = e[this.expando]; + return ( + t || + ((t = {}), + V(e) && + (e.nodeType + ? (e[this.expando] = t) + : Object.defineProperty(e, this.expando, { + value: t, + configurable: !0, + }))), + t + ); + }, + set: function (e, t, n) { + var r, + i = this.cache(e); + if ("string" == typeof t) i[X(t)] = n; + else for (r in t) i[X(r)] = t[r]; + return i; + }, + get: function (e, t) { + return void 0 === t + ? this.cache(e) + : e[this.expando] && e[this.expando][X(t)]; + }, + access: function (e, t, n) { + return void 0 === t || (t && "string" == typeof t && void 0 === n) + ? this.get(e, t) + : (this.set(e, t, n), void 0 !== n ? n : t); + }, + remove: function (e, t) { + var n, + r = e[this.expando]; + if (void 0 !== r) { + if (void 0 !== t) { + n = (t = Array.isArray(t) + ? t.map(X) + : (t = X(t)) in r + ? [t] + : t.match(P) || []).length; + while (n--) delete r[t[n]]; + } + (void 0 === t || S.isEmptyObject(r)) && + (e.nodeType ? (e[this.expando] = void 0) : delete e[this.expando]); + } + }, + hasData: function (e) { + var t = e[this.expando]; + return void 0 !== t && !S.isEmptyObject(t); + }, + }); + var Y = new G(), + Q = new G(), + J = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, + K = /[A-Z]/g; + function Z(e, t, n) { + var r, i; + if (void 0 === n && 1 === e.nodeType) + if ( + ((r = "data-" + t.replace(K, "-$&").toLowerCase()), + "string" == typeof (n = e.getAttribute(r))) + ) { + try { + n = + "true" === (i = n) || + ("false" !== i && + ("null" === i + ? null + : i === +i + "" + ? +i + : J.test(i) + ? JSON.parse(i) + : i)); + } catch (e) {} + Q.set(e, t, n); + } else n = void 0; + return n; + } + S.extend({ + hasData: function (e) { + return Q.hasData(e) || Y.hasData(e); + }, + data: function (e, t, n) { + return Q.access(e, t, n); + }, + removeData: function (e, t) { + Q.remove(e, t); + }, + _data: function (e, t, n) { + return Y.access(e, t, n); + }, + _removeData: function (e, t) { + Y.remove(e, t); + }, + }), + S.fn.extend({ + data: function (n, e) { + var t, + r, + i, + o = this[0], + a = o && o.attributes; + if (void 0 === n) { + if ( + this.length && + ((i = Q.get(o)), 1 === o.nodeType && !Y.get(o, "hasDataAttrs")) + ) { + t = a.length; + while (t--) + a[t] && + 0 === (r = a[t].name).indexOf("data-") && + ((r = X(r.slice(5))), Z(o, r, i[r])); + Y.set(o, "hasDataAttrs", !0); + } + return i; + } + return "object" == typeof n + ? this.each(function () { + Q.set(this, n); + }) + : $( + this, + function (e) { + var t; + if (o && void 0 === e) + return void 0 !== (t = Q.get(o, n)) + ? t + : void 0 !== (t = Z(o, n)) + ? t + : void 0; + this.each(function () { + Q.set(this, n, e); + }); + }, + null, + e, + 1 < arguments.length, + null, + !0 + ); + }, + removeData: function (e) { + return this.each(function () { + Q.remove(this, e); + }); + }, + }), + S.extend({ + queue: function (e, t, n) { + var r; + if (e) + return ( + (t = (t || "fx") + "queue"), + (r = Y.get(e, t)), + n && + (!r || Array.isArray(n) + ? (r = Y.access(e, t, S.makeArray(n))) + : r.push(n)), + r || [] + ); + }, + dequeue: function (e, t) { + t = t || "fx"; + var n = S.queue(e, t), + r = n.length, + i = n.shift(), + o = S._queueHooks(e, t); + "inprogress" === i && ((i = n.shift()), r--), + i && + ("fx" === t && n.unshift("inprogress"), + delete o.stop, + i.call( + e, + function () { + S.dequeue(e, t); + }, + o + )), + !r && o && o.empty.fire(); + }, + _queueHooks: function (e, t) { + var n = t + "queueHooks"; + return ( + Y.get(e, n) || + Y.access(e, n, { + empty: S.Callbacks("once memory").add(function () { + Y.remove(e, [t + "queue", n]); + }), + }) + ); + }, + }), + S.fn.extend({ + queue: function (t, n) { + var e = 2; + return ( + "string" != typeof t && ((n = t), (t = "fx"), e--), + arguments.length < e + ? S.queue(this[0], t) + : void 0 === n + ? this + : this.each(function () { + var e = S.queue(this, t, n); + S._queueHooks(this, t), + "fx" === t && "inprogress" !== e[0] && S.dequeue(this, t); + }) + ); + }, + dequeue: function (e) { + return this.each(function () { + S.dequeue(this, e); + }); + }, + clearQueue: function (e) { + return this.queue(e || "fx", []); + }, + promise: function (e, t) { + var n, + r = 1, + i = S.Deferred(), + o = this, + a = this.length, + s = function () { + --r || i.resolveWith(o, [o]); + }; + "string" != typeof e && ((t = e), (e = void 0)), (e = e || "fx"); + while (a--) + (n = Y.get(o[a], e + "queueHooks")) && + n.empty && + (r++, n.empty.add(s)); + return s(), i.promise(t); + }, + }); + var ee = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, + te = new RegExp("^(?:([+-])=|)(" + ee + ")([a-z%]*)$", "i"), + ne = ["Top", "Right", "Bottom", "Left"], + re = E.documentElement, + ie = function (e) { + return S.contains(e.ownerDocument, e); + }, + oe = { composed: !0 }; + re.getRootNode && + (ie = function (e) { + return ( + S.contains(e.ownerDocument, e) || e.getRootNode(oe) === e.ownerDocument + ); + }); + var ae = function (e, t) { + return ( + "none" === (e = t || e).style.display || + ("" === e.style.display && ie(e) && "none" === S.css(e, "display")) + ); + }; + function se(e, t, n, r) { + var i, + o, + a = 20, + s = r + ? function () { + return r.cur(); + } + : function () { + return S.css(e, t, ""); + }, + u = s(), + l = (n && n[3]) || (S.cssNumber[t] ? "" : "px"), + c = + e.nodeType && + (S.cssNumber[t] || ("px" !== l && +u)) && + te.exec(S.css(e, t)); + if (c && c[3] !== l) { + (u /= 2), (l = l || c[3]), (c = +u || 1); + while (a--) + S.style(e, t, c + l), + (1 - o) * (1 - (o = s() / u || 0.5)) <= 0 && (a = 0), + (c /= o); + (c *= 2), S.style(e, t, c + l), (n = n || []); + } + return ( + n && + ((c = +c || +u || 0), + (i = n[1] ? c + (n[1] + 1) * n[2] : +n[2]), + r && ((r.unit = l), (r.start = c), (r.end = i))), + i + ); + } + var ue = {}; + function le(e, t) { + for (var n, r, i, o, a, s, u, l = [], c = 0, f = e.length; c < f; c++) + (r = e[c]).style && + ((n = r.style.display), + t + ? ("none" === n && + ((l[c] = Y.get(r, "display") || null), + l[c] || (r.style.display = "")), + "" === r.style.display && + ae(r) && + (l[c] = + ((u = a = o = void 0), + (a = (i = r).ownerDocument), + (s = i.nodeName), + (u = ue[s]) || + ((o = a.body.appendChild(a.createElement(s))), + (u = S.css(o, "display")), + o.parentNode.removeChild(o), + "none" === u && (u = "block"), + (ue[s] = u))))) + : "none" !== n && ((l[c] = "none"), Y.set(r, "display", n))); + for (c = 0; c < f; c++) null != l[c] && (e[c].style.display = l[c]); + return e; + } + S.fn.extend({ + show: function () { + return le(this, !0); + }, + hide: function () { + return le(this); + }, + toggle: function (e) { + return "boolean" == typeof e + ? e + ? this.show() + : this.hide() + : this.each(function () { + ae(this) ? S(this).show() : S(this).hide(); + }); + }, + }); + var ce, + fe, + pe = /^(?:checkbox|radio)$/i, + de = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, + he = /^$|^module$|\/(?:java|ecma)script/i; + (ce = E.createDocumentFragment().appendChild(E.createElement("div"))), + (fe = E.createElement("input")).setAttribute("type", "radio"), + fe.setAttribute("checked", "checked"), + fe.setAttribute("name", "t"), + ce.appendChild(fe), + (y.checkClone = ce.cloneNode(!0).cloneNode(!0).lastChild.checked), + (ce.innerHTML = ""), + (y.noCloneChecked = !!ce.cloneNode(!0).lastChild.defaultValue), + (ce.innerHTML = ""), + (y.option = !!ce.lastChild); + var ge = { + thead: [1, "", "
"], + col: [2, "", "
"], + tr: [2, "", "
"], + td: [3, "", "
"], + _default: [0, "", ""], + }; + function ve(e, t) { + var n; + return ( + (n = + "undefined" != typeof e.getElementsByTagName + ? e.getElementsByTagName(t || "*") + : "undefined" != typeof e.querySelectorAll + ? e.querySelectorAll(t || "*") + : []), + void 0 === t || (t && A(e, t)) ? S.merge([e], n) : n + ); + } + function ye(e, t) { + for (var n = 0, r = e.length; n < r; n++) + Y.set(e[n], "globalEval", !t || Y.get(t[n], "globalEval")); + } + (ge.tbody = ge.tfoot = ge.colgroup = ge.caption = ge.thead), + (ge.th = ge.td), + y.option || + (ge.optgroup = ge.option = + [1, ""]); + var me = /<|&#?\w+;/; + function xe(e, t, n, r, i) { + for ( + var o, + a, + s, + u, + l, + c, + f = t.createDocumentFragment(), + p = [], + d = 0, + h = e.length; + d < h; + d++ + ) + if ((o = e[d]) || 0 === o) + if ("object" === w(o)) S.merge(p, o.nodeType ? [o] : o); + else if (me.test(o)) { + (a = a || f.appendChild(t.createElement("div"))), + (s = (de.exec(o) || ["", ""])[1].toLowerCase()), + (u = ge[s] || ge._default), + (a.innerHTML = u[1] + S.htmlPrefilter(o) + u[2]), + (c = u[0]); + while (c--) a = a.lastChild; + S.merge(p, a.childNodes), ((a = f.firstChild).textContent = ""); + } else p.push(t.createTextNode(o)); + (f.textContent = ""), (d = 0); + while ((o = p[d++])) + if (r && -1 < S.inArray(o, r)) i && i.push(o); + else if ( + ((l = ie(o)), (a = ve(f.appendChild(o), "script")), l && ye(a), n) + ) { + c = 0; + while ((o = a[c++])) he.test(o.type || "") && n.push(o); + } + return f; + } + var be = /^key/, + we = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, + Te = /^([^.]*)(?:\.(.+)|)/; + function Ce() { + return !0; + } + function Ee() { + return !1; + } + function Se(e, t) { + return ( + (e === + (function () { + try { + return E.activeElement; + } catch (e) {} + })()) == + ("focus" === t) + ); + } + function ke(e, t, n, r, i, o) { + var a, s; + if ("object" == typeof t) { + for (s in ("string" != typeof n && ((r = r || n), (n = void 0)), t)) + ke(e, s, n, r, t[s], o); + return e; + } + if ( + (null == r && null == i + ? ((i = n), (r = n = void 0)) + : null == i && + ("string" == typeof n + ? ((i = r), (r = void 0)) + : ((i = r), (r = n), (n = void 0))), + !1 === i) + ) + i = Ee; + else if (!i) return e; + return ( + 1 === o && + ((a = i), + ((i = function (e) { + return S().off(e), a.apply(this, arguments); + }).guid = a.guid || (a.guid = S.guid++))), + e.each(function () { + S.event.add(this, t, i, r, n); + }) + ); + } + function Ae(e, i, o) { + o + ? (Y.set(e, i, !1), + S.event.add(e, i, { + namespace: !1, + handler: function (e) { + var t, + n, + r = Y.get(this, i); + if (1 & e.isTrigger && this[i]) { + if (r.length) + (S.event.special[i] || {}).delegateType && e.stopPropagation(); + else if ( + ((r = s.call(arguments)), + Y.set(this, i, r), + (t = o(this, i)), + this[i](), + r !== (n = Y.get(this, i)) || t ? Y.set(this, i, !1) : (n = {}), + r !== n) + ) + return ( + e.stopImmediatePropagation(), e.preventDefault(), n.value + ); + } else + r.length && + (Y.set(this, i, { + value: S.event.trigger( + S.extend(r[0], S.Event.prototype), + r.slice(1), + this + ), + }), + e.stopImmediatePropagation()); + }, + })) + : void 0 === Y.get(e, i) && S.event.add(e, i, Ce); + } + (S.event = { + global: {}, + add: function (t, e, n, r, i) { + var o, + a, + s, + u, + l, + c, + f, + p, + d, + h, + g, + v = Y.get(t); + if (V(t)) { + n.handler && ((n = (o = n).handler), (i = o.selector)), + i && S.find.matchesSelector(re, i), + n.guid || (n.guid = S.guid++), + (u = v.events) || (u = v.events = Object.create(null)), + (a = v.handle) || + (a = v.handle = + function (e) { + return "undefined" != typeof S && S.event.triggered !== e.type + ? S.event.dispatch.apply(t, arguments) + : void 0; + }), + (l = (e = (e || "").match(P) || [""]).length); + while (l--) + (d = g = (s = Te.exec(e[l]) || [])[1]), + (h = (s[2] || "").split(".").sort()), + d && + ((f = S.event.special[d] || {}), + (d = (i ? f.delegateType : f.bindType) || d), + (f = S.event.special[d] || {}), + (c = S.extend( + { + type: d, + origType: g, + data: r, + handler: n, + guid: n.guid, + selector: i, + needsContext: i && S.expr.match.needsContext.test(i), + namespace: h.join("."), + }, + o + )), + (p = u[d]) || + (((p = u[d] = []).delegateCount = 0), + (f.setup && !1 !== f.setup.call(t, r, h, a)) || + (t.addEventListener && t.addEventListener(d, a))), + f.add && + (f.add.call(t, c), c.handler.guid || (c.handler.guid = n.guid)), + i ? p.splice(p.delegateCount++, 0, c) : p.push(c), + (S.event.global[d] = !0)); + } + }, + remove: function (e, t, n, r, i) { + var o, + a, + s, + u, + l, + c, + f, + p, + d, + h, + g, + v = Y.hasData(e) && Y.get(e); + if (v && (u = v.events)) { + l = (t = (t || "").match(P) || [""]).length; + while (l--) + if ( + ((d = g = (s = Te.exec(t[l]) || [])[1]), + (h = (s[2] || "").split(".").sort()), + d) + ) { + (f = S.event.special[d] || {}), + (p = u[(d = (r ? f.delegateType : f.bindType) || d)] || []), + (s = + s[2] && + new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)")), + (a = o = p.length); + while (o--) + (c = p[o]), + (!i && g !== c.origType) || + (n && n.guid !== c.guid) || + (s && !s.test(c.namespace)) || + (r && r !== c.selector && ("**" !== r || !c.selector)) || + (p.splice(o, 1), + c.selector && p.delegateCount--, + f.remove && f.remove.call(e, c)); + a && + !p.length && + ((f.teardown && !1 !== f.teardown.call(e, h, v.handle)) || + S.removeEvent(e, d, v.handle), + delete u[d]); + } else for (d in u) S.event.remove(e, d + t[l], n, r, !0); + S.isEmptyObject(u) && Y.remove(e, "handle events"); + } + }, + dispatch: function (e) { + var t, + n, + r, + i, + o, + a, + s = new Array(arguments.length), + u = S.event.fix(e), + l = (Y.get(this, "events") || Object.create(null))[u.type] || [], + c = S.event.special[u.type] || {}; + for (s[0] = u, t = 1; t < arguments.length; t++) s[t] = arguments[t]; + if ( + ((u.delegateTarget = this), + !c.preDispatch || !1 !== c.preDispatch.call(this, u)) + ) { + (a = S.event.handlers.call(this, u, l)), (t = 0); + while ((i = a[t++]) && !u.isPropagationStopped()) { + (u.currentTarget = i.elem), (n = 0); + while ((o = i.handlers[n++]) && !u.isImmediatePropagationStopped()) + (u.rnamespace && + !1 !== o.namespace && + !u.rnamespace.test(o.namespace)) || + ((u.handleObj = o), + (u.data = o.data), + void 0 !== + (r = ( + (S.event.special[o.origType] || {}).handle || o.handler + ).apply(i.elem, s)) && + !1 === (u.result = r) && + (u.preventDefault(), u.stopPropagation())); + } + return c.postDispatch && c.postDispatch.call(this, u), u.result; + } + }, + handlers: function (e, t) { + var n, + r, + i, + o, + a, + s = [], + u = t.delegateCount, + l = e.target; + if (u && l.nodeType && !("click" === e.type && 1 <= e.button)) + for (; l !== this; l = l.parentNode || this) + if (1 === l.nodeType && ("click" !== e.type || !0 !== l.disabled)) { + for (o = [], a = {}, n = 0; n < u; n++) + void 0 === a[(i = (r = t[n]).selector + " ")] && + (a[i] = r.needsContext + ? -1 < S(i, this).index(l) + : S.find(i, this, null, [l]).length), + a[i] && o.push(r); + o.length && s.push({ elem: l, handlers: o }); + } + return ( + (l = this), u < t.length && s.push({ elem: l, handlers: t.slice(u) }), s + ); + }, + addProp: function (t, e) { + Object.defineProperty(S.Event.prototype, t, { + enumerable: !0, + configurable: !0, + get: m(e) + ? function () { + if (this.originalEvent) return e(this.originalEvent); + } + : function () { + if (this.originalEvent) return this.originalEvent[t]; + }, + set: function (e) { + Object.defineProperty(this, t, { + enumerable: !0, + configurable: !0, + writable: !0, + value: e, + }); + }, + }); + }, + fix: function (e) { + return e[S.expando] ? e : new S.Event(e); + }, + special: { + load: { noBubble: !0 }, + click: { + setup: function (e) { + var t = this || e; + return ( + pe.test(t.type) && t.click && A(t, "input") && Ae(t, "click", Ce), + !1 + ); + }, + trigger: function (e) { + var t = this || e; + return ( + pe.test(t.type) && t.click && A(t, "input") && Ae(t, "click"), !0 + ); + }, + _default: function (e) { + var t = e.target; + return ( + (pe.test(t.type) && + t.click && + A(t, "input") && + Y.get(t, "click")) || + A(t, "a") + ); + }, + }, + beforeunload: { + postDispatch: function (e) { + void 0 !== e.result && + e.originalEvent && + (e.originalEvent.returnValue = e.result); + }, + }, + }, + }), + (S.removeEvent = function (e, t, n) { + e.removeEventListener && e.removeEventListener(t, n); + }), + (S.Event = function (e, t) { + if (!(this instanceof S.Event)) return new S.Event(e, t); + e && e.type + ? ((this.originalEvent = e), + (this.type = e.type), + (this.isDefaultPrevented = + e.defaultPrevented || + (void 0 === e.defaultPrevented && !1 === e.returnValue) + ? Ce + : Ee), + (this.target = + e.target && 3 === e.target.nodeType + ? e.target.parentNode + : e.target), + (this.currentTarget = e.currentTarget), + (this.relatedTarget = e.relatedTarget)) + : (this.type = e), + t && S.extend(this, t), + (this.timeStamp = (e && e.timeStamp) || Date.now()), + (this[S.expando] = !0); + }), + (S.Event.prototype = { + constructor: S.Event, + isDefaultPrevented: Ee, + isPropagationStopped: Ee, + isImmediatePropagationStopped: Ee, + isSimulated: !1, + preventDefault: function () { + var e = this.originalEvent; + (this.isDefaultPrevented = Ce), + e && !this.isSimulated && e.preventDefault(); + }, + stopPropagation: function () { + var e = this.originalEvent; + (this.isPropagationStopped = Ce), + e && !this.isSimulated && e.stopPropagation(); + }, + stopImmediatePropagation: function () { + var e = this.originalEvent; + (this.isImmediatePropagationStopped = Ce), + e && !this.isSimulated && e.stopImmediatePropagation(), + this.stopPropagation(); + }, + }), + S.each( + { + altKey: !0, + bubbles: !0, + cancelable: !0, + changedTouches: !0, + ctrlKey: !0, + detail: !0, + eventPhase: !0, + metaKey: !0, + pageX: !0, + pageY: !0, + shiftKey: !0, + view: !0, + char: !0, + code: !0, + charCode: !0, + key: !0, + keyCode: !0, + button: !0, + buttons: !0, + clientX: !0, + clientY: !0, + offsetX: !0, + offsetY: !0, + pointerId: !0, + pointerType: !0, + screenX: !0, + screenY: !0, + targetTouches: !0, + toElement: !0, + touches: !0, + which: function (e) { + var t = e.button; + return null == e.which && be.test(e.type) + ? null != e.charCode + ? e.charCode + : e.keyCode + : !e.which && void 0 !== t && we.test(e.type) + ? 1 & t + ? 1 + : 2 & t + ? 3 + : 4 & t + ? 2 + : 0 + : e.which; + }, + }, + S.event.addProp + ), + S.each({ focus: "focusin", blur: "focusout" }, function (e, t) { + S.event.special[e] = { + setup: function () { + return Ae(this, e, Se), !1; + }, + trigger: function () { + return Ae(this, e), !0; + }, + delegateType: t, + }; + }), + S.each( + { + mouseenter: "mouseover", + mouseleave: "mouseout", + pointerenter: "pointerover", + pointerleave: "pointerout", + }, + function (e, i) { + S.event.special[e] = { + delegateType: i, + bindType: i, + handle: function (e) { + var t, + n = e.relatedTarget, + r = e.handleObj; + return ( + (n && (n === this || S.contains(this, n))) || + ((e.type = r.origType), + (t = r.handler.apply(this, arguments)), + (e.type = i)), + t + ); + }, + }; + } + ), + S.fn.extend({ + on: function (e, t, n, r) { + return ke(this, e, t, n, r); + }, + one: function (e, t, n, r) { + return ke(this, e, t, n, r, 1); + }, + off: function (e, t, n) { + var r, i; + if (e && e.preventDefault && e.handleObj) + return ( + (r = e.handleObj), + S(e.delegateTarget).off( + r.namespace ? r.origType + "." + r.namespace : r.origType, + r.selector, + r.handler + ), + this + ); + if ("object" == typeof e) { + for (i in e) this.off(i, t, e[i]); + return this; + } + return ( + (!1 !== t && "function" != typeof t) || ((n = t), (t = void 0)), + !1 === n && (n = Ee), + this.each(function () { + S.event.remove(this, e, n, t); + }) + ); + }, + }); + var Ne = /\s*$/g; + function qe(e, t) { + return ( + (A(e, "table") && + A(11 !== t.nodeType ? t : t.firstChild, "tr") && + S(e).children("tbody")[0]) || + e + ); + } + function Le(e) { + return (e.type = (null !== e.getAttribute("type")) + "/" + e.type), e; + } + function He(e) { + return ( + "true/" === (e.type || "").slice(0, 5) + ? (e.type = e.type.slice(5)) + : e.removeAttribute("type"), + e + ); + } + function Oe(e, t) { + var n, r, i, o, a, s; + if (1 === t.nodeType) { + if (Y.hasData(e) && (s = Y.get(e).events)) + for (i in (Y.remove(t, "handle events"), s)) + for (n = 0, r = s[i].length; n < r; n++) S.event.add(t, i, s[i][n]); + Q.hasData(e) && ((o = Q.access(e)), (a = S.extend({}, o)), Q.set(t, a)); + } + } + function Pe(n, r, i, o) { + r = g(r); + var e, + t, + a, + s, + u, + l, + c = 0, + f = n.length, + p = f - 1, + d = r[0], + h = m(d); + if (h || (1 < f && "string" == typeof d && !y.checkClone && De.test(d))) + return n.each(function (e) { + var t = n.eq(e); + h && (r[0] = d.call(this, e, t.html())), Pe(t, r, i, o); + }); + if ( + f && + ((t = (e = xe(r, n[0].ownerDocument, !1, n, o)).firstChild), + 1 === e.childNodes.length && (e = t), + t || o) + ) { + for (s = (a = S.map(ve(e, "script"), Le)).length; c < f; c++) + (u = e), + c !== p && + ((u = S.clone(u, !0, !0)), s && S.merge(a, ve(u, "script"))), + i.call(n[c], u, c); + if (s) + for (l = a[a.length - 1].ownerDocument, S.map(a, He), c = 0; c < s; c++) + (u = a[c]), + he.test(u.type || "") && + !Y.access(u, "globalEval") && + S.contains(l, u) && + (u.src && "module" !== (u.type || "").toLowerCase() + ? S._evalUrl && + !u.noModule && + S._evalUrl( + u.src, + { nonce: u.nonce || u.getAttribute("nonce") }, + l + ) + : b(u.textContent.replace(je, ""), u, l)); + } + return n; + } + function Re(e, t, n) { + for (var r, i = t ? S.filter(t, e) : e, o = 0; null != (r = i[o]); o++) + n || 1 !== r.nodeType || S.cleanData(ve(r)), + r.parentNode && + (n && ie(r) && ye(ve(r, "script")), r.parentNode.removeChild(r)); + return e; + } + S.extend({ + htmlPrefilter: function (e) { + return e; + }, + clone: function (e, t, n) { + var r, + i, + o, + a, + s, + u, + l, + c = e.cloneNode(!0), + f = ie(e); + if ( + !( + y.noCloneChecked || + (1 !== e.nodeType && 11 !== e.nodeType) || + S.isXMLDoc(e) + ) + ) + for (a = ve(c), r = 0, i = (o = ve(e)).length; r < i; r++) + (s = o[r]), + (u = a[r]), + void 0, + "input" === (l = u.nodeName.toLowerCase()) && pe.test(s.type) + ? (u.checked = s.checked) + : ("input" !== l && "textarea" !== l) || + (u.defaultValue = s.defaultValue); + if (t) + if (n) + for (o = o || ve(e), a = a || ve(c), r = 0, i = o.length; r < i; r++) + Oe(o[r], a[r]); + else Oe(e, c); + return ( + 0 < (a = ve(c, "script")).length && ye(a, !f && ve(e, "script")), c + ); + }, + cleanData: function (e) { + for (var t, n, r, i = S.event.special, o = 0; void 0 !== (n = e[o]); o++) + if (V(n)) { + if ((t = n[Y.expando])) { + if (t.events) + for (r in t.events) + i[r] ? S.event.remove(n, r) : S.removeEvent(n, r, t.handle); + n[Y.expando] = void 0; + } + n[Q.expando] && (n[Q.expando] = void 0); + } + }, + }), + S.fn.extend({ + detach: function (e) { + return Re(this, e, !0); + }, + remove: function (e) { + return Re(this, e); + }, + text: function (e) { + return $( + this, + function (e) { + return void 0 === e + ? S.text(this) + : this.empty().each(function () { + (1 !== this.nodeType && + 11 !== this.nodeType && + 9 !== this.nodeType) || + (this.textContent = e); + }); + }, + null, + e, + arguments.length + ); + }, + append: function () { + return Pe(this, arguments, function (e) { + (1 !== this.nodeType && + 11 !== this.nodeType && + 9 !== this.nodeType) || + qe(this, e).appendChild(e); + }); + }, + prepend: function () { + return Pe(this, arguments, function (e) { + if ( + 1 === this.nodeType || + 11 === this.nodeType || + 9 === this.nodeType + ) { + var t = qe(this, e); + t.insertBefore(e, t.firstChild); + } + }); + }, + before: function () { + return Pe(this, arguments, function (e) { + this.parentNode && this.parentNode.insertBefore(e, this); + }); + }, + after: function () { + return Pe(this, arguments, function (e) { + this.parentNode && this.parentNode.insertBefore(e, this.nextSibling); + }); + }, + empty: function () { + for (var e, t = 0; null != (e = this[t]); t++) + 1 === e.nodeType && (S.cleanData(ve(e, !1)), (e.textContent = "")); + return this; + }, + clone: function (e, t) { + return ( + (e = null != e && e), + (t = null == t ? e : t), + this.map(function () { + return S.clone(this, e, t); + }) + ); + }, + html: function (e) { + return $( + this, + function (e) { + var t = this[0] || {}, + n = 0, + r = this.length; + if (void 0 === e && 1 === t.nodeType) return t.innerHTML; + if ( + "string" == typeof e && + !Ne.test(e) && + !ge[(de.exec(e) || ["", ""])[1].toLowerCase()] + ) { + e = S.htmlPrefilter(e); + try { + for (; n < r; n++) + 1 === (t = this[n] || {}).nodeType && + (S.cleanData(ve(t, !1)), (t.innerHTML = e)); + t = 0; + } catch (e) {} + } + t && this.empty().append(e); + }, + null, + e, + arguments.length + ); + }, + replaceWith: function () { + var n = []; + return Pe( + this, + arguments, + function (e) { + var t = this.parentNode; + S.inArray(this, n) < 0 && + (S.cleanData(ve(this)), t && t.replaceChild(e, this)); + }, + n + ); + }, + }), + S.each( + { + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith", + }, + function (e, a) { + S.fn[e] = function (e) { + for (var t, n = [], r = S(e), i = r.length - 1, o = 0; o <= i; o++) + (t = o === i ? this : this.clone(!0)), + S(r[o])[a](t), + u.apply(n, t.get()); + return this.pushStack(n); + }; + } + ); + var Me = new RegExp("^(" + ee + ")(?!px)[a-z%]+$", "i"), + Ie = function (e) { + var t = e.ownerDocument.defaultView; + return (t && t.opener) || (t = C), t.getComputedStyle(e); + }, + We = function (e, t, n) { + var r, + i, + o = {}; + for (i in t) (o[i] = e.style[i]), (e.style[i] = t[i]); + for (i in ((r = n.call(e)), t)) e.style[i] = o[i]; + return r; + }, + Fe = new RegExp(ne.join("|"), "i"); + function Be(e, t, n) { + var r, + i, + o, + a, + s = e.style; + return ( + (n = n || Ie(e)) && + ("" !== (a = n.getPropertyValue(t) || n[t]) || + ie(e) || + (a = S.style(e, t)), + !y.pixelBoxStyles() && + Me.test(a) && + Fe.test(t) && + ((r = s.width), + (i = s.minWidth), + (o = s.maxWidth), + (s.minWidth = s.maxWidth = s.width = a), + (a = n.width), + (s.width = r), + (s.minWidth = i), + (s.maxWidth = o))), + void 0 !== a ? a + "" : a + ); + } + function $e(e, t) { + return { + get: function () { + if (!e()) return (this.get = t).apply(this, arguments); + delete this.get; + }, + }; + } + !(function () { + function e() { + if (l) { + (u.style.cssText = + "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0"), + (l.style.cssText = + "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%"), + re.appendChild(u).appendChild(l); + var e = C.getComputedStyle(l); + (n = "1%" !== e.top), + (s = 12 === t(e.marginLeft)), + (l.style.right = "60%"), + (o = 36 === t(e.right)), + (r = 36 === t(e.width)), + (l.style.position = "absolute"), + (i = 12 === t(l.offsetWidth / 3)), + re.removeChild(u), + (l = null); + } + } + function t(e) { + return Math.round(parseFloat(e)); + } + var n, + r, + i, + o, + a, + s, + u = E.createElement("div"), + l = E.createElement("div"); + l.style && + ((l.style.backgroundClip = "content-box"), + (l.cloneNode(!0).style.backgroundClip = ""), + (y.clearCloneStyle = "content-box" === l.style.backgroundClip), + S.extend(y, { + boxSizingReliable: function () { + return e(), r; + }, + pixelBoxStyles: function () { + return e(), o; + }, + pixelPosition: function () { + return e(), n; + }, + reliableMarginLeft: function () { + return e(), s; + }, + scrollboxSize: function () { + return e(), i; + }, + reliableTrDimensions: function () { + var e, t, n, r; + return ( + null == a && + ((e = E.createElement("table")), + (t = E.createElement("tr")), + (n = E.createElement("div")), + (e.style.cssText = "position:absolute;left:-11111px"), + (t.style.height = "1px"), + (n.style.height = "9px"), + re.appendChild(e).appendChild(t).appendChild(n), + (r = C.getComputedStyle(t)), + (a = 3 < parseInt(r.height)), + re.removeChild(e)), + a + ); + }, + })); + })(); + var _e = ["Webkit", "Moz", "ms"], + ze = E.createElement("div").style, + Ue = {}; + function Xe(e) { + var t = S.cssProps[e] || Ue[e]; + return ( + t || + (e in ze + ? e + : (Ue[e] = + (function (e) { + var t = e[0].toUpperCase() + e.slice(1), + n = _e.length; + while (n--) if ((e = _e[n] + t) in ze) return e; + })(e) || e)) + ); + } + var Ve = /^(none|table(?!-c[ea]).+)/, + Ge = /^--/, + Ye = { position: "absolute", visibility: "hidden", display: "block" }, + Qe = { letterSpacing: "0", fontWeight: "400" }; + function Je(e, t, n) { + var r = te.exec(t); + return r ? Math.max(0, r[2] - (n || 0)) + (r[3] || "px") : t; + } + function Ke(e, t, n, r, i, o) { + var a = "width" === t ? 1 : 0, + s = 0, + u = 0; + if (n === (r ? "border" : "content")) return 0; + for (; a < 4; a += 2) + "margin" === n && (u += S.css(e, n + ne[a], !0, i)), + r + ? ("content" === n && (u -= S.css(e, "padding" + ne[a], !0, i)), + "margin" !== n && + (u -= S.css(e, "border" + ne[a] + "Width", !0, i))) + : ((u += S.css(e, "padding" + ne[a], !0, i)), + "padding" !== n + ? (u += S.css(e, "border" + ne[a] + "Width", !0, i)) + : (s += S.css(e, "border" + ne[a] + "Width", !0, i))); + return ( + !r && + 0 <= o && + (u += + Math.max( + 0, + Math.ceil( + e["offset" + t[0].toUpperCase() + t.slice(1)] - o - u - s - 0.5 + ) + ) || 0), + u + ); + } + function Ze(e, t, n) { + var r = Ie(e), + i = + (!y.boxSizingReliable() || n) && + "border-box" === S.css(e, "boxSizing", !1, r), + o = i, + a = Be(e, t, r), + s = "offset" + t[0].toUpperCase() + t.slice(1); + if (Me.test(a)) { + if (!n) return a; + a = "auto"; + } + return ( + ((!y.boxSizingReliable() && i) || + (!y.reliableTrDimensions() && A(e, "tr")) || + "auto" === a || + (!parseFloat(a) && "inline" === S.css(e, "display", !1, r))) && + e.getClientRects().length && + ((i = "border-box" === S.css(e, "boxSizing", !1, r)), + (o = s in e) && (a = e[s])), + (a = parseFloat(a) || 0) + + Ke(e, t, n || (i ? "border" : "content"), o, r, a) + + "px" + ); + } + function et(e, t, n, r, i) { + return new et.prototype.init(e, t, n, r, i); + } + S.extend({ + cssHooks: { + opacity: { + get: function (e, t) { + if (t) { + var n = Be(e, "opacity"); + return "" === n ? "1" : n; + } + }, + }, + }, + cssNumber: { + animationIterationCount: !0, + columnCount: !0, + fillOpacity: !0, + flexGrow: !0, + flexShrink: !0, + fontWeight: !0, + gridArea: !0, + gridColumn: !0, + gridColumnEnd: !0, + gridColumnStart: !0, + gridRow: !0, + gridRowEnd: !0, + gridRowStart: !0, + lineHeight: !0, + opacity: !0, + order: !0, + orphans: !0, + widows: !0, + zIndex: !0, + zoom: !0, + }, + cssProps: {}, + style: function (e, t, n, r) { + if (e && 3 !== e.nodeType && 8 !== e.nodeType && e.style) { + var i, + o, + a, + s = X(t), + u = Ge.test(t), + l = e.style; + if ( + (u || (t = Xe(s)), (a = S.cssHooks[t] || S.cssHooks[s]), void 0 === n) + ) + return a && "get" in a && void 0 !== (i = a.get(e, !1, r)) ? i : l[t]; + "string" === (o = typeof n) && + (i = te.exec(n)) && + i[1] && + ((n = se(e, t, i)), (o = "number")), + null != n && + n == n && + ("number" !== o || + u || + (n += (i && i[3]) || (S.cssNumber[s] ? "" : "px")), + y.clearCloneStyle || + "" !== n || + 0 !== t.indexOf("background") || + (l[t] = "inherit"), + (a && "set" in a && void 0 === (n = a.set(e, n, r))) || + (u ? l.setProperty(t, n) : (l[t] = n))); + } + }, + css: function (e, t, n, r) { + var i, + o, + a, + s = X(t); + return ( + Ge.test(t) || (t = Xe(s)), + (a = S.cssHooks[t] || S.cssHooks[s]) && + "get" in a && + (i = a.get(e, !0, n)), + void 0 === i && (i = Be(e, t, r)), + "normal" === i && t in Qe && (i = Qe[t]), + "" === n || n + ? ((o = parseFloat(i)), !0 === n || isFinite(o) ? o || 0 : i) + : i + ); + }, + }), + S.each(["height", "width"], function (e, u) { + S.cssHooks[u] = { + get: function (e, t, n) { + if (t) + return !Ve.test(S.css(e, "display")) || + (e.getClientRects().length && e.getBoundingClientRect().width) + ? Ze(e, u, n) + : We(e, Ye, function () { + return Ze(e, u, n); + }); + }, + set: function (e, t, n) { + var r, + i = Ie(e), + o = !y.scrollboxSize() && "absolute" === i.position, + a = (o || n) && "border-box" === S.css(e, "boxSizing", !1, i), + s = n ? Ke(e, u, n, a, i) : 0; + return ( + a && + o && + (s -= Math.ceil( + e["offset" + u[0].toUpperCase() + u.slice(1)] - + parseFloat(i[u]) - + Ke(e, u, "border", !1, i) - + 0.5 + )), + s && + (r = te.exec(t)) && + "px" !== (r[3] || "px") && + ((e.style[u] = t), (t = S.css(e, u))), + Je(0, t, s) + ); + }, + }; + }), + (S.cssHooks.marginLeft = $e(y.reliableMarginLeft, function (e, t) { + if (t) + return ( + (parseFloat(Be(e, "marginLeft")) || + e.getBoundingClientRect().left - + We(e, { marginLeft: 0 }, function () { + return e.getBoundingClientRect().left; + })) + "px" + ); + })), + S.each({ margin: "", padding: "", border: "Width" }, function (i, o) { + (S.cssHooks[i + o] = { + expand: function (e) { + for ( + var t = 0, n = {}, r = "string" == typeof e ? e.split(" ") : [e]; + t < 4; + t++ + ) + n[i + ne[t] + o] = r[t] || r[t - 2] || r[0]; + return n; + }, + }), + "margin" !== i && (S.cssHooks[i + o].set = Je); + }), + S.fn.extend({ + css: function (e, t) { + return $( + this, + function (e, t, n) { + var r, + i, + o = {}, + a = 0; + if (Array.isArray(t)) { + for (r = Ie(e), i = t.length; a < i; a++) + o[t[a]] = S.css(e, t[a], !1, r); + return o; + } + return void 0 !== n ? S.style(e, t, n) : S.css(e, t); + }, + e, + t, + 1 < arguments.length + ); + }, + }), + (((S.Tween = et).prototype = { + constructor: et, + init: function (e, t, n, r, i, o) { + (this.elem = e), + (this.prop = n), + (this.easing = i || S.easing._default), + (this.options = t), + (this.start = this.now = this.cur()), + (this.end = r), + (this.unit = o || (S.cssNumber[n] ? "" : "px")); + }, + cur: function () { + var e = et.propHooks[this.prop]; + return e && e.get ? e.get(this) : et.propHooks._default.get(this); + }, + run: function (e) { + var t, + n = et.propHooks[this.prop]; + return ( + this.options.duration + ? (this.pos = t = + S.easing[this.easing]( + e, + this.options.duration * e, + 0, + 1, + this.options.duration + )) + : (this.pos = t = e), + (this.now = (this.end - this.start) * t + this.start), + this.options.step && + this.options.step.call(this.elem, this.now, this), + n && n.set ? n.set(this) : et.propHooks._default.set(this), + this + ); + }, + }).init.prototype = et.prototype), + ((et.propHooks = { + _default: { + get: function (e) { + var t; + return 1 !== e.elem.nodeType || + (null != e.elem[e.prop] && null == e.elem.style[e.prop]) + ? e.elem[e.prop] + : (t = S.css(e.elem, e.prop, "")) && "auto" !== t + ? t + : 0; + }, + set: function (e) { + S.fx.step[e.prop] + ? S.fx.step[e.prop](e) + : 1 !== e.elem.nodeType || + (!S.cssHooks[e.prop] && null == e.elem.style[Xe(e.prop)]) + ? (e.elem[e.prop] = e.now) + : S.style(e.elem, e.prop, e.now + e.unit); + }, + }, + }).scrollTop = et.propHooks.scrollLeft = + { + set: function (e) { + e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now); + }, + }), + (S.easing = { + linear: function (e) { + return e; + }, + swing: function (e) { + return 0.5 - Math.cos(e * Math.PI) / 2; + }, + _default: "swing", + }), + (S.fx = et.prototype.init), + (S.fx.step = {}); + var tt, + nt, + rt, + it, + ot = /^(?:toggle|show|hide)$/, + at = /queueHooks$/; + function st() { + nt && + (!1 === E.hidden && C.requestAnimationFrame + ? C.requestAnimationFrame(st) + : C.setTimeout(st, S.fx.interval), + S.fx.tick()); + } + function ut() { + return ( + C.setTimeout(function () { + tt = void 0; + }), + (tt = Date.now()) + ); + } + function lt(e, t) { + var n, + r = 0, + i = { height: e }; + for (t = t ? 1 : 0; r < 4; r += 2 - t) + i["margin" + (n = ne[r])] = i["padding" + n] = e; + return t && (i.opacity = i.width = e), i; + } + function ct(e, t, n) { + for ( + var r, + i = (ft.tweeners[t] || []).concat(ft.tweeners["*"]), + o = 0, + a = i.length; + o < a; + o++ + ) + if ((r = i[o].call(n, t, e))) return r; + } + function ft(o, e, t) { + var n, + a, + r = 0, + i = ft.prefilters.length, + s = S.Deferred().always(function () { + delete u.elem; + }), + u = function () { + if (a) return !1; + for ( + var e = tt || ut(), + t = Math.max(0, l.startTime + l.duration - e), + n = 1 - (t / l.duration || 0), + r = 0, + i = l.tweens.length; + r < i; + r++ + ) + l.tweens[r].run(n); + return ( + s.notifyWith(o, [l, n, t]), + n < 1 && i + ? t + : (i || s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l]), !1) + ); + }, + l = s.promise({ + elem: o, + props: S.extend({}, e), + opts: S.extend(!0, { specialEasing: {}, easing: S.easing._default }, t), + originalProperties: e, + originalOptions: t, + startTime: tt || ut(), + duration: t.duration, + tweens: [], + createTween: function (e, t) { + var n = S.Tween( + o, + l.opts, + e, + t, + l.opts.specialEasing[e] || l.opts.easing + ); + return l.tweens.push(n), n; + }, + stop: function (e) { + var t = 0, + n = e ? l.tweens.length : 0; + if (a) return this; + for (a = !0; t < n; t++) l.tweens[t].run(1); + return ( + e + ? (s.notifyWith(o, [l, 1, 0]), s.resolveWith(o, [l, e])) + : s.rejectWith(o, [l, e]), + this + ); + }, + }), + c = l.props; + for ( + !(function (e, t) { + var n, r, i, o, a; + for (n in e) + if ( + ((i = t[(r = X(n))]), + (o = e[n]), + Array.isArray(o) && ((i = o[1]), (o = e[n] = o[0])), + n !== r && ((e[r] = o), delete e[n]), + (a = S.cssHooks[r]) && ("expand" in a)) + ) + for (n in ((o = a.expand(o)), delete e[r], o)) + (n in e) || ((e[n] = o[n]), (t[n] = i)); + else t[r] = i; + })(c, l.opts.specialEasing); + r < i; + r++ + ) + if ((n = ft.prefilters[r].call(l, o, c, l.opts))) + return ( + m(n.stop) && + (S._queueHooks(l.elem, l.opts.queue).stop = n.stop.bind(n)), + n + ); + return ( + S.map(c, ct, l), + m(l.opts.start) && l.opts.start.call(o, l), + l + .progress(l.opts.progress) + .done(l.opts.done, l.opts.complete) + .fail(l.opts.fail) + .always(l.opts.always), + S.fx.timer(S.extend(u, { elem: o, anim: l, queue: l.opts.queue })), + l + ); + } + (S.Animation = S.extend(ft, { + tweeners: { + "*": [ + function (e, t) { + var n = this.createTween(e, t); + return se(n.elem, e, te.exec(t), n), n; + }, + ], + }, + tweener: function (e, t) { + m(e) ? ((t = e), (e = ["*"])) : (e = e.match(P)); + for (var n, r = 0, i = e.length; r < i; r++) + (n = e[r]), + (ft.tweeners[n] = ft.tweeners[n] || []), + ft.tweeners[n].unshift(t); + }, + prefilters: [ + function (e, t, n) { + var r, + i, + o, + a, + s, + u, + l, + c, + f = "width" in t || "height" in t, + p = this, + d = {}, + h = e.style, + g = e.nodeType && ae(e), + v = Y.get(e, "fxshow"); + for (r in (n.queue || + (null == (a = S._queueHooks(e, "fx")).unqueued && + ((a.unqueued = 0), + (s = a.empty.fire), + (a.empty.fire = function () { + a.unqueued || s(); + })), + a.unqueued++, + p.always(function () { + p.always(function () { + a.unqueued--, S.queue(e, "fx").length || a.empty.fire(); + }); + })), + t)) + if (((i = t[r]), ot.test(i))) { + if ( + (delete t[r], + (o = o || "toggle" === i), + i === (g ? "hide" : "show")) + ) { + if ("show" !== i || !v || void 0 === v[r]) continue; + g = !0; + } + d[r] = (v && v[r]) || S.style(e, r); + } + if ((u = !S.isEmptyObject(t)) || !S.isEmptyObject(d)) + for (r in (f && + 1 === e.nodeType && + ((n.overflow = [h.overflow, h.overflowX, h.overflowY]), + null == (l = v && v.display) && (l = Y.get(e, "display")), + "none" === (c = S.css(e, "display")) && + (l + ? (c = l) + : (le([e], !0), + (l = e.style.display || l), + (c = S.css(e, "display")), + le([e]))), + ("inline" === c || ("inline-block" === c && null != l)) && + "none" === S.css(e, "float") && + (u || + (p.done(function () { + h.display = l; + }), + null == l && ((c = h.display), (l = "none" === c ? "" : c))), + (h.display = "inline-block"))), + n.overflow && + ((h.overflow = "hidden"), + p.always(function () { + (h.overflow = n.overflow[0]), + (h.overflowX = n.overflow[1]), + (h.overflowY = n.overflow[2]); + })), + (u = !1), + d)) + u || + (v + ? "hidden" in v && (g = v.hidden) + : (v = Y.access(e, "fxshow", { display: l })), + o && (v.hidden = !g), + g && le([e], !0), + p.done(function () { + for (r in (g || le([e]), Y.remove(e, "fxshow"), d)) + S.style(e, r, d[r]); + })), + (u = ct(g ? v[r] : 0, r, p)), + r in v || + ((v[r] = u.start), g && ((u.end = u.start), (u.start = 0))); + }, + ], + prefilter: function (e, t) { + t ? ft.prefilters.unshift(e) : ft.prefilters.push(e); + }, + })), + (S.speed = function (e, t, n) { + var r = + e && "object" == typeof e + ? S.extend({}, e) + : { + complete: n || (!n && t) || (m(e) && e), + duration: e, + easing: (n && t) || (t && !m(t) && t), + }; + return ( + S.fx.off + ? (r.duration = 0) + : "number" != typeof r.duration && + (r.duration in S.fx.speeds + ? (r.duration = S.fx.speeds[r.duration]) + : (r.duration = S.fx.speeds._default)), + (null != r.queue && !0 !== r.queue) || (r.queue = "fx"), + (r.old = r.complete), + (r.complete = function () { + m(r.old) && r.old.call(this), r.queue && S.dequeue(this, r.queue); + }), + r + ); + }), + S.fn.extend({ + fadeTo: function (e, t, n, r) { + return this.filter(ae) + .css("opacity", 0) + .show() + .end() + .animate({ opacity: t }, e, n, r); + }, + animate: function (t, e, n, r) { + var i = S.isEmptyObject(t), + o = S.speed(e, n, r), + a = function () { + var e = ft(this, S.extend({}, t), o); + (i || Y.get(this, "finish")) && e.stop(!0); + }; + return ( + (a.finish = a), + i || !1 === o.queue ? this.each(a) : this.queue(o.queue, a) + ); + }, + stop: function (i, e, o) { + var a = function (e) { + var t = e.stop; + delete e.stop, t(o); + }; + return ( + "string" != typeof i && ((o = e), (e = i), (i = void 0)), + e && this.queue(i || "fx", []), + this.each(function () { + var e = !0, + t = null != i && i + "queueHooks", + n = S.timers, + r = Y.get(this); + if (t) r[t] && r[t].stop && a(r[t]); + else for (t in r) r[t] && r[t].stop && at.test(t) && a(r[t]); + for (t = n.length; t--; ) + n[t].elem !== this || + (null != i && n[t].queue !== i) || + (n[t].anim.stop(o), (e = !1), n.splice(t, 1)); + (!e && o) || S.dequeue(this, i); + }) + ); + }, + finish: function (a) { + return ( + !1 !== a && (a = a || "fx"), + this.each(function () { + var e, + t = Y.get(this), + n = t[a + "queue"], + r = t[a + "queueHooks"], + i = S.timers, + o = n ? n.length : 0; + for ( + t.finish = !0, + S.queue(this, a, []), + r && r.stop && r.stop.call(this, !0), + e = i.length; + e--; + + ) + i[e].elem === this && + i[e].queue === a && + (i[e].anim.stop(!0), i.splice(e, 1)); + for (e = 0; e < o; e++) + n[e] && n[e].finish && n[e].finish.call(this); + delete t.finish; + }) + ); + }, + }), + S.each(["toggle", "show", "hide"], function (e, r) { + var i = S.fn[r]; + S.fn[r] = function (e, t, n) { + return null == e || "boolean" == typeof e + ? i.apply(this, arguments) + : this.animate(lt(r, !0), e, t, n); + }; + }), + S.each( + { + slideDown: lt("show"), + slideUp: lt("hide"), + slideToggle: lt("toggle"), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" }, + }, + function (e, r) { + S.fn[e] = function (e, t, n) { + return this.animate(r, e, t, n); + }; + } + ), + (S.timers = []), + (S.fx.tick = function () { + var e, + t = 0, + n = S.timers; + for (tt = Date.now(); t < n.length; t++) + (e = n[t])() || n[t] !== e || n.splice(t--, 1); + n.length || S.fx.stop(), (tt = void 0); + }), + (S.fx.timer = function (e) { + S.timers.push(e), S.fx.start(); + }), + (S.fx.interval = 13), + (S.fx.start = function () { + nt || ((nt = !0), st()); + }), + (S.fx.stop = function () { + nt = null; + }), + (S.fx.speeds = { slow: 600, fast: 200, _default: 400 }), + (S.fn.delay = function (r, e) { + return ( + (r = (S.fx && S.fx.speeds[r]) || r), + (e = e || "fx"), + this.queue(e, function (e, t) { + var n = C.setTimeout(e, r); + t.stop = function () { + C.clearTimeout(n); + }; + }) + ); + }), + (rt = E.createElement("input")), + (it = E.createElement("select").appendChild(E.createElement("option"))), + (rt.type = "checkbox"), + (y.checkOn = "" !== rt.value), + (y.optSelected = it.selected), + ((rt = E.createElement("input")).value = "t"), + (rt.type = "radio"), + (y.radioValue = "t" === rt.value); + var pt, + dt = S.expr.attrHandle; + S.fn.extend({ + attr: function (e, t) { + return $(this, S.attr, e, t, 1 < arguments.length); + }, + removeAttr: function (e) { + return this.each(function () { + S.removeAttr(this, e); + }); + }, + }), + S.extend({ + attr: function (e, t, n) { + var r, + i, + o = e.nodeType; + if (3 !== o && 8 !== o && 2 !== o) + return "undefined" == typeof e.getAttribute + ? S.prop(e, t, n) + : ((1 === o && S.isXMLDoc(e)) || + (i = + S.attrHooks[t.toLowerCase()] || + (S.expr.match.bool.test(t) ? pt : void 0)), + void 0 !== n + ? null === n + ? void S.removeAttr(e, t) + : i && "set" in i && void 0 !== (r = i.set(e, n, t)) + ? r + : (e.setAttribute(t, n + ""), n) + : i && "get" in i && null !== (r = i.get(e, t)) + ? r + : null == (r = S.find.attr(e, t)) + ? void 0 + : r); + }, + attrHooks: { + type: { + set: function (e, t) { + if (!y.radioValue && "radio" === t && A(e, "input")) { + var n = e.value; + return e.setAttribute("type", t), n && (e.value = n), t; + } + }, + }, + }, + removeAttr: function (e, t) { + var n, + r = 0, + i = t && t.match(P); + if (i && 1 === e.nodeType) while ((n = i[r++])) e.removeAttribute(n); + }, + }), + (pt = { + set: function (e, t, n) { + return !1 === t ? S.removeAttr(e, n) : e.setAttribute(n, n), n; + }, + }), + S.each(S.expr.match.bool.source.match(/\w+/g), function (e, t) { + var a = dt[t] || S.find.attr; + dt[t] = function (e, t, n) { + var r, + i, + o = t.toLowerCase(); + return ( + n || + ((i = dt[o]), + (dt[o] = r), + (r = null != a(e, t, n) ? o : null), + (dt[o] = i)), + r + ); + }; + }); + var ht = /^(?:input|select|textarea|button)$/i, + gt = /^(?:a|area)$/i; + function vt(e) { + return (e.match(P) || []).join(" "); + } + function yt(e) { + return (e.getAttribute && e.getAttribute("class")) || ""; + } + function mt(e) { + return Array.isArray(e) ? e : ("string" == typeof e && e.match(P)) || []; + } + S.fn.extend({ + prop: function (e, t) { + return $(this, S.prop, e, t, 1 < arguments.length); + }, + removeProp: function (e) { + return this.each(function () { + delete this[S.propFix[e] || e]; + }); + }, + }), + S.extend({ + prop: function (e, t, n) { + var r, + i, + o = e.nodeType; + if (3 !== o && 8 !== o && 2 !== o) + return ( + (1 === o && S.isXMLDoc(e)) || + ((t = S.propFix[t] || t), (i = S.propHooks[t])), + void 0 !== n + ? i && "set" in i && void 0 !== (r = i.set(e, n, t)) + ? r + : (e[t] = n) + : i && "get" in i && null !== (r = i.get(e, t)) + ? r + : e[t] + ); + }, + propHooks: { + tabIndex: { + get: function (e) { + var t = S.find.attr(e, "tabindex"); + return t + ? parseInt(t, 10) + : ht.test(e.nodeName) || (gt.test(e.nodeName) && e.href) + ? 0 + : -1; + }, + }, + }, + propFix: { for: "htmlFor", class: "className" }, + }), + y.optSelected || + (S.propHooks.selected = { + get: function (e) { + var t = e.parentNode; + return t && t.parentNode && t.parentNode.selectedIndex, null; + }, + set: function (e) { + var t = e.parentNode; + t && (t.selectedIndex, t.parentNode && t.parentNode.selectedIndex); + }, + }), + S.each( + [ + "tabIndex", + "readOnly", + "maxLength", + "cellSpacing", + "cellPadding", + "rowSpan", + "colSpan", + "useMap", + "frameBorder", + "contentEditable", + ], + function () { + S.propFix[this.toLowerCase()] = this; + } + ), + S.fn.extend({ + addClass: function (t) { + var e, + n, + r, + i, + o, + a, + s, + u = 0; + if (m(t)) + return this.each(function (e) { + S(this).addClass(t.call(this, e, yt(this))); + }); + if ((e = mt(t)).length) + while ((n = this[u++])) + if (((i = yt(n)), (r = 1 === n.nodeType && " " + vt(i) + " "))) { + a = 0; + while ((o = e[a++])) + r.indexOf(" " + o + " ") < 0 && (r += o + " "); + i !== (s = vt(r)) && n.setAttribute("class", s); + } + return this; + }, + removeClass: function (t) { + var e, + n, + r, + i, + o, + a, + s, + u = 0; + if (m(t)) + return this.each(function (e) { + S(this).removeClass(t.call(this, e, yt(this))); + }); + if (!arguments.length) return this.attr("class", ""); + if ((e = mt(t)).length) + while ((n = this[u++])) + if (((i = yt(n)), (r = 1 === n.nodeType && " " + vt(i) + " "))) { + a = 0; + while ((o = e[a++])) + while (-1 < r.indexOf(" " + o + " ")) + r = r.replace(" " + o + " ", " "); + i !== (s = vt(r)) && n.setAttribute("class", s); + } + return this; + }, + toggleClass: function (i, t) { + var o = typeof i, + a = "string" === o || Array.isArray(i); + return "boolean" == typeof t && a + ? t + ? this.addClass(i) + : this.removeClass(i) + : m(i) + ? this.each(function (e) { + S(this).toggleClass(i.call(this, e, yt(this), t), t); + }) + : this.each(function () { + var e, t, n, r; + if (a) { + (t = 0), (n = S(this)), (r = mt(i)); + while ((e = r[t++])) + n.hasClass(e) ? n.removeClass(e) : n.addClass(e); + } else (void 0 !== i && "boolean" !== o) || ((e = yt(this)) && Y.set(this, "__className__", e), this.setAttribute && this.setAttribute("class", e || !1 === i ? "" : Y.get(this, "__className__") || "")); + }); + }, + hasClass: function (e) { + var t, + n, + r = 0; + t = " " + e + " "; + while ((n = this[r++])) + if (1 === n.nodeType && -1 < (" " + vt(yt(n)) + " ").indexOf(t)) + return !0; + return !1; + }, + }); + var xt = /\r/g; + S.fn.extend({ + val: function (n) { + var r, + e, + i, + t = this[0]; + return arguments.length + ? ((i = m(n)), + this.each(function (e) { + var t; + 1 === this.nodeType && + (null == (t = i ? n.call(this, e, S(this).val()) : n) + ? (t = "") + : "number" == typeof t + ? (t += "") + : Array.isArray(t) && + (t = S.map(t, function (e) { + return null == e ? "" : e + ""; + })), + ((r = + S.valHooks[this.type] || + S.valHooks[this.nodeName.toLowerCase()]) && + "set" in r && + void 0 !== r.set(this, t, "value")) || + (this.value = t)); + })) + : t + ? (r = S.valHooks[t.type] || S.valHooks[t.nodeName.toLowerCase()]) && + "get" in r && + void 0 !== (e = r.get(t, "value")) + ? e + : "string" == typeof (e = t.value) + ? e.replace(xt, "") + : null == e + ? "" + : e + : void 0; + }, + }), + S.extend({ + valHooks: { + option: { + get: function (e) { + var t = S.find.attr(e, "value"); + return null != t ? t : vt(S.text(e)); + }, + }, + select: { + get: function (e) { + var t, + n, + r, + i = e.options, + o = e.selectedIndex, + a = "select-one" === e.type, + s = a ? null : [], + u = a ? o + 1 : i.length; + for (r = o < 0 ? u : a ? o : 0; r < u; r++) + if ( + ((n = i[r]).selected || r === o) && + !n.disabled && + (!n.parentNode.disabled || !A(n.parentNode, "optgroup")) + ) { + if (((t = S(n).val()), a)) return t; + s.push(t); + } + return s; + }, + set: function (e, t) { + var n, + r, + i = e.options, + o = S.makeArray(t), + a = i.length; + while (a--) + ((r = i[a]).selected = + -1 < S.inArray(S.valHooks.option.get(r), o)) && (n = !0); + return n || (e.selectedIndex = -1), o; + }, + }, + }, + }), + S.each(["radio", "checkbox"], function () { + (S.valHooks[this] = { + set: function (e, t) { + if (Array.isArray(t)) + return (e.checked = -1 < S.inArray(S(e).val(), t)); + }, + }), + y.checkOn || + (S.valHooks[this].get = function (e) { + return null === e.getAttribute("value") ? "on" : e.value; + }); + }), + (y.focusin = "onfocusin" in C); + var bt = /^(?:focusinfocus|focusoutblur)$/, + wt = function (e) { + e.stopPropagation(); + }; + S.extend(S.event, { + trigger: function (e, t, n, r) { + var i, + o, + a, + s, + u, + l, + c, + f, + p = [n || E], + d = v.call(e, "type") ? e.type : e, + h = v.call(e, "namespace") ? e.namespace.split(".") : []; + if ( + ((o = f = a = n = n || E), + 3 !== n.nodeType && + 8 !== n.nodeType && + !bt.test(d + S.event.triggered) && + (-1 < d.indexOf(".") && ((d = (h = d.split(".")).shift()), h.sort()), + (u = d.indexOf(":") < 0 && "on" + d), + ((e = e[S.expando] + ? e + : new S.Event(d, "object" == typeof e && e)).isTrigger = r ? 2 : 3), + (e.namespace = h.join(".")), + (e.rnamespace = e.namespace + ? new RegExp("(^|\\.)" + h.join("\\.(?:.*\\.|)") + "(\\.|$)") + : null), + (e.result = void 0), + e.target || (e.target = n), + (t = null == t ? [e] : S.makeArray(t, [e])), + (c = S.event.special[d] || {}), + r || !c.trigger || !1 !== c.trigger.apply(n, t))) + ) { + if (!r && !c.noBubble && !x(n)) { + for ( + s = c.delegateType || d, bt.test(s + d) || (o = o.parentNode); + o; + o = o.parentNode + ) + p.push(o), (a = o); + a === (n.ownerDocument || E) && + p.push(a.defaultView || a.parentWindow || C); + } + i = 0; + while ((o = p[i++]) && !e.isPropagationStopped()) + (f = o), + (e.type = 1 < i ? s : c.bindType || d), + (l = + (Y.get(o, "events") || Object.create(null))[e.type] && + Y.get(o, "handle")) && l.apply(o, t), + (l = u && o[u]) && + l.apply && + V(o) && + ((e.result = l.apply(o, t)), + !1 === e.result && e.preventDefault()); + return ( + (e.type = d), + r || + e.isDefaultPrevented() || + (c._default && !1 !== c._default.apply(p.pop(), t)) || + !V(n) || + (u && + m(n[d]) && + !x(n) && + ((a = n[u]) && (n[u] = null), + (S.event.triggered = d), + e.isPropagationStopped() && f.addEventListener(d, wt), + n[d](), + e.isPropagationStopped() && f.removeEventListener(d, wt), + (S.event.triggered = void 0), + a && (n[u] = a))), + e.result + ); + } + }, + simulate: function (e, t, n) { + var r = S.extend(new S.Event(), n, { type: e, isSimulated: !0 }); + S.event.trigger(r, null, t); + }, + }), + S.fn.extend({ + trigger: function (e, t) { + return this.each(function () { + S.event.trigger(e, t, this); + }); + }, + triggerHandler: function (e, t) { + var n = this[0]; + if (n) return S.event.trigger(e, t, n, !0); + }, + }), + y.focusin || + S.each({ focus: "focusin", blur: "focusout" }, function (n, r) { + var i = function (e) { + S.event.simulate(r, e.target, S.event.fix(e)); + }; + S.event.special[r] = { + setup: function () { + var e = this.ownerDocument || this.document || this, + t = Y.access(e, r); + t || e.addEventListener(n, i, !0), Y.access(e, r, (t || 0) + 1); + }, + teardown: function () { + var e = this.ownerDocument || this.document || this, + t = Y.access(e, r) - 1; + t + ? Y.access(e, r, t) + : (e.removeEventListener(n, i, !0), Y.remove(e, r)); + }, + }; + }); + var Tt = C.location, + Ct = { guid: Date.now() }, + Et = /\?/; + S.parseXML = function (e) { + var t; + if (!e || "string" != typeof e) return null; + try { + t = new C.DOMParser().parseFromString(e, "text/xml"); + } catch (e) { + t = void 0; + } + return ( + (t && !t.getElementsByTagName("parsererror").length) || + S.error("Invalid XML: " + e), + t + ); + }; + var St = /\[\]$/, + kt = /\r?\n/g, + At = /^(?:submit|button|image|reset|file)$/i, + Nt = /^(?:input|select|textarea|keygen)/i; + function Dt(n, e, r, i) { + var t; + if (Array.isArray(e)) + S.each(e, function (e, t) { + r || St.test(n) + ? i(n, t) + : Dt( + n + "[" + ("object" == typeof t && null != t ? e : "") + "]", + t, + r, + i + ); + }); + else if (r || "object" !== w(e)) i(n, e); + else for (t in e) Dt(n + "[" + t + "]", e[t], r, i); + } + (S.param = function (e, t) { + var n, + r = [], + i = function (e, t) { + var n = m(t) ? t() : t; + r[r.length] = + encodeURIComponent(e) + "=" + encodeURIComponent(null == n ? "" : n); + }; + if (null == e) return ""; + if (Array.isArray(e) || (e.jquery && !S.isPlainObject(e))) + S.each(e, function () { + i(this.name, this.value); + }); + else for (n in e) Dt(n, e[n], t, i); + return r.join("&"); + }), + S.fn.extend({ + serialize: function () { + return S.param(this.serializeArray()); + }, + serializeArray: function () { + return this.map(function () { + var e = S.prop(this, "elements"); + return e ? S.makeArray(e) : this; + }) + .filter(function () { + var e = this.type; + return ( + this.name && + !S(this).is(":disabled") && + Nt.test(this.nodeName) && + !At.test(e) && + (this.checked || !pe.test(e)) + ); + }) + .map(function (e, t) { + var n = S(this).val(); + return null == n + ? null + : Array.isArray(n) + ? S.map(n, function (e) { + return { name: t.name, value: e.replace(kt, "\r\n") }; + }) + : { name: t.name, value: n.replace(kt, "\r\n") }; + }) + .get(); + }, + }); + var jt = /%20/g, + qt = /#.*$/, + Lt = /([?&])_=[^&]*/, + Ht = /^(.*?):[ \t]*([^\r\n]*)$/gm, + Ot = /^(?:GET|HEAD)$/, + Pt = /^\/\//, + Rt = {}, + Mt = {}, + It = "*/".concat("*"), + Wt = E.createElement("a"); + function Ft(o) { + return function (e, t) { + "string" != typeof e && ((t = e), (e = "*")); + var n, + r = 0, + i = e.toLowerCase().match(P) || []; + if (m(t)) + while ((n = i[r++])) + "+" === n[0] + ? ((n = n.slice(1) || "*"), (o[n] = o[n] || []).unshift(t)) + : (o[n] = o[n] || []).push(t); + }; + } + function Bt(t, i, o, a) { + var s = {}, + u = t === Mt; + function l(e) { + var r; + return ( + (s[e] = !0), + S.each(t[e] || [], function (e, t) { + var n = t(i, o, a); + return "string" != typeof n || u || s[n] + ? u + ? !(r = n) + : void 0 + : (i.dataTypes.unshift(n), l(n), !1); + }), + r + ); + } + return l(i.dataTypes[0]) || (!s["*"] && l("*")); + } + function $t(e, t) { + var n, + r, + i = S.ajaxSettings.flatOptions || {}; + for (n in t) void 0 !== t[n] && ((i[n] ? e : r || (r = {}))[n] = t[n]); + return r && S.extend(!0, e, r), e; + } + (Wt.href = Tt.href), + S.extend({ + active: 0, + lastModified: {}, + etag: {}, + ajaxSettings: { + url: Tt.href, + type: "GET", + isLocal: + /^(?:about|app|app-storage|.+-extension|file|res|widget):$/.test( + Tt.protocol + ), + global: !0, + processData: !0, + async: !0, + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + accepts: { + "*": It, + text: "text/plain", + html: "text/html", + xml: "application/xml, text/xml", + json: "application/json, text/javascript", + }, + contents: { xml: /\bxml\b/, html: /\bhtml/, json: /\bjson\b/ }, + responseFields: { + xml: "responseXML", + text: "responseText", + json: "responseJSON", + }, + converters: { + "* text": String, + "text html": !0, + "text json": JSON.parse, + "text xml": S.parseXML, + }, + flatOptions: { url: !0, context: !0 }, + }, + ajaxSetup: function (e, t) { + return t ? $t($t(e, S.ajaxSettings), t) : $t(S.ajaxSettings, e); + }, + ajaxPrefilter: Ft(Rt), + ajaxTransport: Ft(Mt), + ajax: function (e, t) { + "object" == typeof e && ((t = e), (e = void 0)), (t = t || {}); + var c, + f, + p, + n, + d, + r, + h, + g, + i, + o, + v = S.ajaxSetup({}, t), + y = v.context || v, + m = v.context && (y.nodeType || y.jquery) ? S(y) : S.event, + x = S.Deferred(), + b = S.Callbacks("once memory"), + w = v.statusCode || {}, + a = {}, + s = {}, + u = "canceled", + T = { + readyState: 0, + getResponseHeader: function (e) { + var t; + if (h) { + if (!n) { + n = {}; + while ((t = Ht.exec(p))) + n[t[1].toLowerCase() + " "] = ( + n[t[1].toLowerCase() + " "] || [] + ).concat(t[2]); + } + t = n[e.toLowerCase() + " "]; + } + return null == t ? null : t.join(", "); + }, + getAllResponseHeaders: function () { + return h ? p : null; + }, + setRequestHeader: function (e, t) { + return ( + null == h && + ((e = s[e.toLowerCase()] = s[e.toLowerCase()] || e), + (a[e] = t)), + this + ); + }, + overrideMimeType: function (e) { + return null == h && (v.mimeType = e), this; + }, + statusCode: function (e) { + var t; + if (e) + if (h) T.always(e[T.status]); + else for (t in e) w[t] = [w[t], e[t]]; + return this; + }, + abort: function (e) { + var t = e || u; + return c && c.abort(t), l(0, t), this; + }, + }; + if ( + (x.promise(T), + (v.url = ((e || v.url || Tt.href) + "").replace( + Pt, + Tt.protocol + "//" + )), + (v.type = t.method || t.type || v.method || v.type), + (v.dataTypes = (v.dataType || "*").toLowerCase().match(P) || [""]), + null == v.crossDomain) + ) { + r = E.createElement("a"); + try { + (r.href = v.url), + (r.href = r.href), + (v.crossDomain = + Wt.protocol + "//" + Wt.host != r.protocol + "//" + r.host); + } catch (e) { + v.crossDomain = !0; + } + } + if ( + (v.data && + v.processData && + "string" != typeof v.data && + (v.data = S.param(v.data, v.traditional)), + Bt(Rt, v, t, T), + h) + ) + return T; + for (i in ((g = S.event && v.global) && + 0 == S.active++ && + S.event.trigger("ajaxStart"), + (v.type = v.type.toUpperCase()), + (v.hasContent = !Ot.test(v.type)), + (f = v.url.replace(qt, "")), + v.hasContent + ? v.data && + v.processData && + 0 === + (v.contentType || "").indexOf( + "application/x-www-form-urlencoded" + ) && + (v.data = v.data.replace(jt, "+")) + : ((o = v.url.slice(f.length)), + v.data && + (v.processData || "string" == typeof v.data) && + ((f += (Et.test(f) ? "&" : "?") + v.data), delete v.data), + !1 === v.cache && + ((f = f.replace(Lt, "$1")), + (o = (Et.test(f) ? "&" : "?") + "_=" + Ct.guid++ + o)), + (v.url = f + o)), + v.ifModified && + (S.lastModified[f] && + T.setRequestHeader("If-Modified-Since", S.lastModified[f]), + S.etag[f] && T.setRequestHeader("If-None-Match", S.etag[f])), + ((v.data && v.hasContent && !1 !== v.contentType) || t.contentType) && + T.setRequestHeader("Content-Type", v.contentType), + T.setRequestHeader( + "Accept", + v.dataTypes[0] && v.accepts[v.dataTypes[0]] + ? v.accepts[v.dataTypes[0]] + + ("*" !== v.dataTypes[0] ? ", " + It + "; q=0.01" : "") + : v.accepts["*"] + ), + v.headers)) + T.setRequestHeader(i, v.headers[i]); + if (v.beforeSend && (!1 === v.beforeSend.call(y, T, v) || h)) + return T.abort(); + if ( + ((u = "abort"), + b.add(v.complete), + T.done(v.success), + T.fail(v.error), + (c = Bt(Mt, v, t, T))) + ) { + if (((T.readyState = 1), g && m.trigger("ajaxSend", [T, v]), h)) + return T; + v.async && + 0 < v.timeout && + (d = C.setTimeout(function () { + T.abort("timeout"); + }, v.timeout)); + try { + (h = !1), c.send(a, l); + } catch (e) { + if (h) throw e; + l(-1, e); + } + } else l(-1, "No Transport"); + function l(e, t, n, r) { + var i, + o, + a, + s, + u, + l = t; + h || + ((h = !0), + d && C.clearTimeout(d), + (c = void 0), + (p = r || ""), + (T.readyState = 0 < e ? 4 : 0), + (i = (200 <= e && e < 300) || 304 === e), + n && + (s = (function (e, t, n) { + var r, + i, + o, + a, + s = e.contents, + u = e.dataTypes; + while ("*" === u[0]) + u.shift(), + void 0 === r && + (r = e.mimeType || t.getResponseHeader("Content-Type")); + if (r) + for (i in s) + if (s[i] && s[i].test(r)) { + u.unshift(i); + break; + } + if (u[0] in n) o = u[0]; + else { + for (i in n) { + if (!u[0] || e.converters[i + " " + u[0]]) { + o = i; + break; + } + a || (a = i); + } + o = o || a; + } + if (o) return o !== u[0] && u.unshift(o), n[o]; + })(v, T, n)), + !i && + -1 < S.inArray("script", v.dataTypes) && + (v.converters["text script"] = function () {}), + (s = (function (e, t, n, r) { + var i, + o, + a, + s, + u, + l = {}, + c = e.dataTypes.slice(); + if (c[1]) + for (a in e.converters) l[a.toLowerCase()] = e.converters[a]; + o = c.shift(); + while (o) + if ( + (e.responseFields[o] && (n[e.responseFields[o]] = t), + !u && r && e.dataFilter && (t = e.dataFilter(t, e.dataType)), + (u = o), + (o = c.shift())) + ) + if ("*" === o) o = u; + else if ("*" !== u && u !== o) { + if (!(a = l[u + " " + o] || l["* " + o])) + for (i in l) + if ( + (s = i.split(" "))[1] === o && + (a = l[u + " " + s[0]] || l["* " + s[0]]) + ) { + !0 === a + ? (a = l[i]) + : !0 !== l[i] && ((o = s[0]), c.unshift(s[1])); + break; + } + if (!0 !== a) + if (a && e["throws"]) t = a(t); + else + try { + t = a(t); + } catch (e) { + return { + state: "parsererror", + error: a + ? e + : "No conversion from " + u + " to " + o, + }; + } + } + return { state: "success", data: t }; + })(v, s, T, i)), + i + ? (v.ifModified && + ((u = T.getResponseHeader("Last-Modified")) && + (S.lastModified[f] = u), + (u = T.getResponseHeader("etag")) && (S.etag[f] = u)), + 204 === e || "HEAD" === v.type + ? (l = "nocontent") + : 304 === e + ? (l = "notmodified") + : ((l = s.state), (o = s.data), (i = !(a = s.error)))) + : ((a = l), (!e && l) || ((l = "error"), e < 0 && (e = 0))), + (T.status = e), + (T.statusText = (t || l) + ""), + i ? x.resolveWith(y, [o, l, T]) : x.rejectWith(y, [T, l, a]), + T.statusCode(w), + (w = void 0), + g && m.trigger(i ? "ajaxSuccess" : "ajaxError", [T, v, i ? o : a]), + b.fireWith(y, [T, l]), + g && + (m.trigger("ajaxComplete", [T, v]), + --S.active || S.event.trigger("ajaxStop"))); + } + return T; + }, + getJSON: function (e, t, n) { + return S.get(e, t, n, "json"); + }, + getScript: function (e, t) { + return S.get(e, void 0, t, "script"); + }, + }), + S.each(["get", "post"], function (e, i) { + S[i] = function (e, t, n, r) { + return ( + m(t) && ((r = r || n), (n = t), (t = void 0)), + S.ajax( + S.extend( + { url: e, type: i, dataType: r, data: t, success: n }, + S.isPlainObject(e) && e + ) + ) + ); + }; + }), + S.ajaxPrefilter(function (e) { + var t; + for (t in e.headers) + "content-type" === t.toLowerCase() && + (e.contentType = e.headers[t] || ""); + }), + (S._evalUrl = function (e, t, n) { + return S.ajax({ + url: e, + type: "GET", + dataType: "script", + cache: !0, + async: !1, + global: !1, + converters: { "text script": function () {} }, + dataFilter: function (e) { + S.globalEval(e, t, n); + }, + }); + }), + S.fn.extend({ + wrapAll: function (e) { + var t; + return ( + this[0] && + (m(e) && (e = e.call(this[0])), + (t = S(e, this[0].ownerDocument).eq(0).clone(!0)), + this[0].parentNode && t.insertBefore(this[0]), + t + .map(function () { + var e = this; + while (e.firstElementChild) e = e.firstElementChild; + return e; + }) + .append(this)), + this + ); + }, + wrapInner: function (n) { + return m(n) + ? this.each(function (e) { + S(this).wrapInner(n.call(this, e)); + }) + : this.each(function () { + var e = S(this), + t = e.contents(); + t.length ? t.wrapAll(n) : e.append(n); + }); + }, + wrap: function (t) { + var n = m(t); + return this.each(function (e) { + S(this).wrapAll(n ? t.call(this, e) : t); + }); + }, + unwrap: function (e) { + return ( + this.parent(e) + .not("body") + .each(function () { + S(this).replaceWith(this.childNodes); + }), + this + ); + }, + }), + (S.expr.pseudos.hidden = function (e) { + return !S.expr.pseudos.visible(e); + }), + (S.expr.pseudos.visible = function (e) { + return !!(e.offsetWidth || e.offsetHeight || e.getClientRects().length); + }), + (S.ajaxSettings.xhr = function () { + try { + return new C.XMLHttpRequest(); + } catch (e) {} + }); + var _t = { 0: 200, 1223: 204 }, + zt = S.ajaxSettings.xhr(); + (y.cors = !!zt && "withCredentials" in zt), + (y.ajax = zt = !!zt), + S.ajaxTransport(function (i) { + var o, a; + if (y.cors || (zt && !i.crossDomain)) + return { + send: function (e, t) { + var n, + r = i.xhr(); + if ( + (r.open(i.type, i.url, i.async, i.username, i.password), + i.xhrFields) + ) + for (n in i.xhrFields) r[n] = i.xhrFields[n]; + for (n in (i.mimeType && + r.overrideMimeType && + r.overrideMimeType(i.mimeType), + i.crossDomain || + e["X-Requested-With"] || + (e["X-Requested-With"] = "XMLHttpRequest"), + e)) + r.setRequestHeader(n, e[n]); + (o = function (e) { + return function () { + o && + ((o = + a = + r.onload = + r.onerror = + r.onabort = + r.ontimeout = + r.onreadystatechange = + null), + "abort" === e + ? r.abort() + : "error" === e + ? "number" != typeof r.status + ? t(0, "error") + : t(r.status, r.statusText) + : t( + _t[r.status] || r.status, + r.statusText, + "text" !== (r.responseType || "text") || + "string" != typeof r.responseText + ? { binary: r.response } + : { text: r.responseText }, + r.getAllResponseHeaders() + )); + }; + }), + (r.onload = o()), + (a = r.onerror = r.ontimeout = o("error")), + void 0 !== r.onabort + ? (r.onabort = a) + : (r.onreadystatechange = function () { + 4 === r.readyState && + C.setTimeout(function () { + o && a(); + }); + }), + (o = o("abort")); + try { + r.send((i.hasContent && i.data) || null); + } catch (e) { + if (o) throw e; + } + }, + abort: function () { + o && o(); + }, + }; + }), + S.ajaxPrefilter(function (e) { + e.crossDomain && (e.contents.script = !1); + }), + S.ajaxSetup({ + accepts: { + script: + "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript", + }, + contents: { script: /\b(?:java|ecma)script\b/ }, + converters: { + "text script": function (e) { + return S.globalEval(e), e; + }, + }, + }), + S.ajaxPrefilter("script", function (e) { + void 0 === e.cache && (e.cache = !1), e.crossDomain && (e.type = "GET"); + }), + S.ajaxTransport("script", function (n) { + var r, i; + if (n.crossDomain || n.scriptAttrs) + return { + send: function (e, t) { + (r = S(" + + + + + + + + + Loading +
{% include '/index.html' %}
+
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/templates/cart.html b/templates/cart.html new file mode 100644 index 0000000..a91e051 --- /dev/null +++ b/templates/cart.html @@ -0,0 +1,100 @@ +{% extends "/base_website.html" %} {% block title %}New Website{% endblock %} {% +block html_head %} + + + +Antler - Hosting Provider & WHMCS Template + + + + +{% endblock %} {% block page %} +
+ + + + +
+
+
+
+
+

Cart

+

Please Complete Your Order Bekiw

+
+
+
+
+
+ +
+
+
+
+ +
+
+
+
+ + + + + + + {% endblock %} {% block footerjs %} + + + + {% endblock %} +
diff --git a/templates/category.html b/templates/category.html new file mode 100644 index 0000000..3de7b23 --- /dev/null +++ b/templates/category.html @@ -0,0 +1,110 @@ +
+ +
+ +
+
+
+
+
+
+

+ {{server_category.name}} + {{server_category.category}} +

+
+
+ {{server_category.category_image}} +
+
+

{{server_category.server_title}}

+
+
+ {% for p in details_list %} +

{{p}}

+ {% endfor %} +
+ {% if server_category.server_highlights %} +
+
{{ server_category.server_highlights }}
+
Supports:
+
    + {% for detail in server_highlights_detail %} +
  • {{ detail }}
  • + {% endfor %} +
+
+ {% endif %} + +
+

+ Configure & Buy : +

+
+
+
+ +
+
+ Filter +
+
CPU
+
CPU
+
CPU
+
CPU
+
CPU
+
CPU
+
CPU
+
+
+ {% for product in products %} +
+
+
+ {{product.image_url}} +
+

{{ product.product_name}}

+
    + {% for detail in product.details %} +
  • {{detail}}
  • + {% endfor %} +
+ +
+
+ {% endfor %} +
+
+
+
+
+
+ +
diff --git a/templates/config.html b/templates/config.html new file mode 100644 index 0000000..f282c90 --- /dev/null +++ b/templates/config.html @@ -0,0 +1,102 @@ +
+
+
+
+
{{ config_data.category.name }}
+
+ + {% if config_data.category.max_quantity is not none %} + + Max Quantity: {{ config_data.category.max_quantity }} + + {% endif %} +
+
+ {{ config_data.category.name }} + +
+ + {% if config_data.category.sub_category %} + + {% for sub_category in config_data.category.sub_category %} {% set + outer_index = loop.index0 %} +
+ {{ sub_category.name }} +
+
    + {% for item in sub_category.config %} +
  • + + +
  • + {% endfor %} +
+ {% endfor %} {% else %} + +
    + {% for item in config_data.category.config %} +
  • + + +
  • + {% endfor %} +
+ {% endif %} +
+
+
+
diff --git a/templates/htmx_elements/options.html b/templates/htmx_elements/options.html new file mode 100644 index 0000000..1c6bdc1 --- /dev/null +++ b/templates/htmx_elements/options.html @@ -0,0 +1,30 @@ +
+ {% if options %} + + + + + + + + + {% for option in options %} + + + + + {% endfor %} + +
Option NamePrice (€)
{{ option.option_name }} + {{ option.option_price }} +
+ {% else %} +

+ No options available for this configuration. +

+ {% endif %} +
diff --git a/templates/htmx_elements/server_card.html b/templates/htmx_elements/server_card.html new file mode 100644 index 0000000..86d2c26 --- /dev/null +++ b/templates/htmx_elements/server_card.html @@ -0,0 +1,27 @@ +
+ {% for product in products_by_category %} +
+
+
+
+ {{product.image}} +

+ {{ product.name }} +

+ + See now ! +
+
+
+ {% endfor %} +
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..44ad274 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,243 @@ +
+ +
+
+
+
+
+
+ +
+
+
+
+
+

About Us

+
+

Why Choose Us?

+
    +
  • + Best hosting provider +
  • +
+
    +
  • + Award cloud infrastructure +
  • +
+
    +
  • + Awesome control panels +
  • +
+
    +
  • + Reference Domain solutions +
  • +
+
    +
  • + Support Premium 24/7/365 +
  • +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ +
1000+ Servers Available
+
+ We have a wide range of servers to choose from, so you can find + the perfect one for your needs. +
+
+
+
+
+
+
top
+
+ +
+1500 Componants Avaialble
+
+ We have a huge selection of components to choose from. +
+
+
+
+
+
+
+ +
+
+
+
+
+

Our Best Selling Servers

+

+ Discover our best servers with unbeatable performance and top-tier + reliability, all at the best prices! Whether you're launching a + website, gaming, or running apps, we've got the perfect solution. + Get started today with power, speed, and support! +

+
+ {% for category in categories[:3] %} +
+
+
+ {{category['products'][0].image_url}} +
+

{{ category['products'][0].product_name }}

+
    + {% for detail in category['products'][0].details %} +
  • {{detail}}
  • + {% endfor %} +
+ + Configure Now ! + +
+
+ {% endfor%} +
+
+
+
+ +
+
+
+
+
+

+ Check out Our best selling components +

+

+ checkout our best selling components and services, and get the + best deals on the market. Our components are designed to provide + you with the best performance and reliability, so you can focus on + what matters most - your business. +

+
+
+
+
+ {% for category in categories[3:6] %} {% if category['products'] + %} + +
+
+
+ {{category['products'][0].image_url}} +
+

{{ category['products'][0].product_name }}

+
    + {% for detail in category['products'][0].details %} +
  • {{detail}}
  • + {% endfor %} +
+ + Configure Now ! + +
+
+ + {% endif %} {% endfor %} +
+
+
+
+
+
+
+
diff --git a/templates/order.html b/templates/order.html new file mode 100644 index 0000000..f199e89 --- /dev/null +++ b/templates/order.html @@ -0,0 +1,84 @@ + diff --git a/templates/product.html b/templates/product.html new file mode 100644 index 0000000..b1c1072 --- /dev/null +++ b/templates/product.html @@ -0,0 +1,163 @@ +
+
+ +
+
+
+
+
+
+
+

+ {{category_data.category}} {{product.product_name}} +

+

{{product.product_data.description}}

+ {% if product.product_data.use_cases %} +
+ Ideal {{category_data.category}} Use Cases +
+
    + {% for cases in product.product_data.use_cases %} +
  • {{cases}}
  • + {% endfor %} +
+ {% endif %} +
+
+ {% if product.product_data.specifications %} +

Specifications:

+ + + + {% for key, value in + product.product_data.specifications.items() %} + + + + + {% endfor%} + +
+ {{key}} + {{value}}
+ {% endif %} {% if product.product_data.industries %} +
+
Industries :
+
+ {% endif %} +
+ {% for industry in product.product_data.industries %} +
+ + {{ industry }} +
+ {% endfor %} +
+
+
+
Configurator :
+
+
+ +
+
+
+
+ {% for config in product.product_data.config %} + + {{config.category.name}} + + {% endfor %} +
+ +
+ {% include '/config.html' %} +
+
+
+ Loading +
+ +
+
+
+
+
+
+
+
diff --git a/templates/servers.html b/templates/servers.html new file mode 100644 index 0000000..4b04d79 --- /dev/null +++ b/templates/servers.html @@ -0,0 +1,137 @@ +
+ +
+
+
+
+
+

+ FelCloud sets the standard for server excellence. +

+
+

+ Our commitment to precision engineering, reliability, and + personalized support ensures each system delivers the power, + scalability, and dependability to drive your goals forward. +

+
+
+
+
+
+
+     + Server Excellence Standard +
+
+
+ FelCloud sets the benchmark for exceptional server performance, + providing unmatched reliability and top-tier solutions for your + business needs. +
+
+
+
+ +
+
+
+     + Three-Year Warranty +
+
+
+ Our Three-Year Warranty ensures long-lasting reliability, + offering full protection, expert service, and advanced parts + replacement for complete peace of mind. +
+
+
+
+ +
+
+
+     + Real People, Real Support +
+
+
+ Our customer service team provides personalized, real-time + support, ensuring that all concerns are addressed quickly and + efficiently with no automated systems. +
+
+
+
+ +
+
+
+     + Outperforming Giants +
+
+
+ We excel by fostering direct supplier relationships, ensuring + competitive pricing, and offering fully customized systems that + guarantee superior performance. +
+
+
+
+
+
+
+ +
+
+
+
+
+

Our Servers Types

+

+ Explore our diverse range of server types, each designed to meet + specific needs and deliver optimal performance for your + applications. +

+
+
+
+ {% for category in servers %} +
+
+
+ {{nav_image}} +
+ +

{{category.description}}

+
+
+ {% endfor %} +
+
+
+
+ +