<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Ubuntu Linux &#187; gp4</title>
	<atom:link href="/tag/gp4/feed/" rel="self" type="application/rss+xml" />
	<link>http://UbuntuLinux.ru</link>
	<description>Сайт для пользователей Ubuntu Linux</description>
	<lastBuildDate>Sat, 25 Oct 2014 15:23:48 +0000</lastBuildDate>
	<language>ru-RU</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.1</generator>
	<item>
		<title>Guitar Pro 4.06 File Format Description (перевод на русский)</title>
		<link>http://UbuntuLinux.ru/developers/protokoly/guitar-pro-4-06-file-format-description-in-russian/</link>
		<comments>http://UbuntuLinux.ru/developers/protokoly/guitar-pro-4-06-file-format-description-in-russian/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 09:55:11 +0000</pubDate>
		<dc:creator><![CDATA[Admin]]></dc:creator>
				<category><![CDATA[Протоколы]]></category>
		<category><![CDATA[gp4]]></category>
		<category><![CDATA[Guitar Pro]]></category>

		<guid isPermaLink="false">http://manlinux.org/?p=80</guid>
		<description><![CDATA[Формат файлов GUITAR PRO v4.06 Версия: 1.0RC1 Русский Автор: Laurent Vromman Переводчик на английский: Avery Ceo, Matthieu Wipliez Переводчик на русский: Бажуков Георгий aka Helios Оглавление I. Основы II. Версии III. Структура файла IV. Заголовки 1. Версия 2. Информация об &#8230; <a href="/developers/protokoly/guitar-pro-4-06-file-format-description-in-russian/">Читать далее <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<pre>Формат файлов GUITAR PRO v4.06

Версия:   1.0RC1 Русский
Автор:    Laurent Vromman
Переводчик на английский: Avery Ceo, Matthieu Wipliez
Переводчик на русский: Бажуков Георгий aka Helios
<span id="more-861"></span>
<h2>Оглавление</h2>
I.   <a href="#GENERAL">Основы</a>
	II.  <a href="#VERSIONS">Версии</a>
	III. <a href="#File_Structure">Структура файла</a>
	IV.  <a href="#HEADERS">Заголовки</a>
		 1. <a href="#Version">Версия</a>
		 2. <a href="#Information_About_the_Piece">Информация об отрывке</a>
		 3. <a href="#Lyrics">Текст</a>
		 4. <a href="#Other_information_about_the_piece">Другая информация об отрывке</a>
	V.   <a href="#FILE_BODY">Тело файла</a>
		 1. <a href="#Measures">Измерения</a>
		 2. <a href="#Tracks">Треки</a>
		 3. <a href="#Measures-Tracks_pairs">Пары мер-треков</a>
		 4. <a href="#A_beat">Удары</a>
		 5. <a href="#Chords_diagrams">Диаграммы аккордов</a>
 		 6. <a href="#Effects_on_beats">Эффекты на ударах</a>
 		 7. <a href="#Mix_table_change_event">Смешение таблиц изменения событий</a>
 		 8. <a href="#Note">Ноты</a>
 		 9. <a href="#Effects_on_the_notes">Эффекты для нот</a>
 		 	a. <a href="#Effects_on_the_notes_2">Эффекты для нот</a>
 			b. <a href="#Grace_notes">Украшение нот</a>
 		10. <a href="#Bends">Изгибы</a>
 	VI.  <a href="#CHORDS_DIAGRAMS2">Диаграммы аккордов</a>
<h2>I. Основы</h2>
<a name="integer"></a>Значение типа 'int' занимает 4 байта.
<a name="short_int"></a>Значение типа 'short int' - 2 байта.
Значение типа 'byte' - 1 байт.

Значения типа “integer” и “byte” представленные в этом документе
пишутся с лева не право с LSB (младшего байта)
к MSB (старшему байту).

<a name="color"></a>Цвета хранятся в 4х байтах следующим образом, данные записываются слева направо с
LSB (младший байт), к MSB (старший байт):
    __
3 |__| &lt;- Белый, он всегда 0x00 (альфа-канал?);
2 |__| &lt;- Синий;
1 |__| &lt;- Зелёный;
0 |__| &lt;- Красный.
Когда в этом документе используется термин "строка символов", это означает, пара
первый байт количества 'n' символов в строке (а следовательно строка не должна превышать 255 символов)
затем 'n' самих символов.

Ноты хранится в значении типа <a href="#integer">целое</a>. Значение C(до) = 0. Значение увеличивается на 1 при
увеличении ноты на пол тона:
- C#(0) = 1;
- C (1) = 12;
- E (2) = 28 ...

<a href="#Summary">К оглавлению</a>
<h2>II. Версии</h2>
Guitar Pro формат развивался вместе с программой. Интегрировались новые функции, которые он должен был поддержать.

Этот документ описывает структуру только Guitar Pro версии 4.06.

<a href="#Summary">К оглавлению</a>
<h2>III. Структура файла</h2>
_______________________________________________________
|	|						|
|	| Версия					|
|	|_______________________________________________|
|	|						|
|	| Табулатура					|
|	|_______________________________________________|
|Заголов|						|
|	| Текст 					|
|	|_______________________________________________|
|	|						|
|	| Другая информация о табулатуре		|
|_______|_______________________________________________|
|	|						|
|	| Меры  					|
|	|_______________________________________________|
|	|						|
|	| Дорожки					|
|	|_______________________________________________|
|	|		|		|		|
|	|		|		| нота 1 	|
|Тело	| 		| Удар 1 	|_______________|
|	|		|		|		|
|       |		|		| нота i ...	|
|       | Меры пар      |_______________|_______________|
|       | дорожек  	|               |        	|
|	|		|		| нота 1	|
|       |               | Удар i ...	|_______________|
|	|		|		|		|
|	|		|		| нота i ...	|
|_______|_______________|_______________|_______________|
|							|
| Диаграмма аккордов					|
|_______________________________________________________|

<a href="#Summary">К оглавлению</a>
<h2>IV. Заголовки</h2>
<span style="font-family: monospace;">Трудности с чтением о Guitar Pro файлов хранится в переменной
размер заголовка файла (?). Чтение файла должно быть сделано последовательно.</span>
Структура
 _
|
| <a href="#Version">Версия</a>
|_
|
| <a href="#Information_About_the_Piece">Информация о табулатуре</a>
|_
|
| <a href="#Lyrics">Текст</a>
|_
|
| <a href="#Other_information_about_the_piece">Другая информация о табулатуре</a>
|_

<a href="#Summary">К оглавлению</a>
<h3><a name="Version"></a>1. Версия</h3>
0x00000000:  <tt>30 букв строки</tt> (не считая байт, объявляющий реальную длину
<a href="#string">строки</a> , который описывался в <a href="#GENERAL">I. Основы</a>) указывают номер версии.  Только первые n
букв (n определялось ранее) рассматриваются как символы.
Возможные значения:
FICHIER GUITARE PRO v1
FICHIER GUITARE PRO v1.01
FICHIER GUITARE PRO v1.02
FICHIER GUITARE PRO v1.03
FICHIER GUITARE PRO v1.04
FICHIER GUITAR PRO v2.20
FICHIER GUITAR PRO v2.21
FICHIER GUITAR PRO v3.00
FICHIER GUITAR PRO v4.00
FICHIER GUITAR PRO v4.06
FICHIER GUITAR PRO L4.06
* Примечание переводчика: "Fichier" с французского означает "файл".  Это осталось не переведённым.
Программа ожидает строки на французском языке.
Спецификация только "FICHIER GUITAR PRO v4.06" описывается здесь.
После этого адреса (0x0000001F), данные записываются последовательно, без точного адреса.
<a href="#Summary">Summary</a>
<h3><a name="Information_About_the_Piece"></a>2. Информация об отрывке</h3>
Далее информация предоставлена в виде блоков данных, содержащих:
	- <a href="#integer">целые</a> указывающие размер информации + 1;
	- <a href="#string">Строки</a> символов, представляющих данные.
Структура требует, чтобы нулевая <a href="#string">строка</a> была записана как 01 00 00 00 00.
Информация по порядку в файла:
	- Заголовок отрывка;
	- Подзаголовок отрывка;
	- Интерпретация отрывка;
	- Альбом, из которого был взят отрывок;
	- Автор отрывка;
	- Копирайты;
	- Имя автора табулатуры;
	- Инструкции по использованию.
Следующий раздел содержит информацию об "оповещения" (обратите внимание) в поле свойства отрывка.
Он начинается <a href="#integer">целым</a> , указывающим число линий Nb_Notice указаний, тогда Nb_Notice экземпляров
структуры прежде описанной, каждая из которых содержит линии записей.
Файл будет содержать байт, определяющий атрибут "тройки чувств" отрывка.
Если "тройка чувств" активна, то значение = 1.  Если нет, то <a href="#integer">целое</a> значение = 0.
<a href="#Summary">Summary</a>
<h3><a name="Lyrics"></a>3. Текст</h3>
Следующая часть файла содержит текст, связанный с каким-то отрывком.
<strong>Внимание</strong>! Строки, описываемые здесь (и только здесь) не соответствуют
формату, описанному в "<a href="#GENERAL">I. Основах"</a>, а записываются непосредственно.
В этой секции всё начинается с <a href="#integer">целого</a>, описывающего номер трека к которому
относится текст.
Так для каждой из 5 строк, сгенерированных Guitar Pro 4, файл содержит
<a href="#integer">целое</a> представляющее число символов в <a href="#string">строке</a> с последующей <a href="#string">строкой</a>.
<a href="#Summary">К оглавлению</a>
<h3><a name="Other_information_about_the_piece"></a>4. Другая информация об отрывке.</h3>
Следующие данные:

Темп:   			<a href="#integer">целое</a>

Ключ:			        Байт
	Это значение - кодирующий ключ (подпись) в начале отрывка. Он закодирован как:
		-  0: C
		-  1: G (#)
		-  2: D (##)
		- -1: F (b) ...

Октава: 			Байт
	<tt>Стандартное значение = 0. Он становится 8, если будет сыгран на одну октаву выше</tt>.
        Эта функция пока не используется, но сделана на будущее.
Midi канал:
	Таблица миди канала.  В ней 4 порта и 16 каналов, каналы хранятся именно в таком порядке:
		port1/channel1  - port1/channel2 ... port1/channel16 - port2/channel1 ...

		Каждый элемент таблицы имеет следующий вид:
			Инструмент: 	<a href="#integer">Integer</a>
  			Громкость:   	Byte
  			Баланс: 	Byte
  			Хор:    	Byte
  			Отражение: 	Byte
  			Фазовращатель: 	Byte
  			Тремоло: 	Byte

  			blank1: 	byte =&gt; Обратная совместимость с версией 3.0
  			blank2:		byte =&gt; Обратная совместимость с версией 3.0

Число измерений:   <a href="#integer">Integer</a>
Число треков:      <a href="#integer">Integer</a>
<a href="#Summary">К оглавлению</a></pre>
<pre>
<h2>V. Тело файла</h2>
<pre>	 _________________________________
	|
	| Меры
	|_________________________________
	|
	| Дорожки
	|_________________________________
	|		|		|
	|		|		| Нота 1
	| 		| Удар 1 	|_
	|		|		|
	|		|		| Нота i ...
	| Пары мер -    |_______________|_
	|     дорожек   |               |
	|		|		| Нота 1
	|		| Удар i ...	|_
	|		|		|
	|		|		| Нота i ...
	|_______________|_______________|_

<a href="#Summary">К оглавлению</a></pre>
<h3>1. Меры</h3>
<pre>Меры написаны одна за другой, их число было указано ранее.

Первый байт - заголовка этой меры. В нем перечислены все данные, указанные в текущей мере.
    __
 7 |__| &lt;- Наличие двойного бар;
 6 |__| &lt;- Тональность меры;
 5 |__| &lt;- Наличие маркера;
 4 |__| &lt;- Количество альтернативных окончаний;
 3 |__| &lt;- Конец повторения;
 2 |__| &lt;- Начало повторения;
 1 |__| &lt;- Знаменатель в (ключе) подписи;
 0 |__| &lt;- Числитель (ключа) подписи.

Каждый из этих элементов присутствует, только если соответствующий бит 1.

Различных элементов письменной форме (если они есть) от низшего к высшему немного.

Exceptions are made for the double bar and the beginning of repeat whose sole presence
is enough, complementary data is not necessary.

Numerator of the (key) signature: 	Byte
 	Numerator of the (key) signature of the piece

Denominator of the (key) signature:	Byte
 	Denominator of the (key) signature of the piece

End of repeat:			Byte
	Number of repeats until the previous Beginning of repeat.
 	Nombre de renvoi jusqu'au début de renvoi précédent.

Number of alternate ending:	Byte
	The number of alternate ending.

Marker:
	The markers are written in two steps. First is written an <a href="#integer">integer</a> equal to
	the marker's name length + 1, and then a <a href="#string">string</a> containing the marker's
	name. Finally the marker's <a href="#color">color</a> is written.

Tonality of the measure:	Byte
	This value encodes a key (signature) change on the current piece.
	It is encoded as:
		-  0: C
		-  1: G (#)
		-  2: D (##)
		- -1: F (b) ...

<a href="#Summary">Summary</a></pre>
]]></content:encoded>
			<wfw:commentRss>http://UbuntuLinux.ru/developers/protokoly/guitar-pro-4-06-file-format-description-in-russian/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Guitar Pro 4.06 File Format Description</title>
		<link>http://UbuntuLinux.ru/developers/protokoly/guitar-pro-4-06-file-format-description/</link>
		<comments>http://UbuntuLinux.ru/developers/protokoly/guitar-pro-4-06-file-format-description/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 05:24:33 +0000</pubDate>
		<dc:creator><![CDATA[Admin]]></dc:creator>
				<category><![CDATA[Протоколы]]></category>
		<category><![CDATA[gp4]]></category>
		<category><![CDATA[Guitar Pro]]></category>

		<guid isPermaLink="false">http://manlinux.org/?p=78</guid>
		<description><![CDATA[GUITAR PRO FILE FORMAT v4.06 Version: 1.0RC1 English Author: Laurent Vromman Translator: Avery Ceo, Matthieu Wipliez Conversion to HTML: Mauricio Gracia Gutiérrez (corrections, added information) Property Of: Arobas-Music Summary I. GENERAL II. VERSIONS III. FILE STRUCTURE IV. HEADERS 1. Version &#8230; <a href="/developers/protokoly/guitar-pro-4-06-file-format-description/">Читать далее <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><span id="more-860"></span><br />
<table border="0" cellspacing="2" cellpadding="2" summary="GP4 format description">
<tbody>
<tr>
<td>
<pre>GUITAR PRO FILE FORMAT v4.06

Version:   1.0RC1 English
Author:    Laurent Vromman
Translator: Avery Ceo, Matthieu Wipliez
Conversion to HTML: Mauricio Gracia Gutiérrez (corrections, added information)
Property Of: Arobas-Music</pre>
<hr />
<h2><a name="Summary"></a>Summary</h2>
<pre>
	I.   <a href="#GENERAL">GENERAL</a>
	II.  <a href="#VERSIONS">VERSIONS</a>
	III. <a href="#File_Structure">FILE STRUCTURE</a>
	IV.  <a href="#HEADERS">HEADERS</a>
		 1. <a href="#Version">Version</a>
		 2. <a href="#Information_About_the_Piece">Information about the piece</a>
		 3. <a href="#Lyrics">Lyrics</a>
		 4. <a href="#Other_information_about_the_piece">Other information about the piece</a>
	V.   <a href="#FILE_BODY">FILE BODY</a>
		 1. <a href="#Measures">Measures</a>
		 2. <a href="#Tracks">Tracks</a>
		 3. <a href="#Measures-Tracks_pairs">Measure-Track pairs</a>
		 4. <a href="#A_beat">Beats</a>
		 5. <a href="#Chords_diagrams">Chord diagrams</a>
 		 6. <a href="#Effects_on_beats">Effects on the beats</a>
 		 7. <a href="#Mix_table_change_event">Mix table change event</a>
 		 8. <a href="#Note">Notes</a>
 		 9. <a href="#Effects_on_the_notes">Effects on the notes</a>
 		 	a. <a href="#Effects_on_the_notes_2">Effects on the notes</a>
 			b. <a href="#Grace_notes">Grace notes</a>
 		10. <a href="#Bends">Bends</a>
 	VI.  <a href="#CHORDS_DIAGRAMS2">CHORDS DIAGRAMS</a></pre>
</td>
</tr>
<tr>
<td>
<h2><a name="GENERAL"></a>I. GENERAL</h2>
<p><a name="integer"></a>Values of type "integer" are stored in 4 bytes.<br />
<a name="short_int"></a>Values of type "short int" are stored in 2 bytes.<br />
<a name="byte"></a>Values of type "byte" are stored in 1 byte.</p>
<p>Values of type "integer" and "byte" presented in this document<br />
are written from left to right of the the LSB (least significant byte)<br />
to the MSB (most significant byte).</p>
<p><a name="color"></a>The colors are stored in 4 bytes in the following way, the data is written from left to right of<br />
the LSB (least significant byte) to the MSB (most significant byte):</p>
<pre>   __
3 |__| &lt;- White byte, it always evaluates to 0x00;
2 |__| &lt;- Blue;
1 |__| &lt;- Green;
0 |__| &lt;- Red.</pre>
<p><a name="string"></a>When this document uses the expression "character string," it means a couple of<br />
a first byte encoding the number 'n' of characters in the string (consequently limited to 255 characters),<br />
followed by the 'n' characters themselves.</p>
<p>The musical notes are stored as <a href="#integer">integers</a>. The value of the C(0) is 0, and each incrementation of<br />
the variable represents a half tone:</p>
<pre>- C#(0) = 1;
- C (1) = 12;
- E (2) = 28 ...</pre>
<pre><a href="#Summary">Summary</a></pre>
<hr />
<h2><a name="VERSIONS"></a>II. VERSIONS</h2>
<p>The Guitar Pro format has evolved with the program to integrate the new functionalities that it provides.</p>
<p>This document describes the structure of the Guitar Pro version 4.06 files only.</p>
<pre><a href="#Summary">Summary</a></pre>
<hr />
<h2><a name="File_Structure"></a>III. File Structure</h2>
<pre>
	 _______________________________________________________
	|	|						|
	|	| Version					|
	|	|_______________________________________________|
	|	|						|
	|	| Tablature					|
	|	|_______________________________________________|
	|Headers|						|
	|	| Lyrics					|
	|	|_______________________________________________|
	|	|						|
	|	| Other Tablature Information			|
	|_______|_______________________________________________|
File	|	|						|
	|	| Measures					|
	|	|_______________________________________________|
	|	|						|
	|	| Tracks					|
	|	|_______________________________________________|
	|	|		|		|		|
	|	|		|		| Note 1 	|
	|Body	| 		| Beat 1 	|_______________|
	|	|		|		|		|
	|       |		|		| Note i ...	|
	|       | Measure-Track |_______________|_______________|
	|       | Pairs  	|               |        	|
	|	|		|		| Note 1	|
	|       |               | Beat i ...	|_______________|
	|	|		|		|		|
	|	|		|		| Note i ...	|
	|_______|_______________|_______________|_______________|
	|							|
	| Chord Diagrams					|
	|_______________________________________________________|

<a href="#Summary">Summary</a></pre>
<hr /></td>
</tr>
<tr>
<td>
<h2><a name="HEADERS"></a>IV. HEADERS</h2>
<pre>
<tt>The difficulty in reading about the Guitar Pro files resides in the variable
size of the file's header.  Reading the file must therefore be done sequentially.</tt></pre>
<pre>	Structure
   	 _
	|
	| <a href="#Version">Version</a>
	|_
	|
	| <a href="#Information_About_the_Piece">Tablature Information</a>
	|_
	|
	| <a href="#Lyrics">Lyrics</a>
	|_
	|
	| <a href="#Other_information_about_the_piece">Other Tablature Information</a>
	|_

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Version"></a>1. Version</h3>
<pre>
0x00000000:  <tt>30 character string</tt> (not counting the byte announcing the real length of
the <a href="#string">string</a> as explained in <a href="#GENERAL">I. GENERAL</a>) representing the version number.  Only the first n
characters (n being given by the value described previously) characters are considered.</pre>
<pre>The different values possible at this time are:
	FICHIER GUITARE PRO v1
	FICHIER GUITARE PRO v1.01
	FICHIER GUITARE PRO v1.02
	FICHIER GUITARE PRO v1.03
    	FICHIER GUITARE PRO v1.04
    	FICHIER GUITAR PRO v2.20
    	FICHIER GUITAR PRO v2.21
    	FICHIER GUITAR PRO v3.00
    	FICHIER GUITAR PRO v4.00
    	FICHIER GUITAR PRO v4.06
    	FICHIER GUITAR PRO L4.06</pre>
<pre>*Translator's Note: "Fichier" is French for "File".  It is left untranslated above, as
the program expects the <a href="#string">string</a> in French.</pre>
<pre>Only the specifications relating to version "FICHIER GUITAR PRO v4.06" are described here.</pre>
<pre>After this point (0x0000001F), the data is written sequentially without a precise address.</pre>
<pre><a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Information_About_the_Piece"></a>2. Information About the Piece</h3>
<pre>
The follollowing information is presented in the form of a block of data containing:
	- an <a href="#integer">integer</a> representing the size of the stored information + 1;
	- the <a href="#string">string</a> of characters representing the data</pre>
<pre>This structure requires that a null <a href="#string">string</a> be written 01 00 00 00 00 in the file.</pre>
<pre>The information concerned is, in order of reading within the file:
	- The title of the piece;
	- The subtitle of the piece;
	- The interpret of the piece;
	- The album from which the piece was taken;
	- The author of the piece;
	- The copyright;
	- The name of the author of the tablature;
	- An 'instructional' line about the tablature.</pre>
<pre>The following section contains information regarding the 'notice' (note) field in the piece's properties.
It begins with an <a href="#integer">integer</a> containing the number of lines of Nb_Notice notes, then Nb_Notice instances of
the structure previously described, each containing lines of notes.</pre>
<pre>The file then contains a byte determining the 'TripletFeel' attribute of the piece.
If TripletFeel is activated, the value is 1.  If not, the <a href="#integer">integer</a> value is 0.</pre>
<pre><a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Lyrics"></a>3. Lyrics</h3>
<pre>
The next section of the file contains the lyrics associated with the piece.</pre>
<pre>WARNING: The strings presented in this section and in this section only do not conform to the
format presented in "<a href="#GENERAL">I. General"</a>, but are written directly.</pre>
<pre>The lyrics section begins with an <a href="#integer">integer</a> giving the number of the track with which the
lyrics are associated.</pre>
<pre>Then, for each of the 5 lines of lyrics generated by Guitar Pro 4, the file contains an
<a href="#integer">integer</a> representing the number of characters in the <a href="#string">string</a> followed by the character <a href="#string">string</a> itself.</pre>
<pre><a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Other_information_about_the_piece"></a>4. Other information about the piece</h3>
<pre>
The next data is:

The tempo:			<a href="#integer">Integer</a>

The key:			Byte
	This value encodes the key (signature) at the beginning of the piece.  It is encoded as:
		-  0: C
		-  1: G (#)
		-  2: D (##)
		- -1: F (b) ...

The Octave:			Byte
	<tt>The standard value is 0. It becomes 8 if the sheet is to be played one octave higher (8va)</tt>.

        This functionality is not yet used, but is presented as a preview of a revision of the GP4 format.

Midi Channels:
	Table of midi channels.  There are 4 ports and 16 channels, the channels are stored in this order:
		port1/channel1  - port1/channel2 ... port1/channel16 - port2/channel1 ...

		Each element of the table has the following form:
			Instrument: 	<a href="#integer">Integer</a>
  			Volume: 	Byte
  			Balance: 	Byte
  			Chorus: 	Byte
  			Reverb: 	Byte
  			Phaser: 	Byte
  			Tremolo: 	Byte

  			blank1: 	byte =&gt; Backward compatibility with version 3.0
  			blank2:		byte =&gt; Backward compatibility with version 3.0

Number of Measures:   <a href="#integer">Integer</a>
Number of Tracks:    <a href="#integer">Integer</a></pre>
<pre><a href="#Summary">Summary</a></pre>
<hr /></td>
</tr>
<tr>
<td valign="top">
<h2><a name="FILE_BODY"></a>V. FILE BODY</h2>
<pre>	 _________________________________
	|
	| Mesures
	|_________________________________
	|
	| Tracks
	|_________________________________
	|		|		|
	|		|		| Note 1
	| 		| Beat 1 	|_
	|		|		|
	|		|		| Note i ...
	| Measure-track |_______________|_
	|     Pairs     |               |
	|		|		| Note 1
	|		| Beat i ...	|_
	|		|		|
	|		|		| Note i ...
	|_______________|_______________|_



<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Measures"></a>1. Measures</h3>
<pre>
The measures are written one after another, their number having been specified previously.

The first byte is the measure's header.  It lists the data given in the current measure.
    __
 7 |__| &lt;- Presence of a double bar;
 6 |__| &lt;- Tonality of the measure;
 5 |__| &lt;- Presence of a marker;
 4 |__| &lt;- Number of alternate ending;
 3 |__| &lt;- End of repeat;
 2 |__| &lt;- Beginning of repeat;
 1 |__| &lt;- Denominator of the (key) signature;
 0 |__| &lt;- Numerator of the (key) signature.

Each of these elements is present only if the corresponding bit is a 1.

The different elements are written (if they are present) from lowest to highest bit.

Exceptions are made for the double bar and the beginning of repeat whose sole presence
is enough, complementary data is not necessary.

Numerator of the (key) signature: 	Byte
 	Numerator of the (key) signature of the piece

Denominator of the (key) signature:	Byte
 	Denominator of the (key) signature of the piece

End of repeat:			Byte
	Number of repeats until the previous Beginning of repeat.
 	Nombre de renvoi jusqu'au début de renvoi précédent.

Number of alternate ending:	Byte
	The number of alternate ending.

Marker:
	The markers are written in two steps. First is written an <a href="#integer">integer</a> equal to
	the marker's name length + 1, and then a <a href="#string">string</a> containing the marker's
	name. Finally the marker's <a href="#color">color</a> is written.

Tonality of the measure:	Byte
	This value encodes a key (signature) change on the current piece.
	It is encoded as:
		-  0: C
		-  1: G (#)
		-  2: D (##)
		- -1: F (b) ...

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Tracks"></a>2. Tracks</h3>
<pre>
The tracks are written one after another, their number having been specified previously.

The first byte is the track's header.  It precises the track's attributes:
    __
 7 |__| &lt;- Blank bit;
 6 |__| &lt;- Blank bit;
 5 |__| &lt;- Blank bit;
 4 |__| &lt;- Blank bit;
 3 |__| &lt;- Blank bit;
 2 |__| &lt;- Banjo track;
 1 |__| &lt;- 12 stringed guitar track;
 0 |__| &lt;- Drums track.

Name:				String
	A 40 characters long <a href="#string">string</a> containing the track's name.

Number of strings:		<a href="#integer">Integer</a>
	An <a href="#integer">integer</a> equal to the number of strings of the track.

Tuning of the strings:		Table of <a href="#integer">integers</a>
	The tuning of the strings is stored as a 7-<a href="#integer">integers</a> table, the "Number of
	strings" first <a href="#integer">integers</a> being really used. The strings are stored from
	the highest to the lowest.

Port:				<a href="#integer">Integer</a>
	The number of the MIDI port used.

Channel:			<a href="#integer">Integer</a>
	The number of the MIDI channel used. The channel 10 is the drums channel.

ChannelE:			<a href="#integer">Integer</a>
	The number of the MIDI channel used for effects.

Number of frets:		<a href="#integer">Integer</a>
	The number of frets of the instrument.

Height of the capo:		<a href="#integer">Integer</a>
	The number of the fret on which a capo is present. If no capo is used, the
	value is 0x00000000.

Track's color:			<a href="#color">Color
</a>	The track's displayed color in Guitar Pro.

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Measures-Tracks_pairs"></a>3. Measures-Tracks pairs</h3>
<pre>
The list of <a href="#A_beat">beats</a> per track and per measure is then written to the file in the
following order:

	Measure 1/Track 1
	Measure 1/Track 2
	...
	Measure 1/Track M
	Measure 2/Track 1
	...
	Measure 2/Track M
	...
	Measure N/Track 1
	Measure N/Track 2
	...
	Measure N/Track M

A measure-track pair is written in two steps. We first write the number of beats
in the current pair:

Number of beats:		<a href="#integer">Integer</a>
	<a href="#integer">Integer</a> indicating the number of beats the measure-track pair contains.

After what we directly write the beat details (which are described in the <a href="#A_beat">next section</a>).

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="A_beat"></a>4. A beat</h3>
<pre>
The first byte is the beat header. It lists the data present in the current beat:
    __
 7 |__| &lt;- Blank bit;
 6 |__| &lt;- Status: True if the beat is empty of if it is a rest;
 5 |__| &lt;- The beat is a n-tuplet;
 4 |__| &lt;- Presence of a mix table change event;
 3 |__| &lt;- Presence of effects;
 2 |__| &lt;- Presence of a text;
 1 |__| &lt;- Presence of a chord diagram;
 0 |__| &lt;- Dotted notes.


Status:				Byte
	If the bit 6 is true, we start by writing the beat status. The value is
	0x00 if the beat is empty and 0x02 if it is a rest.

Beat duration:			Byte
	The basic beat duration is a eighth note, which is equivalent to a
	time duration of 1. We thus obtain the following relations:
 		* -2:	Whole note;
 		* -1:	Half note;
 		*  0:	Quarter note;
 		*  1:	Eighth note;
 		*  2:	Sixteenth note;
 	 	*  3:	Thirty-second note;
 	 	* ...

N-tuplet:			<a href="#integer">Integer</a>
	If the bit 5 of the header byte is true, this <a href="#integer">integer</a> corresponds to the
	'n' in 'n-tuplet': 3, 5, 6, 7, 9, 10, 11, 12 and 13.

Chord diagram:
	If the presence of a chord diagram is indicated by the bit 1 of the
	header, it is then written here. The detail of this operation is specified
	in paragraph <a href="#Chords_diagrams">V.5 Chords diagrams</a>.

Text:
	If the presence of a text is indicated by the bit 2 of the header, it is
	written here. It behaves like most of the previous strings. We
	first find an <a href="#integer">integer</a> coding the text length + 1, followed by the <a href="#string">string</a>
	containing the text (at the format described in <a href="#GENERAL">I. GENERAL</a>).

Effect on beats:
	If the presence of an effect is indicated by the bit 3 of the header, it
	is written at this place. The detail of this operation is specified in the
	paragraph <a href="#Effects_on_beats">V.6 Effects on beats</a>. Effects on beats include tremolo bars,
	bends...

Mix table change event:
	If the presence of an event linked to the mix table is indicated by the
	bit 4 of the header, it is written here. The detail of this operaion is
	specified in the paragraph <a href="#7._Mix_table_change_event">V.7 Mix table change event</a>.

Note:
	The note itself is written here. The detail of this operation is specified
	in the paragraph <a href="#8._Note">V.8 Note</a>.

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="5._Chords_diagrams"></a><a name="Chords_diagrams"></a>5. Chords diagrams</h3>
<pre>
Header:				Byte
	This value is 0x01, indicating a Guitar Pro 4 format chord.

Sharp: 				Byte
	Determines if the chord is displayed sharp or flat.

Blank1,
Blank2,
Blank3: 			Bytes
	Blank bytes needed for ascendant compatibility with versions 3 of the software.

Root:				Byte
 	* -1 for the customized chords
 	*  0: C
 	*  1: C#...

Major/minor:			Byte
	Determines the chord type as followed:
		-  0: M
		-  1: 7
		-  2: 7M
		-  3: 6
		-  4: m
		-  5: m7
		-  6: m7M
		-  7: m6
		-  8: sus2
		-  9: sus4
		- 10: 7sus2
		- 11: 7sus4
		- 12: dim
		- 13: aug
		- 14: 5

Nine, Eleven of Thirteen:	Byte
	Determines if the chord goes until the ninth, the eleventh, or the thirteenth.

Bass: 				<a href="#integer">Integer</a>
	Lowest note of the chord. It gives the chord inversions.

Diminished/Augmented		<a href="#integer">Integer</a>
	Tonality linked with 9/11/13:
		0: perfect ("juste")
		1: augmented
		2: diminished

add: 				Byte
	Allows to determine if a 'add' (added note) is present in the chord.

Name: 				String
	20 characters long <a href="#string">string</a> containing the chord name.


Blank4,
Blank5: 			Bytes
	Blank bytes needed for ascendant compatibility with versions 3 of the software.

Fifth: 				Byte
	Tonality of the fifth:
		0: perfect ("juste")
		1: augmented
		2: diminished

Ninth: 				Byte
	Tonality of the ninth:
		0: perfect ("juste")
		1: augmented
		2: diminished
	This tonality is valid only if the value "Nine, Eleven or Thirteen" is 11 or 13.

Eleventh: 			Byte
	Tonality of the eleventh:
		0: perfect ("juste")
		1: augmented
		2: diminished
	This tonality is valid only if the value "Nine, Eleven or Thirteen" is 13.

Base fret:			<a href="#integer">Integer</a>
	Shows the fret from which the chord is displayed.

Frets: 				List of 7 <a href="#integer">integers</a>.
	Corresponds to the fret number played on each <a href="#string">string</a>, from the highest to the lowest.
	-1 means a <a href="#string">string</a> unplayed.
	0 means a <a href="#string">string</a> played "blank" (ie no fret).

Number of barres: 		Byte
	Indicates the number of barres there are in the chord. A chord can contain up to 5 barres.

Fret of the barre:		List of 5 Bytes
	Indicates the fret number of each possible barre.

Barre start:			List of 5 Bytes
	Indicates the first <a href="#string">string</a> of the barre, 1 being the highest.
        The list order matches the chord different barres frets list order.

Barre end: 			List of 5 Bytes
	Indicates the first <a href="#string">string</a> of the barre, 1 being the lowest.
        The list order matches the chord different barres frets list order.

Omission1,
Omission3,
Omission5,
Omission7,
Omission9,
Omission11,
Omission13:  			Bytes
	Gives the notes there are in the chord.
        If the value is 0x00, the note is not in the chord, and if the value is
        0x01, the note is in the chord. 9, 11 or 13 can only be present
        for a "Nine, Eleven or Thirteen" big enough.

Blank6: 			Byte
	Blank byte needed for ascendant compatibility with versions 3 of the software.

Fingering:			List of 7 Bytes
	Describes the fingering used to play the chord.
        Below is given the fingering from the highest <a href="#string">string</a> to the lowest:
		-2: unknown;
		-1: X or 0 (no finger);
		 0: thumb;
		 1: index;
		 2: middle finger;
		 3: annular;
		 4: little finger.

ShowDiagFingering:		Byte
	If it is 0x01, the chord fingering is displayed.
	If it is 0x00, the chord fingering is masked.

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Effects_on_beats"></a>6. Effects on beats</h3>
<pre>
The first byte is the header of effects linked to beats. It gives information about existing effects:
    __
 7 |__| &lt;- Blank bit;
 6 |__| &lt;- Stroke effect;
 5 |__| &lt;- Tapping, popping or slapping effect;
 4 |__| &lt;- unused bit -&gt; remainings of version 3;
 3 |__| &lt;- unused bit -&gt; remainings of version 3;
 2 |__| &lt;- unused bit -&gt; remainings of version 3;
 1 |__| &lt;- unused bit -&gt; remainings of version 3;
 0 |__| &lt;- unused bit -&gt; remainings of version 3.

The 2nd byte is linked with effects new to the version 4 of the software.
    __
 7 |__| &lt;- Blank bit;
 6 |__| &lt;- Blank bit;
 5 |__| &lt;- Blank bit;
 4 |__| &lt;- Blank bit;
 3 |__| &lt;- Blank bit;
 2 |__| &lt;- Tremolo Bar;
 1 |__| &lt;- Pickstroke;
 0 |__| &lt;- Rasguedo.

The effects, if any, are then written in the following order:

Tapping/Popping/Slapping:	Byte
	The presence of this effect is set by the bit 5 of the first header byte.
        It is written as:
 		0: None
 		1: Tapping
 		2: Slapping
 		3: Popping (bass guitar)

Tremolo Bar:			<a href="#10._Bends">Bend
</a>	The presence of this effect is set by the bit 2 of the second header byte.
 	The tremolo bar is saved as a BEND, as described in the paragraph <a href="#10._Bends">V.10 Bends</a>.

UpStroke:			Byte
	The presence of this effect is set by the bit 6 of the first header byte.
        It can take different values depending on the stroke speed:
 		0: none;
 		1: hundred twenty eighth note;
 		2: sixty-fourth note;
 		3: thirty-second note;
 		4: sixteenth note;
 		5: eighth note;
 		6: quarter note.

DownStroke:			Byte
	The presence of this effect is set by the bit 6 of the first header byte.
        It can take different values depending on the stroke speed:
 		0: none;
 		1: hundred twenty eighth note;
 		2: sixty-fourth note;
 		3: thirty-second note;
 		4: sixteenth note;
 		5: eighth note;
 		6: quarter note.

Rasguedo:
	The rasguedo is set if the bit 0 of the second header byte is set. It is
        a complement to the strokes, so it does not need any additional data.


Pickstroke:			Byte
	The presence of this effect is set by the bit 1 of the second header byte.
        It can take different values:
 		0: none;
 		1: going up;
 		2: going down.


<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="7._Mix_table_change_event"></a><a name="Mix_table_change_event"></a>7. Mix table change event</h3>
<pre>
Instrument:   			Byte
	Gives the number of the new instrument. The value is -1 if no instrument change occurs.

Volume:       			Byte
	Gives the new volume value. The value is -1 if no volume change occurs.

Pan:       			Byte
	Gives the new pan value. The value is -1 if no pan change occurs.

Chorus:       			Byte
	Gives the new chorus value. The value is -1 if no chorus change occurs.

Reverb:       			Byte
	Gives the new reverb value. The value is -1 if no reverb change occurs.

Phaser:       			Byte
	Gives the new phaser value. The value is -1 if no phaser change occurs.

Tremolo:      			Byte
	Gives the new tremolo value. The value is -1 if no tremolo change occurs.

Tempo:        			<a href="#integer">Integer</a>
	Gives the new tempo value. The value is -1 if no tempo change occurs.

Volume change duration:		Byte
	Gives the volume change duration in beats.

Pan change duration: 		Byte
	Gives the pan change duration in beats.

Chorus change duration:		Byte
	Gives the chorus change duration in beats.

Reverb change duration:		Byte
	Gives the reverb change duration in beats.

Phaser change duration:		Byte
	Gives the phaser change duration in beats.

Tremolo change duration:	Byte
	Gives the tremolo change duration in beats.

Tempo change duration:		Byte
	Gives the tempo change duration in beats.

The next byte precises if the changes apply only to the current track (if the
matching bit is 0), or to every track (if it is 1).
    __
 7 |__| &lt;- Blank bit;
 6 |__| &lt;- Blank bit;
 5 |__| &lt;- Tremolo;
 4 |__| &lt;- Phaser;
 3 |__| &lt;- Reverb;
 2 |__| &lt;- Chorus;
 1 |__| &lt;- Pan;
 0 |__| &lt;- Volume.

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="8._Note"></a><a name="Note"></a>8. Note</h3>
<pre>
The first byte is the note header. It lists the information about the different
parameters linked to the note:
    __
 7 |__| &lt;- Right hand or left hand fingering;
 6 |__| &lt;- Accentuated note;
 5 |__| &lt;- Note type (rest, empty note, normal note);
 4 |__| &lt;- Note dynamic;
 3 |__| &lt;- Presence of effects linked to the note;
 2 |__| &lt;- Ghost note;
 1 |__| &lt;- Dotted note;
 0 |__| &lt;- Time-independent duration.

Note type:			<a href="#short_int">Short Int</a>
 	If the bit 5 is true, we start by writing the note type. The value is:
 		0x0100 if the note is normal;
 		0x0200 if the note is a ghost note;
 		0x0300 if the note is a tie note.

Note duration:
	If the bit 0 is true, we write the 2 following information linked to the
        note duration.

	Time duration:		Byte
        	The basic time duration is the quarter note, which is equivalent
                to a time duration of 1. Therefore, we obtain the relations:
 			* -2:	Whole Note;
 			* -1:	Half note;
 			*  0:	Quarter note;
 			*  1:	Eighth note;
 			*  2:	Sixteenth note;
 	 		*  3:	Thirty-second note;
 	 		* ...

 	N-tuplet:		Byte
        	This int matches the N in "N-tuplet" (ie 3, 5, 6, 7, 9, 10, 11, 12, 13).

Note dynamic:			Byte
	If the bit 4 of the header byte is true, we write here the note strength
        with the following rule:
		- 1: ppp
		- 2: pp
		- 3: p
		- 4: mp
		- 5: mf
		- 7: f
		- 8: ff
		- 9: fff
	If the bit 4 is false, we then consider that the note is forte (value 6).

Fret number:			Byte
	If the bit 5 is true, we write here the number of the fret on which the note
        is applied.

Fingering:			List of 2 bytes
	If the bit 7 is true, we write here successively the fingerings left hand,
        then right hand, each of them being written on one byte. The fingering
        is coded this way:
		-1: nothing;
		 0: thumb;
		 1: index;
		 2: middle finger;
		 3: annular;
		 4: little finger.

Effects on the note:
	If the presence of an effect is indicated by the bit 3 of the header, it
        is saved at this place. The details of this operation is specified in the
        next paragraph. Those include for example vibratos, palm muting,
        slides, harmonices...

<a href="#Summary">Summary</a></pre>
<hr />
<h3><a name="Effects_on_the_notes"></a>9. Effects on the notes</h3>
<pre><a name="Effects_on_the_notes_2"></a>a. Effects on the notes</pre>
<pre>
The effects presence for the current note is set by the 2 header bytes.

First byte:
    __
 7 |__| &lt;- Blank bit;
 6 |__| &lt;- Blank bit;
 5 |__| &lt;- Blank bit;
 4 |__| &lt;- Grace note presence;
 3 |__| &lt;- Let ring;
 2 |__| &lt;- Presence of a slide from the current note (version 3);
 1 |__| &lt;- Presence of a hammer-on or a pull-off from the current note;
 0 |__| &lt;- Presence of a bend.

Second byte:
    __
 7 |__| &lt;- Blank bit;
 6 |__| &lt;- Left hand vibrato;
 5 |__| &lt;- Trill;
 4 |__| &lt;- Harmonic note;
 3 |__| &lt;- Presence of a slide from the current note;
 2 |__| &lt;- Tremolo picking;
 1 |__| &lt;- Palm Mute;
 0 |__| &lt;- Note played staccato.

Bend:
	If the bit 0 of the first header byte is true, we write here the bend as
        described in section <a href="#Bends">V.10. Bends</a>.

Grace Note:
	If the bit 4 of the first header byte is true, we write here the data
        relative to the Grace Note, as described in section <a href="#b._Grace_notes">V.9.b Grace Notes</a>.

Tremolo Picking:		Byte
	If the bit 2 of the second header byte is true, the information linked to
        tremolo picking are saved here. It is encoded like this:
		- 1: eighth note;
		- 2: sixteenth note;
		- 3: thirty-second note.

Slide:				Byte
	If the bit 3 of the second header byte is true, the information linked to
        the slide is stored here and is coded like this:
		* -2: slide into from above
		* -1: slide into from below
		*  0: no slide
		*  1: shift slide
		*  2: legato slide
		*  3: slide out of downwards
		*  4: slide out of upwards

Harmonics:			Byte
	If the bit 4 of the second header byte is true, the information linked to
        the harmonics is stored here and is coded like this:
		- 0:  None
		- 1:  Natural
		- 15: Artificial+5
		- 17: Artificial+7
		- 22: Artificial+12
		- 3:  Tapped
		- 4:  Pitch
		- 5:  Semi

Trill:
	If the bit 5 of the second header byte is true, the information linked to
        the Trill effect is stored here. It is written in two steps:
		Fret:		Byte
			The fret the trill is made with.

		Period:		Byte
                	The period between each note. The value is encoded as:
				- 0: Quarter note;
				- 1: Eighth note;
				- 2: Sixteenth note.

The following effects are present if the bit of the header is true:
	- Let ring
	- Presence of a hammer-on or a pull-off from the current note
	- Left hand vibrato
	- Palm Mute
	- Note played staccato.

<a href="#Summary">Summary</a></pre>
<hr />
<h4><a name="b._Grace_notes"></a><a name="Grace_notes"></a>b. Grace notes</h4>
<pre>
The grace notes are stored in the file with 4 variables, written in the following
order.

Fret:				Byte
	The fret number the grace note is made from.

Dynamic: 			Byte
	The grace note dynamic is coded like this:
		- 1: ppp
		- 2: pp
		- 3: p
		- 4: mp
		- 5: mf
		- 6: f
		- 7: ff
		- 8: fff
	The default value is 6.

Transition:			Byte
	This variable determines the transition type used to make the grace note:
		- 0: None
		- 1: Slide
		- 2: Bend
		- 3: Hammer

Duration:			Byte
	Determines the grace note duration, coded this way:
		- 3: Sixteenth note.
		- 2: Twenty-fourth note.
		- 1: Thirty-second note.


<a href="#Summary">Summary</a></pre>
<hr />
<h4><a name="10._Bends"></a><a name="Bends"></a>10. Bends</h4>
<pre>
Type:				Byte
	Gives the bend type. Different types are allowed and are context-dependent (tremolo bar or bend).
	The model list is:
		Common:
			- 0: None

		Bend specific:
			- 1: Bend
			- 2: Bend and Release
			- 3: Bend and Release and Bend
			- 4: Prebend
			- 5: Prebend and Release

		Tremolo bar specific:
			- 6: Dip
			- 7: Dive
			- 8: Release (up)
			- 9: Inverted dip
			-10: Return
			-11: Release (down)

Value:				<a href="#integer">Integer</a>
	Bend height. It is 100 per tone and goes by quarter tone.
		* Normal position:	0;
		* Quarter tone: 	25;
		* Half tone:		50;
		* Three-quarters tone:	75;
		* Whole tone:		100;
		... until
		* Three tones:		300.


Number of points:		<a href="#integer">Integer</a>
	Number of points used to display the bend. Is followed by the list of points.

List of points:
	Each point is written like this:
		Absolute time position		<a href="#integer">Integer</a>
			Gives the point position from the previous point. This value goes between 0 and 60
                        and represents sixties of the note duration.

		Vertical position		<a href="#integer">Integer</a>
                	It is 100 per tone and goes by quarter tone.
			* Normal position:	0;
			* Quarter tone: 	25;
			* Half tone:		50;
			* Three-quarters tone:	75;
			* Whole tone:		100;
			... until
			* Three tones:		300.

		Vibrato				Byte
                	Determines how to play the section, with different vibrato types:
				- 0: none
				- 1: fast
				- 2: average
				- 3: slow

<a href="#Summary">Summary</a></pre>
<hr /></td>
</tr>
<tr>
<td valign="top">
<h2><a name="CHORDS_DIAGRAMS2"></a>VI. CHORDS DIAGRAMS</h2>
<pre>
Number of chords:		<a href="#integer">Integer</a>
	Number of chords to write in the chords diagram list.

Then comes the written chords list, as described in <a href="#5._Chords_diagrams">V.5 Chords diagrams</a>.</pre>
</td>
</tr>
</tbody>
</table>
<hr />This page is part of the <a target="_blank" rel="nofollow" href="http://DGuitar.sourceforge.net/"  target="_top">DGuitar Home Page</a></p>
]]></content:encoded>
			<wfw:commentRss>http://UbuntuLinux.ru/developers/protokoly/guitar-pro-4-06-file-format-description/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
