Line endings...be normalized!
This commit is contained in:
@@ -1,105 +1,105 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
|
||||
<xsl:import href="Common.xsl"/>
|
||||
|
||||
|
||||
<!-- Main Template -->
|
||||
|
||||
<xsl:template match="/Catalog">
|
||||
<xsl:call-template name="MainTemplate">
|
||||
<xsl:with-param name="FullHeader" select="0" />
|
||||
<xsl:with-param name="DocName" select="name()" />
|
||||
<xsl:with-param name="Content">
|
||||
<xsl:apply-templates select="/Catalog/Totals" />
|
||||
<xsl:apply-templates select="/Catalog/Songs" />
|
||||
<xsl:apply-templates select="/Catalog/Courses" />
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
|
||||
<!-- Totals -->
|
||||
|
||||
<xsl:template match="/Catalog/Totals">
|
||||
<xsl:call-template name="CollapsibleTopSection">
|
||||
<xsl:with-param name="title">
|
||||
Totals
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
|
||||
<table class="EntityTableAttr">
|
||||
<xsl:call-template name="DataTableGenerator">
|
||||
<xsl:with-param name="cols" select="2" />
|
||||
<xsl:with-param name="nodeset" select="*[text()]" />
|
||||
</xsl:call-template>
|
||||
</table>
|
||||
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
|
||||
|
||||
<!-- TopScores for SongScores and CourseScores -->
|
||||
|
||||
<xsl:template match="/Catalog/Songs | /Catalog/Courses">
|
||||
<xsl:variable name="Type" select="name()" />
|
||||
<xsl:variable name="SubType">
|
||||
<xsl:if test="$Type='Song'">Steps</xsl:if>
|
||||
<xsl:if test="$Type='Course'">Trail</xsl:if>
|
||||
</xsl:variable>
|
||||
<xsl:call-template name="CollapsibleTopSection">
|
||||
<xsl:with-param name="title">
|
||||
<xsl:value-of select="$Type" />
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
<xsl:apply-templates select="Song | Course" />
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="Song | Course">
|
||||
<xsl:variable name="Dir" select="@Dir" />
|
||||
<xsl:variable name="Path" select="@Path" />
|
||||
<xsl:variable name="MainTitle" select="/Catalog/*/*[@Dir=$Dir or @Path=$Path]/MainTitle" />
|
||||
<xsl:variable name="SubTitle" select="/Catalog/*/*[@Dir=$Dir or @Path=$Path]/SubTitle" />
|
||||
<xsl:call-template name="CollapsibleSubSection">
|
||||
<xsl:with-param name="title">
|
||||
<xsl:apply-templates select="@Dir | @Path" />
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
<xsl:apply-templates select="Steps | Trail" />
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="Steps | Trail">
|
||||
<xsl:call-template name="SubSectionCompact">
|
||||
<xsl:with-param name="title">
|
||||
<xsl:apply-templates select="." mode="AttributeTitleGenerator" />
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
|
||||
<table class="EntityTableAttr">
|
||||
<xsl:call-template name="DataTableGenerator">
|
||||
<xsl:with-param name="cols" select="1" />
|
||||
<xsl:with-param name="nodeset" select="*[text()] | ./*/*[text()]" />
|
||||
</xsl:call-template>
|
||||
</table>
|
||||
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- Main Categories End - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
||||
|
||||
|
||||
<!-- That's it -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
|
||||
<xsl:import href="Common.xsl"/>
|
||||
|
||||
|
||||
<!-- Main Template -->
|
||||
|
||||
<xsl:template match="/Catalog">
|
||||
<xsl:call-template name="MainTemplate">
|
||||
<xsl:with-param name="FullHeader" select="0" />
|
||||
<xsl:with-param name="DocName" select="name()" />
|
||||
<xsl:with-param name="Content">
|
||||
<xsl:apply-templates select="/Catalog/Totals" />
|
||||
<xsl:apply-templates select="/Catalog/Songs" />
|
||||
<xsl:apply-templates select="/Catalog/Courses" />
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
|
||||
<!-- Totals -->
|
||||
|
||||
<xsl:template match="/Catalog/Totals">
|
||||
<xsl:call-template name="CollapsibleTopSection">
|
||||
<xsl:with-param name="title">
|
||||
Totals
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
|
||||
<table class="EntityTableAttr">
|
||||
<xsl:call-template name="DataTableGenerator">
|
||||
<xsl:with-param name="cols" select="2" />
|
||||
<xsl:with-param name="nodeset" select="*[text()]" />
|
||||
</xsl:call-template>
|
||||
</table>
|
||||
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
|
||||
</xsl:template>
|
||||
|
||||
|
||||
|
||||
<!-- TopScores for SongScores and CourseScores -->
|
||||
|
||||
<xsl:template match="/Catalog/Songs | /Catalog/Courses">
|
||||
<xsl:variable name="Type" select="name()" />
|
||||
<xsl:variable name="SubType">
|
||||
<xsl:if test="$Type='Song'">Steps</xsl:if>
|
||||
<xsl:if test="$Type='Course'">Trail</xsl:if>
|
||||
</xsl:variable>
|
||||
<xsl:call-template name="CollapsibleTopSection">
|
||||
<xsl:with-param name="title">
|
||||
<xsl:value-of select="$Type" />
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
<xsl:apply-templates select="Song | Course" />
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="Song | Course">
|
||||
<xsl:variable name="Dir" select="@Dir" />
|
||||
<xsl:variable name="Path" select="@Path" />
|
||||
<xsl:variable name="MainTitle" select="/Catalog/*/*[@Dir=$Dir or @Path=$Path]/MainTitle" />
|
||||
<xsl:variable name="SubTitle" select="/Catalog/*/*[@Dir=$Dir or @Path=$Path]/SubTitle" />
|
||||
<xsl:call-template name="CollapsibleSubSection">
|
||||
<xsl:with-param name="title">
|
||||
<xsl:apply-templates select="@Dir | @Path" />
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
<xsl:apply-templates select="Steps | Trail" />
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="Steps | Trail">
|
||||
<xsl:call-template name="SubSectionCompact">
|
||||
<xsl:with-param name="title">
|
||||
<xsl:apply-templates select="." mode="AttributeTitleGenerator" />
|
||||
</xsl:with-param>
|
||||
<xsl:with-param name="text">
|
||||
|
||||
<table class="EntityTableAttr">
|
||||
<xsl:call-template name="DataTableGenerator">
|
||||
<xsl:with-param name="cols" select="1" />
|
||||
<xsl:with-param name="nodeset" select="*[text()] | ./*/*[text()]" />
|
||||
</xsl:call-template>
|
||||
</table>
|
||||
|
||||
</xsl:with-param>
|
||||
</xsl:call-template>
|
||||
</xsl:template>
|
||||
|
||||
|
||||
<!-- Main Categories End - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
|
||||
|
||||
|
||||
<!-- That's it -->
|
||||
|
||||
</xsl:stylesheet>
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
+1421
-1421
File diff suppressed because it is too large
Load Diff
@@ -1,175 +1,175 @@
|
||||
#TITLE:Sync;
|
||||
#SUBTITLE:;
|
||||
#ARTIST:Unknown artist;
|
||||
#TITLETRANSLIT:;
|
||||
#SUBTITLETRANSLIT:;
|
||||
#ARTISTTRANSLIT:;
|
||||
#GENRE:;
|
||||
#CREDIT:;
|
||||
#BANNER:;
|
||||
#BACKGROUND:;
|
||||
#LYRICSPATH:;
|
||||
#CDTITLE:;
|
||||
#MUSIC:_gameplay sync music.ogg;
|
||||
#OFFSET:-0.012;
|
||||
#SAMPLESTART:0.000;
|
||||
#SAMPLELENGTH:12.000;
|
||||
#SELECTABLE:YES;
|
||||
#BPMS:0.000=132.000;
|
||||
#STOPS:;
|
||||
#BGCHANGES:;
|
||||
#KEYSOUNDS:;
|
||||
|
||||
//---------------dance-single - blank----------------
|
||||
#NOTES:
|
||||
dance-single:
|
||||
blank:
|
||||
Beginner:
|
||||
1:
|
||||
0.302,0.205,0.000,0.000,0.000:
|
||||
// measure 1
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
, // measure 2
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 3
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 4
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 5
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 6
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 7
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 8
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
;
|
||||
|
||||
//---------------dance-single - blank----------------
|
||||
#NOTES:
|
||||
pump-single:
|
||||
blank:
|
||||
Beginner:
|
||||
1:
|
||||
0.302,0.205,0.000,0.000,0.000:
|
||||
// measure 1
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
, // measure 2
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 3
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 4
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 5
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 6
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 7
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 8
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
;
|
||||
#TITLE:Sync;
|
||||
#SUBTITLE:;
|
||||
#ARTIST:Unknown artist;
|
||||
#TITLETRANSLIT:;
|
||||
#SUBTITLETRANSLIT:;
|
||||
#ARTISTTRANSLIT:;
|
||||
#GENRE:;
|
||||
#CREDIT:;
|
||||
#BANNER:;
|
||||
#BACKGROUND:;
|
||||
#LYRICSPATH:;
|
||||
#CDTITLE:;
|
||||
#MUSIC:_gameplay sync music.ogg;
|
||||
#OFFSET:-0.012;
|
||||
#SAMPLESTART:0.000;
|
||||
#SAMPLELENGTH:12.000;
|
||||
#SELECTABLE:YES;
|
||||
#BPMS:0.000=132.000;
|
||||
#STOPS:;
|
||||
#BGCHANGES:;
|
||||
#KEYSOUNDS:;
|
||||
|
||||
//---------------dance-single - blank----------------
|
||||
#NOTES:
|
||||
dance-single:
|
||||
blank:
|
||||
Beginner:
|
||||
1:
|
||||
0.302,0.205,0.000,0.000,0.000:
|
||||
// measure 1
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
, // measure 2
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 3
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 4
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 5
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 6
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 7
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
, // measure 8
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
1000
|
||||
0001
|
||||
;
|
||||
|
||||
//---------------dance-single - blank----------------
|
||||
#NOTES:
|
||||
pump-single:
|
||||
blank:
|
||||
Beginner:
|
||||
1:
|
||||
0.302,0.205,0.000,0.000,0.000:
|
||||
// measure 1
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
, // measure 2
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 3
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 4
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 5
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 6
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 7
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
, // measure 8
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
10000
|
||||
00001
|
||||
;
|
||||
|
||||
@@ -1,170 +1,170 @@
|
||||
// these steps are only used by the How To Play screen.
|
||||
// you can use any difficuly here, as long as there is
|
||||
// only one set of steps in the file. the steps start
|
||||
// as soon as the screen comes up. also, the music used
|
||||
// is Sounds/ScreenHowToPlay Music, so no need to specify
|
||||
// a song file here.
|
||||
#TITLE:ScreenHowToPlay steps;
|
||||
#ARTIST:foo;
|
||||
#BPMS:0.000=100.000;
|
||||
#STOPS:16=2,18=2,20=2,22=2;
|
||||
|
||||
#NOTES:
|
||||
dance-single:
|
||||
BASIC:
|
||||
easy:
|
||||
1:
|
||||
0,0,0,0,0:
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0100
|
||||
0000
|
||||
0010
|
||||
0000
|
||||
,
|
||||
1000
|
||||
0000
|
||||
1001
|
||||
0000
|
||||
,
|
||||
1000
|
||||
0100
|
||||
0001
|
||||
0100
|
||||
0010
|
||||
1000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,;
|
||||
|
||||
#NOTES:
|
||||
pump-single:
|
||||
NORMAL:
|
||||
easy:
|
||||
1:
|
||||
0,0,0,0,0:
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
01000
|
||||
00000
|
||||
00100
|
||||
00000
|
||||
,
|
||||
10000
|
||||
00000
|
||||
10010
|
||||
00000
|
||||
,
|
||||
10000
|
||||
01000
|
||||
00010
|
||||
01000
|
||||
00100
|
||||
10000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,;
|
||||
// these steps are only used by the How To Play screen.
|
||||
// you can use any difficuly here, as long as there is
|
||||
// only one set of steps in the file. the steps start
|
||||
// as soon as the screen comes up. also, the music used
|
||||
// is Sounds/ScreenHowToPlay Music, so no need to specify
|
||||
// a song file here.
|
||||
#TITLE:ScreenHowToPlay steps;
|
||||
#ARTIST:foo;
|
||||
#BPMS:0.000=100.000;
|
||||
#STOPS:16=2,18=2,20=2,22=2;
|
||||
|
||||
#NOTES:
|
||||
dance-single:
|
||||
BASIC:
|
||||
easy:
|
||||
1:
|
||||
0,0,0,0,0:
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0100
|
||||
0000
|
||||
0010
|
||||
0000
|
||||
,
|
||||
1000
|
||||
0000
|
||||
1001
|
||||
0000
|
||||
,
|
||||
1000
|
||||
0100
|
||||
0001
|
||||
0100
|
||||
0010
|
||||
1000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
0000
|
||||
,;
|
||||
|
||||
#NOTES:
|
||||
pump-single:
|
||||
NORMAL:
|
||||
easy:
|
||||
1:
|
||||
0,0,0,0,0:
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
01000
|
||||
00000
|
||||
00100
|
||||
00000
|
||||
,
|
||||
10000
|
||||
00000
|
||||
10010
|
||||
00000
|
||||
,
|
||||
10000
|
||||
01000
|
||||
00010
|
||||
01000
|
||||
00100
|
||||
10000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,;
|
||||
|
||||
Reference in New Issue
Block a user