forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@1817 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
ff002a8619
commit
50e0b2dacb
|
@ -327,6 +327,13 @@ of each style or click on the style itself for a full description:
|
|||
<TR ALIGN="center"><TD ><A HREF = "fix_wall_gran.html">wall/gran</A></TD><TD ><A HREF = "fix_wall_lj126.html">wall/lj126</A></TD><TD ><A HREF = "fix_wall_lj93.html">wall/lj93</A></TD><TD ><A HREF = "fix_wall_reflect.html">wall/reflect</A></TD><TD ><A HREF = "fix_wiggle.html">wiggle</A>
|
||||
</TD></TR></TABLE></DIV>
|
||||
|
||||
<P>These are fix styles contributed by users, which can be used if
|
||||
<A HREF = "Section_start.html#2_3">LAMMPS is built with the appropriate package</A>.
|
||||
</P>
|
||||
<DIV ALIGN=center><TABLE BORDER=1 >
|
||||
<TR ALIGN="center"><TD ><A HREF = "fix_smd.html">smd</A>
|
||||
</TD></TR></TABLE></DIV>
|
||||
|
||||
<HR>
|
||||
|
||||
<P>Compute styles. See the <A HREF = "compute.html">compute</A> command for one-line
|
||||
|
|
|
@ -437,6 +437,11 @@ of each style or click on the style itself for a full description:
|
|||
"wall/reflect"_fix_wall_reflect.html,
|
||||
"wiggle"_fix_wiggle.html :tb(c=8,ea=c)
|
||||
|
||||
These are fix styles contributed by users, which can be used if
|
||||
"LAMMPS is built with the appropriate package"_Section_start.html#2_3.
|
||||
|
||||
"smd"_fix_smd.html :tb(c=4,ea=c)
|
||||
|
||||
:line
|
||||
|
||||
Compute styles. See the "compute"_compute.html command for one-line
|
||||
|
|
|
@ -56,7 +56,11 @@ accessed by any command that uses per-atom computes as input. See
|
|||
<A HREF = "Section_howto.html#4_15">this section</A> for an overview of LAMMPS
|
||||
output options.
|
||||
</P>
|
||||
<P><B>Restrictions:</B> none
|
||||
<P><B>Restrictions:</B>
|
||||
</P>
|
||||
<P>This compute is part of the "user-ackland" package. It is only
|
||||
enabled if LAMMPS was built with that package. See the <A HREF = "Section_start.html#2_3">Making
|
||||
LAMMPS</A> section for more info.
|
||||
</P>
|
||||
<P><B>Related commands:</B>
|
||||
</P>
|
||||
|
|
|
@ -53,7 +53,11 @@ accessed by any command that uses per-atom computes as input. See
|
|||
"this section"_Section_howto.html#4_15 for an overview of LAMMPS
|
||||
output options.
|
||||
|
||||
[Restrictions:] none
|
||||
[Restrictions:]
|
||||
|
||||
This compute is part of the "user-ackland" package. It is only
|
||||
enabled if LAMMPS was built with that package. See the "Making
|
||||
LAMMPS"_Section_start.html#2_3 section for more info.
|
||||
|
||||
[Related commands:]
|
||||
|
||||
|
|
|
@ -59,7 +59,8 @@ minimization</A>.
|
|||
</P>
|
||||
<P><B>Related commands:</B>
|
||||
</P>
|
||||
<P><A HREF = "fix_spring.html">fix spring</A>
|
||||
<P><A HREF = "fix_spring.html">fix spring</A>, <A HREF = "fix_spring_self.html">fix spring/self</A>,
|
||||
<A HREF = "fix_spring_rg.html">fix spring/rg</A>, <A HREF = "fix_smd.html">fix smd</A>
|
||||
</P>
|
||||
<P><B>Default:</B> none
|
||||
</P>
|
||||
|
|
|
@ -57,6 +57,7 @@ minimization"_minimize.html.
|
|||
|
||||
[Related commands:]
|
||||
|
||||
"fix spring"_fix_spring.html
|
||||
"fix spring"_fix_spring.html, "fix spring/self"_fix_spring_self.html,
|
||||
"fix spring/rg"_fix_spring_rg.html, "fix smd"_fix_smd.html
|
||||
|
||||
[Default:] none
|
||||
|
|
|
@ -0,0 +1,162 @@
|
|||
<HTML>
|
||||
<CENTER><A HREF = "http://lammps.sandia.gov">LAMMPS WWW Site</A> - <A HREF = "Manual.html">LAMMPS Documentation</A> - <A HREF = "Section_commands.html#comm">LAMMPS Commands</A>
|
||||
</CENTER>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<HR>
|
||||
|
||||
<H3>fix smd command
|
||||
</H3>
|
||||
<P><B>Syntax:</B>
|
||||
</P>
|
||||
<PRE>fix ID group-ID smd type values keyword values
|
||||
</PRE>
|
||||
<UL><LI>ID, group-ID are documented in <A HREF = "fix.html">fix</A> command
|
||||
|
||||
<LI>smd = style name of this fix command
|
||||
|
||||
<LI>mode = <I>cvel</I> or <I>cfor</I> to select constant velocity or constant force SMD
|
||||
|
||||
<LI> <I>cvel</I> values = K vel
|
||||
K = spring constant (force/distance units)
|
||||
vel = velocity of pulling (distance/time units)
|
||||
<I>cfor</I> values = force
|
||||
force = pulling force (force units)
|
||||
keyword = <I>tether</I> or <I>couple</I>
|
||||
|
||||
<PRE> <I>tether</I> values = x y z R0
|
||||
x,y,z = point to which spring is tethered
|
||||
R0 = distance of end of spring from tether point (distance units)
|
||||
<I>couple</I> values = group-ID2 x y z R0
|
||||
group-ID2 = 2nd group to couple to fix group with a spring
|
||||
x,y,z = direction of spring, automatically computed with 'auto'
|
||||
R0 = distance of end of spring (distance units)
|
||||
</PRE>
|
||||
|
||||
</UL>
|
||||
<P><B>Examples:</B>
|
||||
</P>
|
||||
<PRE>fix pull cterm smd cvel 20.0 -0.00005 tether NULL NULL 100.0 0.0
|
||||
fix pull cterm smd cvel 20.0 -0.0001 tether 25.0 25 25.0 0.0
|
||||
fix stretch cterm smd cvel 20.0 0.0001 couple nterm auto auto auto 0.0
|
||||
fix pull cterm smd cfor 5.0 tether 25.0 25.0 25.0 0.0
|
||||
</PRE>
|
||||
<P><B>Description:</B>
|
||||
</P>
|
||||
<P>This fix implements several options of steered MD (SMD) as reviewed in
|
||||
<A HREF = "#Izrailev">(Izrailev)</A>, which allows to induce conformational changes
|
||||
in systems and to compute the potential of mean force (PMF) along the
|
||||
assumed reaction coordinate <A HREF = "#Park">(Park)</A> based on Jarzynski's
|
||||
equality <A HREF = "#Jarzynski">(Jarzynski)</A>. This fix borrows a lot from <A HREF = "fix_spring.html">fix
|
||||
spring</A> and <A HREF = "fix_setforce.html">fix setforce</A>.
|
||||
</P>
|
||||
<P>You can apply a moving spring force to a group of atoms (<I>tether</I>
|
||||
style) or between two groups of atoms (<I>couple</I> style). The spring
|
||||
can then be used in either constant velocity (<I>cvel</I>) mode or in
|
||||
constant force (<I>cfor</I>) mode to induce transitions in your systems.
|
||||
When running in <I>tether</I> style, you may need some way to fix some
|
||||
other part of the system (e.g. via <A HREF = "fix_spring_self.html">fix
|
||||
spring/self</A>)
|
||||
</P>
|
||||
<P>The <I>tether</I> style attaches a spring between a point at a distance of
|
||||
R0 away from a fixed point <I>x,y,z</I> and the center of mass of the fix
|
||||
group of atoms. A restoring force of magnitude K (R - R0) Mi / M is
|
||||
applied to each atom in the group where <I>K</I> is the spring constant, Mi
|
||||
is the mass of the atom, and M is the total mass of all atoms in the
|
||||
group. Note that <I>K</I> thus represents the total force on the group of
|
||||
atoms, not a per-atom force.
|
||||
</P>
|
||||
<P>In <I>cvel</I> mode the distance R is incremented or decremented
|
||||
monotonously according to the pulling (or pushing) velocity.
|
||||
In <I>cfor</I> mode a constant force is added and the actual distance
|
||||
in direction of the spring is recorded.
|
||||
</P>
|
||||
<P>The <I>couple</I> style links two groups of atoms together. The first
|
||||
group is the fix group; the second is specified by group-ID2. The
|
||||
groups are coupled together by a spring that is at equilibrium when
|
||||
the two groups are displaced by a vector in direction <I>x,y,z</I> with
|
||||
respect to each other and at a distance R0 from that displacement.
|
||||
Note that <I>x,y,z</I> only provides a direction and will be internally
|
||||
normalized. But since it represents the <I>absolute</I> displacement of
|
||||
group-ID2 relative to the fix group, (1,1,0) is a different spring
|
||||
than (-1,-1,0). For each vector component, the displacement can be
|
||||
described with the <I>auto</I> parameter. In this case the direction is
|
||||
recomputed in every step, which can be useful for steering a local
|
||||
process where the whole object undergoes some other change. When the
|
||||
relative positions and distance between the two groups are not in
|
||||
equilibrium, the same spring force described above is applied to atoms
|
||||
in each of the two groups.
|
||||
</P>
|
||||
<P>For both the <I>tether</I> and <I>couple</I> styles, any of the x,y,z values can
|
||||
be specified as NULL which means do not include that dimension in the
|
||||
distance calculation or force application.
|
||||
</P>
|
||||
<P>For constant velocity pulling (<I>cvel</I> mode), the running integral
|
||||
over the pulling force in direction of the spring is recorded and
|
||||
can then later be used to compute the potential of mean force (PMF)
|
||||
by averaging over multiple independent trajectories along the same
|
||||
pulling path.
|
||||
</P>
|
||||
<P><B>Restart, fix_modify, output, run start/stop, minimize info:</B>
|
||||
</P>
|
||||
<P>The fix stores the direction of the spring, current pulling target
|
||||
distance and the running PMF to <A HREF = "restart.html">binary restart files</A>.
|
||||
See the <A HREF = "read_restart.html">read_restart</A> command for info on how to
|
||||
re-specify a fix in an input script that reads a restart file, so that
|
||||
the operation of the fix continues in an uninterrupted fashion.
|
||||
</P>
|
||||
<P>None of the <A HREF = "fix_modify.html">fix_modify</A> options are relevant to this
|
||||
fix.
|
||||
</P>
|
||||
<P>This fix computes a vector list of 7 quantities, which can be accessed
|
||||
by various <A HREF = "Section_howto.html#4_15">output commands</A>. The quantities
|
||||
in the vector are in this order: the x-, y-, and z-component of the
|
||||
pulling force, the total force in direction of the pull, the
|
||||
equilibrium distance of the spring, the distance between the two
|
||||
reference points, and finally the accumulated PMF (the sum of pulling
|
||||
forces times displacement).
|
||||
</P>
|
||||
<P>The force is the total force on the group of atoms by the spring. In
|
||||
the case of the <I>couple</I> style, it is the force on the fix group
|
||||
(group-ID) or the negative of the force on the 2nd group (group-ID2).
|
||||
The vector values calculated by this fix are "extensive", meaning they
|
||||
scale with the number of atoms in the simulation.
|
||||
</P>
|
||||
<P>No parameter of this fix can be used with the <I>start/stop</I> keywords of
|
||||
the <A HREF = "run.html">run</A> command. This fix is not invoked during <A HREF = "minimize.html">energy
|
||||
minimization</A>.
|
||||
</P>
|
||||
<P><B>Restrictions:</B>
|
||||
</P>
|
||||
<P>This fix is part of the "user-smd" package. It is only enabled if
|
||||
LAMMPS was built with that package. See the <A HREF = "Section_start.html#2_3">Making
|
||||
LAMMPS</A> section for more info.
|
||||
</P>
|
||||
<P><B>Related commands:</B>
|
||||
</P>
|
||||
<P><A HREF = "fix_drag.html">fix drag</A>, <A HREF = "fix_spring.html">fix spring</A>,
|
||||
<A HREF = "fix_spring_self.html">fix spring/self</A>,
|
||||
<A HREF = "fix_spring_rg.html">fix spring/rg</A>
|
||||
</P>
|
||||
<P><B>Default:</B> none
|
||||
</P>
|
||||
<HR>
|
||||
|
||||
<A NAME = "Israilev"></A>
|
||||
|
||||
<P><B>(Izrailev)</B> Izrailev, Stepaniants, Isralewitz, Kosztin, Lu, Molnar,
|
||||
Wriggers, Schulten. Computational Molecular Dynamics: Challenges,
|
||||
Methods, Ideas, volume 4 of Lecture Notes in Computational Science and
|
||||
Engineering, pp. 39-65. Springer-Verlag, Berlin, 1998.
|
||||
</P>
|
||||
<P><B>(Park)</B>
|
||||
Park, Schulten, J. Chem. Phys. 120 (13), 5946 (2004)
|
||||
</P>
|
||||
<P><B>(Jarzynski)</B>
|
||||
Jarzynski, Phys. Rev. Lett. 78, 2690 (1997)
|
||||
</P>
|
||||
</HTML>
|
|
@ -0,0 +1,151 @@
|
|||
"LAMMPS WWW Site"_lws - "LAMMPS Documentation"_ld - "LAMMPS Commands"_lc :c
|
||||
|
||||
:link(lws,http://lammps.sandia.gov)
|
||||
:link(ld,Manual.html)
|
||||
:link(lc,Section_commands.html#comm)
|
||||
|
||||
:line
|
||||
|
||||
fix smd command :h3
|
||||
|
||||
[Syntax:]
|
||||
|
||||
fix ID group-ID smd type values keyword values :pre
|
||||
|
||||
ID, group-ID are documented in "fix"_fix.html command :ulb,l
|
||||
smd = style name of this fix command :l
|
||||
mode = {cvel} or {cfor} to select constant velocity or constant force SMD :l
|
||||
{cvel} values = K vel
|
||||
K = spring constant (force/distance units)
|
||||
vel = velocity of pulling (distance/time units)
|
||||
{cfor} values = force
|
||||
force = pulling force (force units)
|
||||
keyword = {tether} or {couple} :l
|
||||
{tether} values = x y z R0
|
||||
x,y,z = point to which spring is tethered
|
||||
R0 = distance of end of spring from tether point (distance units)
|
||||
{couple} values = group-ID2 x y z R0
|
||||
group-ID2 = 2nd group to couple to fix group with a spring
|
||||
x,y,z = direction of spring, automatically computed with 'auto'
|
||||
R0 = distance of end of spring (distance units) :pre
|
||||
:ule
|
||||
|
||||
[Examples:]
|
||||
|
||||
fix pull cterm smd cvel 20.0 -0.00005 tether NULL NULL 100.0 0.0
|
||||
fix pull cterm smd cvel 20.0 -0.0001 tether 25.0 25 25.0 0.0
|
||||
fix stretch cterm smd cvel 20.0 0.0001 couple nterm auto auto auto 0.0
|
||||
fix pull cterm smd cfor 5.0 tether 25.0 25.0 25.0 0.0 :pre
|
||||
|
||||
[Description:]
|
||||
|
||||
This fix implements several options of steered MD (SMD) as reviewed in
|
||||
"(Izrailev)"_#Izrailev, which allows to induce conformational changes
|
||||
in systems and to compute the potential of mean force (PMF) along the
|
||||
assumed reaction coordinate "(Park)"_#Park based on Jarzynski's
|
||||
equality "(Jarzynski)"_#Jarzynski. This fix borrows a lot from "fix
|
||||
spring"_fix_spring.html and "fix setforce"_fix_setforce.html.
|
||||
|
||||
You can apply a moving spring force to a group of atoms ({tether}
|
||||
style) or between two groups of atoms ({couple} style). The spring
|
||||
can then be used in either constant velocity ({cvel}) mode or in
|
||||
constant force ({cfor}) mode to induce transitions in your systems.
|
||||
When running in {tether} style, you may need some way to fix some
|
||||
other part of the system (e.g. via "fix
|
||||
spring/self"_fix_spring_self.html)
|
||||
|
||||
The {tether} style attaches a spring between a point at a distance of
|
||||
R0 away from a fixed point {x,y,z} and the center of mass of the fix
|
||||
group of atoms. A restoring force of magnitude K (R - R0) Mi / M is
|
||||
applied to each atom in the group where {K} is the spring constant, Mi
|
||||
is the mass of the atom, and M is the total mass of all atoms in the
|
||||
group. Note that {K} thus represents the total force on the group of
|
||||
atoms, not a per-atom force.
|
||||
|
||||
In {cvel} mode the distance R is incremented or decremented
|
||||
monotonously according to the pulling (or pushing) velocity.
|
||||
In {cfor} mode a constant force is added and the actual distance
|
||||
in direction of the spring is recorded.
|
||||
|
||||
The {couple} style links two groups of atoms together. The first
|
||||
group is the fix group; the second is specified by group-ID2. The
|
||||
groups are coupled together by a spring that is at equilibrium when
|
||||
the two groups are displaced by a vector in direction {x,y,z} with
|
||||
respect to each other and at a distance R0 from that displacement.
|
||||
Note that {x,y,z} only provides a direction and will be internally
|
||||
normalized. But since it represents the {absolute} displacement of
|
||||
group-ID2 relative to the fix group, (1,1,0) is a different spring
|
||||
than (-1,-1,0). For each vector component, the displacement can be
|
||||
described with the {auto} parameter. In this case the direction is
|
||||
recomputed in every step, which can be useful for steering a local
|
||||
process where the whole object undergoes some other change. When the
|
||||
relative positions and distance between the two groups are not in
|
||||
equilibrium, the same spring force described above is applied to atoms
|
||||
in each of the two groups.
|
||||
|
||||
For both the {tether} and {couple} styles, any of the x,y,z values can
|
||||
be specified as NULL which means do not include that dimension in the
|
||||
distance calculation or force application.
|
||||
|
||||
For constant velocity pulling ({cvel} mode), the running integral
|
||||
over the pulling force in direction of the spring is recorded and
|
||||
can then later be used to compute the potential of mean force (PMF)
|
||||
by averaging over multiple independent trajectories along the same
|
||||
pulling path.
|
||||
|
||||
[Restart, fix_modify, output, run start/stop, minimize info:]
|
||||
|
||||
The fix stores the direction of the spring, current pulling target
|
||||
distance and the running PMF to "binary restart files"_restart.html.
|
||||
See the "read_restart"_read_restart.html command for info on how to
|
||||
re-specify a fix in an input script that reads a restart file, so that
|
||||
the operation of the fix continues in an uninterrupted fashion.
|
||||
|
||||
None of the "fix_modify"_fix_modify.html options are relevant to this
|
||||
fix.
|
||||
|
||||
This fix computes a vector list of 7 quantities, which can be accessed
|
||||
by various "output commands"_Section_howto.html#4_15. The quantities
|
||||
in the vector are in this order: the x-, y-, and z-component of the
|
||||
pulling force, the total force in direction of the pull, the
|
||||
equilibrium distance of the spring, the distance between the two
|
||||
reference points, and finally the accumulated PMF (the sum of pulling
|
||||
forces times displacement).
|
||||
|
||||
The force is the total force on the group of atoms by the spring. In
|
||||
the case of the {couple} style, it is the force on the fix group
|
||||
(group-ID) or the negative of the force on the 2nd group (group-ID2).
|
||||
The vector values calculated by this fix are "extensive", meaning they
|
||||
scale with the number of atoms in the simulation.
|
||||
|
||||
No parameter of this fix can be used with the {start/stop} keywords of
|
||||
the "run"_run.html command. This fix is not invoked during "energy
|
||||
minimization"_minimize.html.
|
||||
|
||||
[Restrictions:]
|
||||
|
||||
This fix is part of the "user-smd" package. It is only enabled if
|
||||
LAMMPS was built with that package. See the "Making
|
||||
LAMMPS"_Section_start.html#2_3 section for more info.
|
||||
|
||||
[Related commands:]
|
||||
|
||||
"fix drag"_fix_drag.html, "fix spring"_fix_spring.html,
|
||||
"fix spring/self"_fix_spring_self.html,
|
||||
"fix spring/rg"_fix_spring_rg.html
|
||||
|
||||
[Default:] none
|
||||
|
||||
:line
|
||||
|
||||
:link(Israilev)
|
||||
[(Izrailev)] Izrailev, Stepaniants, Isralewitz, Kosztin, Lu, Molnar,
|
||||
Wriggers, Schulten. Computational Molecular Dynamics: Challenges,
|
||||
Methods, Ideas, volume 4 of Lecture Notes in Computational Science and
|
||||
Engineering, pp. 39-65. Springer-Verlag, Berlin, 1998.
|
||||
|
||||
[(Park)]
|
||||
Park, Schulten, J. Chem. Phys. 120 (13), 5946 (2004)
|
||||
|
||||
[(Jarzynski)]
|
||||
Jarzynski, Phys. Rev. Lett. 78, 2690 (1997)
|
|
@ -113,8 +113,8 @@ minimization</A>.
|
|||
</P>
|
||||
<P><B>Related commands:</B>
|
||||
</P>
|
||||
<P><A HREF = "fix_drag.html">fix drag</A>, <A HREF = "fix_spring_self.html">fix spring/self</A>, <A HREF = "fix_spring_rg.html">fix
|
||||
spring/rg</A>
|
||||
<P><A HREF = "fix_drag.html">fix drag</A>, <A HREF = "fix_spring_self.html">fix spring/self</A>,
|
||||
<A HREF = "fix_spring_rg.html">fix spring/rg</A>, <A HREF = "fix_smd.html">fix smd</A>
|
||||
</P>
|
||||
<P><B>Default:</B> none
|
||||
</P>
|
||||
|
|
|
@ -106,7 +106,8 @@ minimization"_minimize.html.
|
|||
|
||||
[Related commands:]
|
||||
|
||||
"fix drag"_fix_drag.html, "fix spring/self"_fix_spring_self.html, "fix
|
||||
spring/rg"_fix_spring_rg.html
|
||||
"fix drag"_fix_drag.html, "fix spring/self"_fix_spring_self.html,
|
||||
"fix spring/rg"_fix_spring_rg.html, "fix smd"_fix_smd.html
|
||||
|
||||
|
||||
[Default:] none
|
||||
|
|
|
@ -65,6 +65,7 @@ This fix is not invoked during <A HREF = "minimize.html">energy minimization</A>
|
|||
<P><B>Related commands:</B>
|
||||
</P>
|
||||
<P><A HREF = "fix_spring.html">fix spring</A>, <A HREF = "fix_spring_self.html">fix spring/self</A>
|
||||
<A HREF = "fix_drag.html">fix drag</A>, <A HREF = "fix_smd.html">fix smd</A>
|
||||
</P>
|
||||
<P><B>Default:</B> none
|
||||
</P>
|
||||
|
|
|
@ -61,5 +61,6 @@ This fix is not invoked during "energy minimization"_minimize.html.
|
|||
[Related commands:]
|
||||
|
||||
"fix spring"_fix_spring.html, "fix spring/self"_fix_spring_self.html
|
||||
"fix drag"_fix_drag.html, "fix smd"_fix_smd.html
|
||||
|
||||
[Default:] none
|
||||
|
|
|
@ -52,7 +52,8 @@ This fix is not invoked during <A HREF = "minimize.html">energy minimization</A>
|
|||
</P>
|
||||
<P><B>Related commands:</B>
|
||||
</P>
|
||||
<P><A HREF = "fix_drag.html">fix drag</A>, <A HREF = "fix_spring.html">fix spring</A>
|
||||
<P><A HREF = "fix_drag.html">fix drag</A>, <A HREF = "fix_spring.html">fix spring</A>,
|
||||
<A HREF = "fix_smd.html">fix smd</A>, <A HREF = "fix_spring_rg.html">fix spring/rg</A>
|
||||
</P>
|
||||
<P><B>Default:</B> none
|
||||
</P>
|
||||
|
|
|
@ -49,6 +49,7 @@ This fix is not invoked during "energy minimization"_minimize.html.
|
|||
|
||||
[Related commands:]
|
||||
|
||||
"fix drag"_fix_drag.html, "fix spring"_fix_spring.html
|
||||
"fix drag"_fix_drag.html, "fix spring"_fix_spring.html,
|
||||
"fix smd"_fix_smd.html, "fix spring/rg"_fix_spring_rg.html
|
||||
|
||||
[Default:] none
|
||||
|
|
Loading…
Reference in New Issue