<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sogpf.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Slow</id>
	<title>Savage Game Design Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sogpf.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Slow"/>
	<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php/Special:Contributions/Slow"/>
	<updated>2026-04-07T19:11:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.33.0</generator>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=Radio_Support&amp;diff=12517</id>
		<title>Radio Support</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=Radio_Support&amp;diff=12517"/>
		<updated>2025-07-15T14:03:39Z</updated>

		<summary type="html">&lt;p&gt;Slow: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Radio Support Module ==&lt;br /&gt;
&lt;br /&gt;
==== This page will guide you through adding the Radio Support module to your mission. ====&lt;br /&gt;
This module allows players to request radio support to assist them with taking out enemies.&amp;lt;br/&amp;gt;&lt;br /&gt;
Mission creators can set up their own call signs including custom names, icons, descriptions, conditions, and more.&lt;br /&gt;
&lt;br /&gt;
==== Eden Editor ====&lt;br /&gt;
To add the module to your mission all you need to do is place the module '''Radio Support''' into your mission.&lt;br /&gt;
&lt;br /&gt;
==== Configuration Files ====&lt;br /&gt;
This module works off a single config class, this can either be one located in the CDLC, or one located in the missions '''description.ext'''.&amp;lt;br/&amp;gt;&lt;br /&gt;
Use the [https://pastebin.com/embed_iframe/h9LTQELR '''default CDLC config'''] as a starting point for your own config.&amp;lt;br/&amp;gt;&lt;br /&gt;
''Be aware, the '''#define'''\'s listed at the top of the file are used later in the config to reduce duplication.''&lt;br /&gt;
&lt;br /&gt;
Starting from the top of the example config there are nine values which can be changed,&lt;br /&gt;
* '''cost_variable'''&lt;br /&gt;
** This is the name of a number variable which can be used to make players 'pay' for each request, each callsign will have a 'cost' value which players will need to have a higher or equal cost variable to request successfully.&lt;br /&gt;
* '''availability'''&lt;br /&gt;
** This is the main availability array, this lets you quickly and easily determine how players should have access to the radio support action.&lt;br /&gt;
** Each item in the array can either be true '1' or false '0', each index in the array will change when the action is shown&lt;br /&gt;
** '''{Action will always be avaliable, Unit's backpack is in the `radio_backpacks` array, Unit's vehicle is in the `radio_vehicles` array, Unit's classname is in the `player_types` array, Unit has the `vn_artillery` unit trait}'''&lt;br /&gt;
* '''danger_distance'''&lt;br /&gt;
** This is the minimum distance to respawn markers that a request can be called. Requests that fall within this distance will not be completed.&lt;br /&gt;
* '''delay_max'''&lt;br /&gt;
** Maximum delay for the support to arrive, regardless of the time calculated from distance to support module.&lt;br /&gt;
* '''captive'''&lt;br /&gt;
** Determines if the support planes/helicopters will be set to captive.&lt;br /&gt;
* '''unit_trait_required'''&lt;br /&gt;
** Set this to '''1''' to only show the option to units that have the '''vn_artillery''' unit trait, does the same thing as setting the last value in the availability array to '''1'''.&lt;br /&gt;
* '''radio_backpacks'''&lt;br /&gt;
** This is a list of backpacks which will be considered radio backpacks for the availability array above.&lt;br /&gt;
* '''radio_vehicles'''&lt;br /&gt;
** This is a list of vehicles which will be considered vehicles with radios for the availability array above.&lt;br /&gt;
* '''player_types'''&lt;br /&gt;
** This is a list of unit class names which will be given the action when setup in the availability array above.&lt;br /&gt;
&lt;br /&gt;
After these options there are four child classes, '''aircraft''', '''artillery''', '''resupply''', and '''transport''', these child classes will contain the options that will be available to players.&amp;lt;br/&amp;gt;&lt;br /&gt;
Classes in the '''aircraft''' class will be shown to players when they select the &amp;quot;Air Support&amp;quot; option on the radio.&amp;lt;br/&amp;gt;&lt;br /&gt;
Classes in the '''artillery''' class will be shown to players when they select the &amp;quot;Fire Support&amp;quot; option on the radio.&amp;lt;br/&amp;gt;&lt;br /&gt;
Classes in the '''resupply''' class will be shown to players when they select the &amp;quot;Resupply&amp;quot; option on the radio.&amp;lt;br/&amp;gt;&lt;br /&gt;
Classes in the '''transport''' class will be shown to players when they select the &amp;quot;Transport&amp;quot; option on the radio.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Inside these classes there are sub category classes, these classes will be the option on the left hand side of the radio support menu.&amp;lt;br/&amp;gt;&lt;br /&gt;
Each sub category class needs a '''displayname''' attribute which will be the name of the category.&amp;lt;br/&amp;gt;&lt;br /&gt;
Within the sub category class you can add the options that will be available to players.&lt;br /&gt;
&lt;br /&gt;
==== Artillery Attributes ====&lt;br /&gt;
Each artillery option can have the following attributes,&lt;br /&gt;
* '''displayname'''&lt;br /&gt;
** This is the name of the option that will be shown to the user&lt;br /&gt;
* '''icon'''&lt;br /&gt;
** This is the icon which will be shown beside the option, can be left empty if you don't want an icon for this option.&lt;br /&gt;
* '''description'''&lt;br /&gt;
** This is the description of the option, this will usually consist of a sentence which goes into detail about the weapons and vehicle used in the option.&lt;br /&gt;
* '''ammo'''&lt;br /&gt;
** This is an array of ammo classes which will be spawned and then explode when hitting the ground&lt;br /&gt;
* '''divergence'''&lt;br /&gt;
** This is the distance for in both x &amp;amp; y directions that the position can differ from the users selected position&lt;br /&gt;
* '''delay_max'''&lt;br /&gt;
** Maximum delay for the support to arrive, regardless of the time calculated from distance to support module. Overwrites main config.&lt;br /&gt;
* '''allow_double'''&lt;br /&gt;
** This will allow the user to fire the ammo twice, doubling the amount of explosives&lt;br /&gt;
* '''count'''&lt;br /&gt;
** This is how many times each ammo class will be spawned&lt;br /&gt;
* '''cooldown'''&lt;br /&gt;
** This is how long users will need to wait before requesting this again&lt;br /&gt;
* '''tickets'''&lt;br /&gt;
** This is how many times the user can call this before it cannot be called again&lt;br /&gt;
* '''cost'''&lt;br /&gt;
** This is the cost of this option if using the cost variable&lt;br /&gt;
* '''illumination'''&lt;br /&gt;
** Is this an illumination round, affects the voice when requesting&lt;br /&gt;
* '''function'''&lt;br /&gt;
** If a function is defined then the function will run instead of any explosive being spawned&lt;br /&gt;
* '''condition'''&lt;br /&gt;
** The condition which must return true for this option to be shown in the list&lt;br /&gt;
* '''speed'''&lt;br /&gt;
** This is the speed of the request, used to determine how long the user should wait before the ammo starts to explode.&lt;br /&gt;
&lt;br /&gt;
==== Aircraft Attributes ====&lt;br /&gt;
Each aircraft option can have the following attributes,&lt;br /&gt;
* '''displayname'''&lt;br /&gt;
** This is the name of the option that will be shown to the user&lt;br /&gt;
* '''icon'''&lt;br /&gt;
** This is the icon which will be shown beside the option, can be left empty if you don't want an icon for this option.&lt;br /&gt;
* '''description'''&lt;br /&gt;
** This is the description of the option, this will usually consist of a sentence which goes into detail about the weapons and vehicle used in the option.&lt;br /&gt;
* '''vehicleclass'''&lt;br /&gt;
** This is the classname of the vehicle which will be used to complete the request, should be either a helicopter or a plane&lt;br /&gt;
* '''divergence'''&lt;br /&gt;
** This is the danger distance for the request, used to let users know how large of an area will be hit by the aircraft&lt;br /&gt;
* '''allow_double'''&lt;br /&gt;
** This will allow the user to request two aircraft at the same time&lt;br /&gt;
* '''cooldown'''&lt;br /&gt;
** This is how long users will need to wait before requesting this again&lt;br /&gt;
* '''tickets'''&lt;br /&gt;
** This is how many times the user can call this before it cannot be called again&lt;br /&gt;
* '''cost'''&lt;br /&gt;
** This is the cost of this option if using the cost variable&lt;br /&gt;
* '''illumination'''&lt;br /&gt;
** Is this an illumination request, affects the voice when requesting&lt;br /&gt;
* '''function'''&lt;br /&gt;
** If a function is defined then the function will run instead of any vehicles being spawned&lt;br /&gt;
* '''condition'''&lt;br /&gt;
** The condition which must return true for this option to be shown in the list&lt;br /&gt;
* '''magazines'''&lt;br /&gt;
** This is the array of pylon magazines which will be added to the vehicles pylons&lt;br /&gt;
&lt;br /&gt;
==== Resupply Attributes ====&lt;br /&gt;
Each resupply option can have the following attributes,&lt;br /&gt;
* '''displayname'''&lt;br /&gt;
** This is the name of the option that will be shown to the user&lt;br /&gt;
* '''icon'''&lt;br /&gt;
** This is the icon which will be shown beside the option, can be left empty if you don't want an icon for this option.&lt;br /&gt;
* '''description'''&lt;br /&gt;
** This is the description of the option, this will usually consist of a sentence which goes into detail about the container and aircraft used in the option.&lt;br /&gt;
* '''vehicleclass'''&lt;br /&gt;
** This is the classname of the vehicle which will be used to complete the request, should be either a helicopter or a plane.&lt;br /&gt;
* '''containerclass'''&lt;br /&gt;
** This is the classname of the container which will be used to complete the request, should be a container either with or without items.&lt;br /&gt;
* '''items'''&lt;br /&gt;
** This is the array of items which will be added to the container, can be left empty if you want to use the items alraedy in the container.&lt;br /&gt;
* '''cooldown'''&lt;br /&gt;
** This is how long users will need to wait before requesting this again&lt;br /&gt;
* '''cost'''&lt;br /&gt;
** This is the cost of this option if using the cost variable&lt;br /&gt;
&lt;br /&gt;
==== Transport Attributes ====&lt;br /&gt;
Each transport option can have the following attributes,&lt;br /&gt;
* '''displayname'''&lt;br /&gt;
** This is the name of the option that will be shown to the user&lt;br /&gt;
* '''icon'''&lt;br /&gt;
** This is the icon which will be shown beside the option, can be left empty if you don't want an icon for this option.&lt;br /&gt;
* '''description'''&lt;br /&gt;
** This is the description of the option, this will usually consist of a sentence which goes into detail about the vehicle used in the option.&lt;br /&gt;
* '''vehicleclass'''&lt;br /&gt;
** This is the classname of the vehicle which will be used to complete the request, should be a helicopter with spare seats for transport.&lt;br /&gt;
* '''hook'''&lt;br /&gt;
** This is an old attribute which is no longer used, does not need to be included.&lt;br /&gt;
* '''cooldown'''&lt;br /&gt;
** This is how long users will need to wait before requesting this again&lt;br /&gt;
* '''cost'''&lt;br /&gt;
** This is the cost of this option if using the cost variable&lt;br /&gt;
&lt;br /&gt;
==== During Gameplay ====&lt;br /&gt;
Players can access the radio support menu through the scroll wheel action menu.&amp;lt;br/&amp;gt;&lt;br /&gt;
The radio at the top of the menu has an interactable knob which switches between &amp;quot;Air Support&amp;quot;, &amp;quot;Fire Support&amp;quot;, &amp;quot;Transport&amp;quot;, and &amp;quot;Resupply&amp;quot;.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Players can then select the category and callsign of their request, then left click and drag on the map to select the:&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Air Support:''' Position and direction for the aircraft's run&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Fire Support:''' Start and end location for the artillery run.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Transport:''' Pickup and original drop off location.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Resupply:''' Position and direction of the resupply run.&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Then they can choose between a normal or heavy request for options which have '''allow_double''' set to true, then press the confirm button to send the request.&lt;br /&gt;
&lt;br /&gt;
[[Category: Modules]]&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=VNX_CfgVehicles_Equipment&amp;diff=12516</id>
		<title>VNX CfgVehicles Equipment</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=VNX_CfgVehicles_Equipment&amp;diff=12516"/>
		<updated>2024-12-23T18:49:46Z</updated>

		<summary type="html">&lt;p&gt;Slow: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:VNX AssetsMenu}}&amp;lt;br /&amp;gt;&lt;br /&gt;
{| class=&amp;quot;wikitable sortable&amp;quot; border=&amp;quot;1&amp;quot; style=&amp;quot;border-collapse:collapse; font-size:80%;&amp;quot; cellpadding=&amp;quot;3px&amp;quot;&lt;br /&gt;
! Ver.&amp;lt;br /&amp;gt;&lt;br /&gt;
! Preview&amp;lt;br /&amp;gt;&lt;br /&gt;
! Class Name&amp;lt;br /&amp;gt;&lt;br /&gt;
! Display Name&amp;lt;br /&amp;gt;&lt;br /&gt;
! Side&amp;lt;br /&amp;gt;&lt;br /&gt;
! Category&amp;lt;br /&amp;gt;&lt;br /&gt;
! Subcategory&amp;lt;br /&amp;gt;&lt;br /&gt;
! Scope&amp;lt;br /&amp;gt;&lt;br /&gt;
! Addons&amp;lt;br /&amp;gt;&lt;br /&gt;
! Features&amp;lt;br /&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_uniform_cwu_01.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_uniform_item_cwu_01&amp;quot; &amp;gt;'''vnx_b_uniform_item_cwu_01'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''CWU-28/P Jet Summer suit''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Uniforms (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_uniform_cwu_02.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_uniform_item_cwu_02&amp;quot; &amp;gt;'''vnx_b_uniform_item_cwu_02'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''CWU-28/P Summer suit''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Uniforms (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_helmet_hgu7_01_01.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_helmet_hgu7_01_01&amp;quot; &amp;gt;'''vnx_b_helmet_hgu7_01_01'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Helmet HGU-7-P (White)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Headgear (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_helmet_hgu7_01_02.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_helmet_hgu7_01_02&amp;quot; &amp;gt;'''vnx_b_helmet_hgu7_01_02'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Helmet HGU-7-P (Tape)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Headgear (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_helmet_hgu7_01_03.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_helmet_hgu7_01_03&amp;quot; &amp;gt;'''vnx_b_helmet_hgu7_01_03'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Helmet HGU-7-P (Camo)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Headgear (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_helmet_hgu7_01_04.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_helmet_hgu7_01_04&amp;quot; &amp;gt;'''vnx_b_helmet_hgu7_01_04'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Helmet HGU-7-P (Black)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Headgear (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_helmet_hgu7_02_01.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_helmet_hgu7_02_01&amp;quot; &amp;gt;'''vnx_b_helmet_hgu7_02_01'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Helmet HGU-7-P (Visor/White)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Headgear (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_helmet_hgu7_02_02.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_helmet_hgu7_02_02&amp;quot; &amp;gt;'''vnx_b_helmet_hgu7_02_02'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Helmet HGU-7-P (Visor/Tape)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Headgear (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_b_helmet_hgu7_02_03.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_b_helmet_hgu7_02_03&amp;quot; &amp;gt;'''vnx_b_helmet_hgu7_02_03'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Helmet HGU-7-P (Visor/Camo)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Headgear (MACV)&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#characters_f_vietnam_05_c|characters_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m77e.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_m77e&amp;quot; &amp;gt;'''vnx_m77e'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M77E''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m77e_shorty.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_m77e_shorty&amp;quot; &amp;gt;'''vnx_m77e_shorty'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M77E (Sawn-off)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m77e_buck_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_m77e_buck&amp;quot; &amp;gt;'''vnx_magazine_m77e_buck'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M77E Buck]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m77e_fl_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_m77e_fl&amp;quot; &amp;gt;'''vnx_magazine_m77e_fl'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M77E Flechette]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m77e_so_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_m77e_so&amp;quot; &amp;gt;'''vnx_magazine_m77e_so'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M77E Sawn-off]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_fm2429.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_lmg_fm2429&amp;quot; &amp;gt;'''vnx_lmg_fm2429'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''FM24/29 LMG''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_fm2429_aa.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_lmg_fm2429_aa&amp;quot; &amp;gt;'''vnx_lmg_fm2429_aa'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''FM24/29 (AA) LMG''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_fm2429_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_arifle_fm2429&amp;quot; &amp;gt;'''vnx_magazine_arifle_fm2429'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''25Rnd. FM24/29 Mag''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_fm2429_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_arifle_fm2429_t&amp;quot; &amp;gt;'''vnx_magazine_arifle_fm2429_t'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''25Rnd. FM24/29 Mag (Tracer)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_o_aa_fm2429.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_o_aa_fm2429&amp;quot; &amp;gt;'''vnx_o_aa_fm2429'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Optic (FM24/29 AA)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapon Accessories&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_gjet.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_hgun_gjet&amp;quot; &amp;gt;'''vnx_hgun_gjet'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''G-jet''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_hd_02_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_hgun_gjet&amp;quot; &amp;gt;'''vnx_magazine_hgun_gjet'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [G-jet]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_hd_02.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_hgun_hd_02&amp;quot; &amp;gt;'''vnx_hgun_hd_02'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''HD''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vn_hd_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vn_magazine_hgun_hd_02&amp;quot; &amp;gt;'''vn_magazine_hgun_hd_02'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [HD]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_l1a1_04.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_arifle_l1a1_04&amp;quot; &amp;gt;'''vnx_arifle_l1a1_04'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''L1A1 (shorty)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_l1a1_04_camo.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_arifle_l1a1_04_camo&amp;quot; &amp;gt;'''vnx_arifle_l1a1_04_camo'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''L1A1 (shorty/Camo)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_l1a1_05.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_arifle_l1a1_05&amp;quot; &amp;gt;'''vnx_arifle_l1a1_05'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''L1A1 (SAS shorty)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_l1a1_05_camo.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_arifle_l1a1_05_camo&amp;quot; &amp;gt;'''vnx_arifle_l1a1_05_camo'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''L1A1 (SAS/shorty/Camo)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m12_smg.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_smg_m12&amp;quot; &amp;gt;'''vnx_smg_m12'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M12 Submachinegun''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m12_smg_fold.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_smg_m12_fold&amp;quot; &amp;gt;'''vnx_smg_m12_fold'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M12 Submachinegun (Folded)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m12_smg_32_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_smg_m12_32&amp;quot; &amp;gt;'''vnx_magazine_smg_m12_32'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M12 32Rnd.]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m12_smg_32_t_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_smg_m12_32_t&amp;quot; &amp;gt;'''vnx_magazine_smg_m12_32_t'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M12 32Rnd. Tracer]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m12_smg_20_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_smg_m12_20&amp;quot; &amp;gt;'''vnx_magazine_smg_m12_20'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M12 20Rnd.]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m12_smg_20_t_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_smg_m12_20_t&amp;quot; &amp;gt;'''vnx_magazine_smg_m12_20_t'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M12 20Rnd. Tracer]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m45_sf.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_smg_m45_sf&amp;quot; &amp;gt;'''vnx_smg_m45_sf'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M/45 (Foregrip)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m45_sf_sd.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_smg_m45_sf_sd&amp;quot; &amp;gt;'''vnx_smg_m45_sf_sd'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M/45 (Foregrip/S)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m50_smg.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_smg_m50&amp;quot; &amp;gt;'''vnx_smg_m50'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M50 Submachinegun''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m50_smg_fold.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_smg_m50_fold&amp;quot; &amp;gt;'''vnx_smg_m50_fold'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''M50 Submachinegun (Folded)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m50_smg_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_smg_m50&amp;quot; &amp;gt;'''vnx_magazine_smg_m50'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M50]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_m50_smg_t_mag.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_magazine_smg_m50_t&amp;quot; &amp;gt;'''vnx_magazine_smg_m50_t'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Magazine [M50 Tracer]''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Magazines&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|-&lt;br /&gt;
| 1.0&lt;br /&gt;
|[[File:preview_vnx_type56_xm148.jpg|150px|&amp;amp;nbsp;]]&lt;br /&gt;
| &amp;lt;span id=&amp;quot;vnx_type56_xm148&amp;quot; &amp;gt;'''vnx_type56_xm148'''&amp;lt;/span&amp;gt;&lt;br /&gt;
| ''Type 56 (XM148)''&lt;br /&gt;
| style='background-color:#dac2e1;' | Civilian&lt;br /&gt;
| Vietnam Objects/Structures&lt;br /&gt;
| Weapons&lt;br /&gt;
| style='background-color:#c2e1c2;' | Public&lt;br /&gt;
| &lt;br /&gt;
:[[VNX CfgPatches CfgVehicles#weapons_f_vietnam_05_c|weapons_f_vietnam_05_c]]&lt;br /&gt;
&lt;br /&gt;
| '''Randomization:''' No						&lt;br /&gt;
&lt;br /&gt;
'''Camo&amp;amp;nbsp;selections:'''&amp;amp;nbsp;0						&lt;br /&gt;
&lt;br /&gt;
'''Slingloadable:''' No&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;small style=&amp;quot;color:grey;&amp;quot;&amp;gt;Generated by [[VN_exportCfgVehiclesAssetDB]] in [[Arma 3]] version 2.18.152405 by [[User:Slow|Slow]] ([[User talk:Slow|talk]]) 18:22, 23 December 2024 (UTC)&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;{{Template:VNX AssetsMenu}}&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_01_vc.jpg&amp;diff=12514</id>
		<title>File:Preview vnx o wheeled tuktuk mg 01 vc.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_01_vc.jpg&amp;diff=12514"/>
		<updated>2024-12-23T18:29:53Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_wheeled_tuktuk_mg_01_wreck.jpg&amp;diff=12511</id>
		<title>File:Preview vnx wheeled tuktuk mg 01 wreck.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_wheeled_tuktuk_mg_01_wreck.jpg&amp;diff=12511"/>
		<updated>2024-12-23T18:29:52Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_02_kr.jpg&amp;diff=12512</id>
		<title>File:Preview vnx o wheeled tuktuk mg 02 kr.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_02_kr.jpg&amp;diff=12512"/>
		<updated>2024-12-23T18:29:52Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_wheeled_tuktuk_01_wreck.jpg&amp;diff=12513</id>
		<title>File:Preview vnx wheeled tuktuk 01 wreck.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_wheeled_tuktuk_01_wreck.jpg&amp;diff=12513"/>
		<updated>2024-12-23T18:29:52Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_wheeled_tuktuk_mg_02_wreck.jpg&amp;diff=12515</id>
		<title>File:Preview vnx wheeled tuktuk mg 02 wreck.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_wheeled_tuktuk_mg_02_wreck.jpg&amp;diff=12515"/>
		<updated>2024-12-23T18:29:52Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_c_wheeled_tuktuk_01_01.jpg&amp;diff=12508</id>
		<title>File:Preview vnx c wheeled tuktuk 01 01.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_c_wheeled_tuktuk_01_01.jpg&amp;diff=12508"/>
		<updated>2024-12-23T18:29:51Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_02_vc.jpg&amp;diff=12510</id>
		<title>File:Preview vnx o wheeled tuktuk mg 02 vc.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_02_vc.jpg&amp;diff=12510"/>
		<updated>2024-12-23T18:29:51Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_01_vc.jpg&amp;diff=12506</id>
		<title>File:Preview vnx o wheeled tuktuk 01 vc.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_01_vc.jpg&amp;diff=12506"/>
		<updated>2024-12-23T18:29:51Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_01_kr.jpg&amp;diff=12507</id>
		<title>File:Preview vnx o wheeled tuktuk 01 kr.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_01_kr.jpg&amp;diff=12507"/>
		<updated>2024-12-23T18:29:51Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_01_kr.jpg&amp;diff=12509</id>
		<title>File:Preview vnx o wheeled tuktuk mg 01 kr.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_wheeled_tuktuk_mg_01_kr.jpg&amp;diff=12509"/>
		<updated>2024-12-23T18:29:50Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg.jpg&amp;diff=12502</id>
		<title>File:Preview vnx m12 smg.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg.jpg&amp;diff=12502"/>
		<updated>2024-12-23T18:29:46Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e.jpg&amp;diff=12503</id>
		<title>File:Preview vnx m77e.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e.jpg&amp;diff=12503"/>
		<updated>2024-12-23T18:29:46Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_fold.jpg&amp;diff=12504</id>
		<title>File:Preview vnx m12 smg fold.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_fold.jpg&amp;diff=12504"/>
		<updated>2024-12-23T18:29:46Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_type56_xm148.jpg&amp;diff=12505</id>
		<title>File:Preview vnx type56 xm148.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_type56_xm148.jpg&amp;diff=12505"/>
		<updated>2024-12-23T18:29:46Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_shorty.jpg&amp;diff=12497</id>
		<title>File:Preview vnx m77e shorty.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_shorty.jpg&amp;diff=12497"/>
		<updated>2024-12-23T18:29:45Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_04.jpg&amp;diff=12498</id>
		<title>File:Preview vnx l1a1 04.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_04.jpg&amp;diff=12498"/>
		<updated>2024-12-23T18:29:45Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m45_sf_sd.jpg&amp;diff=12499</id>
		<title>File:Preview vnx m45 sf sd.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m45_sf_sd.jpg&amp;diff=12499"/>
		<updated>2024-12-23T18:29:45Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_05.jpg&amp;diff=12500</id>
		<title>File:Preview vnx l1a1 05.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_05.jpg&amp;diff=12500"/>
		<updated>2024-12-23T18:29:45Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m50_smg_fold.jpg&amp;diff=12501</id>
		<title>File:Preview vnx m50 smg fold.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m50_smg_fold.jpg&amp;diff=12501"/>
		<updated>2024-12-23T18:29:45Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m_ladle.jpg&amp;diff=12494</id>
		<title>File:Preview vnx m ladle.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m_ladle.jpg&amp;diff=12494"/>
		<updated>2024-12-23T18:29:44Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_05_camo.jpg&amp;diff=12495</id>
		<title>File:Preview vnx l1a1 05 camo.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_05_camo.jpg&amp;diff=12495"/>
		<updated>2024-12-23T18:29:44Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_gjet.jpg&amp;diff=12496</id>
		<title>File:Preview vnx gjet.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_gjet.jpg&amp;diff=12496"/>
		<updated>2024-12-23T18:29:44Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_04_camo.jpg&amp;diff=12490</id>
		<title>File:Preview vnx l1a1 04 camo.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_l1a1_04_camo.jpg&amp;diff=12490"/>
		<updated>2024-12-23T18:29:43Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m_spoon_02.jpg&amp;diff=12491</id>
		<title>File:Preview vnx m spoon 02.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m_spoon_02.jpg&amp;diff=12491"/>
		<updated>2024-12-23T18:29:43Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_aa_fm2429.jpg&amp;diff=12492</id>
		<title>File:Preview vnx o aa fm2429.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_o_aa_fm2429.jpg&amp;diff=12492"/>
		<updated>2024-12-23T18:29:43Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m_spoon_01.jpg&amp;diff=12493</id>
		<title>File:Preview vnx m spoon 01.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m_spoon_01.jpg&amp;diff=12493"/>
		<updated>2024-12-23T18:29:43Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_fm2429_aa.jpg&amp;diff=12485</id>
		<title>File:Preview vnx fm2429 aa.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_fm2429_aa.jpg&amp;diff=12485"/>
		<updated>2024-12-23T18:29:42Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m45_sf.jpg&amp;diff=12486</id>
		<title>File:Preview vnx m45 sf.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m45_sf.jpg&amp;diff=12486"/>
		<updated>2024-12-23T18:29:42Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_hd_02.jpg&amp;diff=12487</id>
		<title>File:Preview vnx hd 02.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_hd_02.jpg&amp;diff=12487"/>
		<updated>2024-12-23T18:29:42Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m50_smg.jpg&amp;diff=12488</id>
		<title>File:Preview vnx m50 smg.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m50_smg.jpg&amp;diff=12488"/>
		<updated>2024-12-23T18:29:42Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_fm2429.jpg&amp;diff=12489</id>
		<title>File:Preview vnx fm2429.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_fm2429.jpg&amp;diff=12489"/>
		<updated>2024-12-23T18:29:42Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_uniform_cwu_01.jpg&amp;diff=12484</id>
		<title>File:Preview vnx b uniform cwu 01.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_uniform_cwu_01.jpg&amp;diff=12484"/>
		<updated>2024-12-23T18:29:37Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_uniform_cwu_02.jpg&amp;diff=12483</id>
		<title>File:Preview vnx b uniform cwu 02.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_uniform_cwu_02.jpg&amp;diff=12483"/>
		<updated>2024-12-23T18:29:36Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_02.jpg&amp;diff=12481</id>
		<title>File:Preview vnx b prop m59 02.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_02.jpg&amp;diff=12481"/>
		<updated>2024-12-23T18:29:32Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_03.jpg&amp;diff=12482</id>
		<title>File:Preview vnx b prop m59 03.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_03.jpg&amp;diff=12482"/>
		<updated>2024-12-23T18:29:32Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_01.jpg&amp;diff=12476</id>
		<title>File:Preview vnx b prop m59 01.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_01.jpg&amp;diff=12476"/>
		<updated>2024-12-23T18:29:31Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_pot_02.jpg&amp;diff=12477</id>
		<title>File:Preview vnx b prop m59 pot 02.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_pot_02.jpg&amp;diff=12477"/>
		<updated>2024-12-23T18:29:31Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_pot_01.jpg&amp;diff=12478</id>
		<title>File:Preview vnx b prop m59 pot 01.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_pot_01.jpg&amp;diff=12478"/>
		<updated>2024-12-23T18:29:31Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_04.jpg&amp;diff=12479</id>
		<title>File:Preview vnx b prop m59 04.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_04.jpg&amp;diff=12479"/>
		<updated>2024-12-23T18:29:31Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_pot_03.jpg&amp;diff=12480</id>
		<title>File:Preview vnx b prop m59 pot 03.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_b_prop_m59_pot_03.jpg&amp;diff=12480"/>
		<updated>2024-12-23T18:29:31Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_32_mag.jpg&amp;diff=12471</id>
		<title>File:Preview vnx m12 smg 32 mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_32_mag.jpg&amp;diff=12471"/>
		<updated>2024-12-23T18:29:24Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_32_t_mag.jpg&amp;diff=12472</id>
		<title>File:Preview vnx m12 smg 32 t mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_32_t_mag.jpg&amp;diff=12472"/>
		<updated>2024-12-23T18:29:24Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_so_mag.jpg&amp;diff=12473</id>
		<title>File:Preview vnx m77e so mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_so_mag.jpg&amp;diff=12473"/>
		<updated>2024-12-23T18:29:24Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_fl_mag.jpg&amp;diff=12474</id>
		<title>File:Preview vnx m77e fl mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_fl_mag.jpg&amp;diff=12474"/>
		<updated>2024-12-23T18:29:24Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_20_mag.jpg&amp;diff=12475</id>
		<title>File:Preview vnx m12 smg 20 mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m12_smg_20_mag.jpg&amp;diff=12475"/>
		<updated>2024-12-23T18:29:24Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m50_smg_mag.jpg&amp;diff=12465</id>
		<title>File:Preview vnx m50 smg mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m50_smg_mag.jpg&amp;diff=12465"/>
		<updated>2024-12-23T18:29:23Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_gjet_mag.jpg&amp;diff=12467</id>
		<title>File:Preview vnx gjet mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_gjet_mag.jpg&amp;diff=12467"/>
		<updated>2024-12-23T18:29:23Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
	<entry>
		<id>https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_buck_mag.jpg&amp;diff=12468</id>
		<title>File:Preview vnx m77e buck mag.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.sogpf.com/index.php?title=File:Preview_vnx_m77e_buck_mag.jpg&amp;diff=12468"/>
		<updated>2024-12-23T18:29:23Z</updated>

		<summary type="html">&lt;p&gt;Slow: Uploaded with SimpleBatchUpload&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Slow</name></author>
		
	</entry>
</feed>