metanorma-itu 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.hound.yml +3 -0
- data/.rubocop.yml +10 -0
- data/.travis.yml +17 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE +25 -0
- data/README.adoc +72 -0
- data/Rakefile +6 -0
- data/appveyor.yml +29 -0
- data/lib/asciidoctor/itu.rb +7 -0
- data/lib/asciidoctor/itu/biblio.rng +949 -0
- data/lib/asciidoctor/itu/converter.rb +164 -0
- data/lib/asciidoctor/itu/front.rb +182 -0
- data/lib/asciidoctor/itu/isodoc.rng +1132 -0
- data/lib/asciidoctor/itu/isostandard.rng +801 -0
- data/lib/asciidoctor/itu/itu.rng +223 -0
- data/lib/asciidoctor/itu/reqt.rng +162 -0
- data/lib/asciidoctor/itu/validate.rb +55 -0
- data/lib/isodoc/itu.rb +11 -0
- data/lib/isodoc/itu/base_convert.rb +210 -0
- data/lib/isodoc/itu/html/Logo_ITU.jpg +0 -0
- data/lib/isodoc/itu/html/header.html +162 -0
- data/lib/isodoc/itu/html/html_itu_intro.html +42 -0
- data/lib/isodoc/itu/html/html_itu_titlepage.html +144 -0
- data/lib/isodoc/itu/html/htmlstyle.scss +1167 -0
- data/lib/isodoc/itu/html/itu-document-comb.png +0 -0
- data/lib/isodoc/itu/html/itu.scss +707 -0
- data/lib/isodoc/itu/html/logo.png +0 -0
- data/lib/isodoc/itu/html/scripts.html +82 -0
- data/lib/isodoc/itu/html/scripts.pdf.html +70 -0
- data/lib/isodoc/itu/html/word_itu_intro.html +246 -0
- data/lib/isodoc/itu/html/word_itu_titlepage.html +283 -0
- data/lib/isodoc/itu/html/wordstyle.scss +1237 -0
- data/lib/isodoc/itu/html_convert.rb +72 -0
- data/lib/isodoc/itu/i18n-en.yaml +2 -0
- data/lib/isodoc/itu/metadata.rb +100 -0
- data/lib/isodoc/itu/pdf_convert.rb +70 -0
- data/lib/isodoc/itu/word_convert.rb +115 -0
- data/lib/metanorma-itu.rb +8 -0
- data/lib/metanorma/itu.rb +11 -0
- data/lib/metanorma/itu/processor.rb +43 -0
- data/lib/metanorma/itu/version.rb +5 -0
- data/metanorma-itu.gemspec +44 -0
- metadata +327 -0
Binary file
|
@@ -0,0 +1,82 @@
|
|
1
|
+
<script>
|
2
|
+
//TOC generation
|
3
|
+
$('#toc').toc({
|
4
|
+
'selectors': toclevel(), //elements to use as headings
|
5
|
+
'container': 'main', //element to find all selectors in
|
6
|
+
'smoothScrolling': true, //enable or disable smooth scrolling on click
|
7
|
+
'prefix': 'toc', //prefix for anchor tags and class names
|
8
|
+
'onHighlight': function(el) {}, //called when a new section is highlighted
|
9
|
+
'highlightOnScroll': true, //add class to heading that is currently in focus
|
10
|
+
'highlightOffset': 100, //offset to trigger the next headline
|
11
|
+
'anchorName': function(i, heading, prefix) { //custom function for anchor name
|
12
|
+
return prefix+i;
|
13
|
+
},
|
14
|
+
'headerText': function(i, heading, $heading) { //custom function building the header-item text
|
15
|
+
return $heading.text();
|
16
|
+
},
|
17
|
+
'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
|
18
|
+
return $heading[0].tagName.toLowerCase();
|
19
|
+
}
|
20
|
+
});
|
21
|
+
|
22
|
+
</script>
|
23
|
+
|
24
|
+
<script>
|
25
|
+
//TOC toggle animation
|
26
|
+
$('#toggle').on('click', function(){
|
27
|
+
if( $('nav').is(':visible') ) {
|
28
|
+
$('nav').animate({ 'left': '-353px' }, 'slow', function(){
|
29
|
+
$('nav').hide();
|
30
|
+
});
|
31
|
+
$('.container').animate({ 'padding-left': '31px' }, 'slow');
|
32
|
+
}
|
33
|
+
else {
|
34
|
+
$('nav').show();
|
35
|
+
$('nav').animate({ 'left': '0px' }, 'slow');
|
36
|
+
$('.container').animate({ 'padding-left': '360px' }, 'slow');
|
37
|
+
}
|
38
|
+
});
|
39
|
+
</script>
|
40
|
+
|
41
|
+
<script>
|
42
|
+
// Scroll to top button
|
43
|
+
window.onscroll = function() {scrollFunction()};
|
44
|
+
|
45
|
+
function scrollFunction() {
|
46
|
+
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
|
47
|
+
document.getElementById("myBtn").style.display = "block";
|
48
|
+
} else {
|
49
|
+
document.getElementById("myBtn").style.display = "none";
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// When the user clicks on the button, scroll to the top of the document
|
54
|
+
function topFunction() {
|
55
|
+
document.body.scrollTop = 0;
|
56
|
+
document.documentElement.scrollTop = 0;
|
57
|
+
}
|
58
|
+
</script>
|
59
|
+
|
60
|
+
<script>
|
61
|
+
/**
|
62
|
+
* AnchorJS - v4.1.0 - 2017-09-20
|
63
|
+
* https://github.com/bryanbraun/anchorjs
|
64
|
+
* Copyright (c) 2017 Bryan Braun; Licensed MIT
|
65
|
+
*/
|
66
|
+
!function(A,e){"use strict";"function"==typeof define&&define.amd?define([],e):"object"==typeof module&&module.exports?module.exports=e():(A.AnchorJS=e(),A.anchors=new A.AnchorJS)}(this,function(){"use strict";return function(A){function e(A){A.icon=A.hasOwnProperty("icon")?A.icon:"",A.visible=A.hasOwnProperty("visible")?A.visible:"hover",A.placement=A.hasOwnProperty("placement")?A.placement:"right",A.ariaLabel=A.hasOwnProperty("ariaLabel")?A.ariaLabel:"Anchor",A.class=A.hasOwnProperty("class")?A.class:"",A.truncate=A.hasOwnProperty("truncate")?Math.floor(A.truncate):64}function t(A){var e;if("string"==typeof A||A instanceof String)e=[].slice.call(document.querySelectorAll(A));else{if(!(Array.isArray(A)||A instanceof NodeList))throw new Error("The selector provided to AnchorJS was invalid.");e=[].slice.call(A)}return e}function i(){if(null===document.head.querySelector("style.anchorjs")){var A,e=document.createElement("style");e.className="anchorjs",e.appendChild(document.createTextNode("")),void 0===(A=document.head.querySelector('[rel="stylesheet"], style'))?document.head.appendChild(e):document.head.insertBefore(e,A),e.sheet.insertRule(" .anchorjs-link { opacity: 0; text-decoration: none; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }",e.sheet.cssRules.length),e.sheet.insertRule(" *:hover > .anchorjs-link, .anchorjs-link:focus { opacity: 1; }",e.sheet.cssRules.length),e.sheet.insertRule(" [data-anchorjs-icon]::after { content: attr(data-anchorjs-icon); }",e.sheet.cssRules.length),e.sheet.insertRule(' @font-face { font-family: "anchorjs-icons"; src: url(data:n/a;base64,AAEAAAALAIAAAwAwT1MvMg8yG2cAAAE4AAAAYGNtYXDp3gC3AAABpAAAAExnYXNwAAAAEAAAA9wAAAAIZ2x5ZlQCcfwAAAH4AAABCGhlYWQHFvHyAAAAvAAAADZoaGVhBnACFwAAAPQAAAAkaG10eASAADEAAAGYAAAADGxvY2EACACEAAAB8AAAAAhtYXhwAAYAVwAAARgAAAAgbmFtZQGOH9cAAAMAAAAAunBvc3QAAwAAAAADvAAAACAAAQAAAAEAAHzE2p9fDzz1AAkEAAAAAADRecUWAAAAANQA6R8AAAAAAoACwAAAAAgAAgAAAAAAAAABAAADwP/AAAACgAAA/9MCrQABAAAAAAAAAAAAAAAAAAAAAwABAAAAAwBVAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAMCQAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAg//0DwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAAIAAAACgAAxAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADAAAAAIAAgAAgAAACDpy//9//8AAAAg6cv//f///+EWNwADAAEAAAAAAAAAAAAAAAAACACEAAEAAAAAAAAAAAAAAAAxAAACAAQARAKAAsAAKwBUAAABIiYnJjQ3NzY2MzIWFxYUBwcGIicmNDc3NjQnJiYjIgYHBwYUFxYUBwYGIwciJicmNDc3NjIXFhQHBwYUFxYWMzI2Nzc2NCcmNDc2MhcWFAcHBgYjARQGDAUtLXoWOR8fORYtLTgKGwoKCjgaGg0gEhIgDXoaGgkJBQwHdR85Fi0tOAobCgoKOBoaDSASEiANehoaCQkKGwotLXoWOR8BMwUFLYEuehYXFxYugC44CQkKGwo4GkoaDQ0NDXoaShoKGwoFBe8XFi6ALjgJCQobCjgaShoNDQ0NehpKGgobCgoKLYEuehYXAAAADACWAAEAAAAAAAEACAAAAAEAAAAAAAIAAwAIAAEAAAAAAAMACAAAAAEAAAAAAAQACAAAAAEAAAAAAAUAAQALAAEAAAAAAAYACAAAAAMAAQQJAAEAEAAMAAMAAQQJAAIABgAcAAMAAQQJAAMAEAAMAAMAAQQJAAQAEAAMAAMAAQQJAAUAAgAiAAMAAQQJAAYAEAAMYW5jaG9yanM0MDBAAGEAbgBjAGgAbwByAGoAcwA0ADAAMABAAAAAAwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABAAH//wAP) format("truetype"); }',e.sheet.cssRules.length)}}this.options=A||{},this.elements=[],e(this.options),this.isTouchDevice=function(){return!!("ontouchstart"in window||window.DocumentTouch&&document instanceof DocumentTouch)},this.add=function(A){var n,o,s,a,r,c,h,l,u,d,f,p=[];if(e(this.options),"touch"===(f=this.options.visible)&&(f=this.isTouchDevice()?"always":"hover"),A||(A="h2, h3, h4, h5, h6"),0===(n=t(A)).length)return this;for(i(),o=document.querySelectorAll("[id]"),s=[].map.call(o,function(A){return A.id}),r=0;r<n.length;r++)if(this.hasAnchorJSLink(n[r]))p.push(r);else{if(n[r].hasAttribute("id"))a=n[r].getAttribute("id");else if(n[r].hasAttribute("data-anchor-id"))a=n[r].getAttribute("data-anchor-id");else{u=l=this.urlify(n[r].textContent),h=0;do{void 0!==c&&(u=l+"-"+h),c=s.indexOf(u),h+=1}while(-1!==c);c=void 0,s.push(u),n[r].setAttribute("id",u),a=u}a.replace(/-/g," "),(d=document.createElement("a")).className="anchorjs-link "+this.options.class,d.href="#"+a,d.setAttribute("aria-label",this.options.ariaLabel),d.setAttribute("data-anchorjs-icon",this.options.icon),"always"===f&&(d.style.opacity="1"),""===this.options.icon&&(d.style.font="1em/1 anchorjs-icons","left"===this.options.placement&&(d.style.lineHeight="inherit")),"left"===this.options.placement?(d.style.position="absolute",d.style.marginLeft="-1em",d.style.paddingRight="0.5em",n[r].insertBefore(d,n[r].firstChild)):(d.style.paddingLeft="0.375em",n[r].appendChild(d))}for(r=0;r<p.length;r++)n.splice(p[r]-r,1);return this.elements=this.elements.concat(n),this},this.remove=function(A){for(var e,i,n=t(A),o=0;o<n.length;o++)(i=n[o].querySelector(".anchorjs-link"))&&(-1!==(e=this.elements.indexOf(n[o]))&&this.elements.splice(e,1),n[o].removeChild(i));return this},this.removeAll=function(){this.remove(this.elements)},this.urlify=function(A){var t=/[& +$,:;=?@"#{}|^~[`%!'<>\]\.\/\(\)\*\\]/g;return this.options.truncate||e(this.options),A.trim().replace(/\'/gi,"").replace(t,"-").replace(/-{2,}/g,"-").substring(0,this.options.truncate).replace(/^-+|-+$/gm,"").toLowerCase()},this.hasAnchorJSLink=function(A){var e=A.firstChild&&(" "+A.firstChild.className+" ").indexOf(" anchorjs-link ")>-1,t=A.lastChild&&(" "+A.lastChild.className+" ").indexOf(" anchorjs-link ")>-1;return e||t||!1}}}); </script>
|
67
|
+
|
68
|
+
<script>
|
69
|
+
$(document).ready(function() {
|
70
|
+
$('[id^=toc]').each(function ()
|
71
|
+
{
|
72
|
+
var currentToc = $(this);
|
73
|
+
var url = window.location.href;
|
74
|
+
currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
|
75
|
+
});
|
76
|
+
});
|
77
|
+
anchors.options = {
|
78
|
+
placement: 'left'
|
79
|
+
};
|
80
|
+
anchors.add('h1, h2, h3, h4');
|
81
|
+
</script>
|
82
|
+
|
@@ -0,0 +1,70 @@
|
|
1
|
+
<script>
|
2
|
+
//TOC generation
|
3
|
+
$('#toc').toc({
|
4
|
+
'selectors': toclevel(), //elements to use as headings
|
5
|
+
'container': 'main', //element to find all selectors in
|
6
|
+
'smoothScrolling': true, //enable or disable smooth scrolling on click
|
7
|
+
'prefix': 'toc', //prefix for anchor tags and class names
|
8
|
+
'onHighlight': function(el) {}, //called when a new section is highlighted
|
9
|
+
'highlightOnScroll': false, //add class to heading that is currently in focus
|
10
|
+
'highlightOffset': 100, //offset to trigger the next headline
|
11
|
+
'anchorName': function(i, heading, prefix) { //custom function for anchor name
|
12
|
+
return prefix+i;
|
13
|
+
},
|
14
|
+
'headerText': function(i, heading, $heading) { //custom function building the header-item text
|
15
|
+
return $heading.text();
|
16
|
+
},
|
17
|
+
'itemClass': function(i, heading, $heading, prefix) { // custom function for item class
|
18
|
+
return $heading[0].tagName.toLowerCase();
|
19
|
+
}
|
20
|
+
});
|
21
|
+
|
22
|
+
</script>
|
23
|
+
|
24
|
+
<script>
|
25
|
+
//TOC toggle animation
|
26
|
+
$('#toggle').on('click', function(){
|
27
|
+
if( $('nav').is(':visible') ) {
|
28
|
+
$('nav').animate({ 'left': '-353px' }, 'slow', function(){
|
29
|
+
$('nav').hide();
|
30
|
+
});
|
31
|
+
$('.container').animate({ 'padding-left': '31px' }, 'slow');
|
32
|
+
}
|
33
|
+
else {
|
34
|
+
$('nav').show();
|
35
|
+
$('nav').animate({ 'left': '0px' }, 'slow');
|
36
|
+
$('.container').animate({ 'padding-left': '360px' }, 'slow');
|
37
|
+
}
|
38
|
+
});
|
39
|
+
</script>
|
40
|
+
|
41
|
+
<script>
|
42
|
+
// Scroll to top button
|
43
|
+
window.onscroll = function() {scrollFunction()};
|
44
|
+
|
45
|
+
function scrollFunction() {
|
46
|
+
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
|
47
|
+
document.getElementById("myBtn").style.display = "block";
|
48
|
+
} else {
|
49
|
+
document.getElementById("myBtn").style.display = "none";
|
50
|
+
}
|
51
|
+
}
|
52
|
+
|
53
|
+
// When the user clicks on the button, scroll to the top of the document
|
54
|
+
function topFunction() {
|
55
|
+
document.body.scrollTop = 0;
|
56
|
+
document.documentElement.scrollTop = 0;
|
57
|
+
}
|
58
|
+
</script>
|
59
|
+
|
60
|
+
<script>
|
61
|
+
$(document).ready(function() {
|
62
|
+
$('[id^=toc]').each(function ()
|
63
|
+
{
|
64
|
+
var currentToc = $(this);
|
65
|
+
var url = window.location.href;
|
66
|
+
currentToc.wrap("<a href='" + url + "#" + currentToc.attr("id") + "' </a>");
|
67
|
+
});
|
68
|
+
});
|
69
|
+
</script>
|
70
|
+
|
@@ -0,0 +1,246 @@
|
|
1
|
+
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
|
2
|
+
style='border-collapse:collapse;mso-table-layout-alt:fixed;mso-padding-alt:
|
3
|
+
0cm 5.4pt 0cm 5.4pt'>
|
4
|
+
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
|
5
|
+
<td width=663 valign=top style='width:497.25pt;padding:0cm 5.4pt 0cm 5.4pt'>
|
6
|
+
<p class=RecNo><span style='mso-bookmark:_Hlk526346232'><a name=irecnoe></a><span
|
7
|
+
lang=FR-CH style='mso-ansi-language:FR-CH;font-size:14pt;font-weight:bold;'>Recommendation ITU-{{ bureau }} {{ docnumber }}<o:p></o:p></span></span></p>
|
8
|
+
<p class=Rectitle align="center"><span style='mso-bookmark:_Hlk526346232'><span lang=FR-CH
|
9
|
+
style='mso-ansi-language:FR-CH;font-size:14pt;font-weight:bold;'>{{ doctitle }}<o:p></o:p></span></span></p>
|
10
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
11
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=FR-CH
|
12
|
+
style='mso-ansi-language:FR-CH'><o:p> </o:p></span></span></p>
|
13
|
+
</td>
|
14
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
15
|
+
</tr>
|
16
|
+
</table>
|
17
|
+
|
18
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=FR-CH
|
19
|
+
style='mso-ansi-language:FR-CH'><o:p> </o:p></span></span></p>
|
20
|
+
|
21
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=FR-CH
|
22
|
+
style='mso-ansi-language:FR-CH'><o:p> </o:p></span></span></p>
|
23
|
+
|
24
|
+
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
|
25
|
+
style='border-collapse:collapse;mso-table-layout-alt:fixed;mso-padding-alt:
|
26
|
+
0cm 5.4pt 0cm 5.4pt'>
|
27
|
+
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
|
28
|
+
<td width=663 valign=top style='width:497.25pt;padding:0cm 5.4pt 0cm 5.4pt'>
|
29
|
+
<div id="abstractbox">
|
30
|
+
</div>
|
31
|
+
</td>
|
32
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
33
|
+
</tr>
|
34
|
+
</table>
|
35
|
+
|
36
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
37
|
+
style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
38
|
+
|
39
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
40
|
+
style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
41
|
+
|
42
|
+
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=663
|
43
|
+
style='width:497.4pt;border-collapse:collapse;mso-padding-alt:0cm 5.4pt 0cm 5.4pt'>
|
44
|
+
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
|
45
|
+
<td width=663 valign=top style='width:497.4pt;padding:0cm 5.4pt 0cm 5.4pt'>
|
46
|
+
<div id="historybox">
|
47
|
+
</div>
|
48
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
49
|
+
<p class=Headingb style='margin-bottom:6.0pt'><span style='mso-bookmark:_Hlk526346232'><span
|
50
|
+
lang=EN-US style='mso-ansi-language:EN-US'><o:p></o:p></span></span></p>
|
51
|
+
</td>
|
52
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
53
|
+
</tr>
|
54
|
+
</table>
|
55
|
+
|
56
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
57
|
+
style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
58
|
+
|
59
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
60
|
+
style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
61
|
+
|
62
|
+
<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
|
63
|
+
style='border-collapse:collapse;mso-table-layout-alt:fixed;mso-padding-alt:
|
64
|
+
0cm 5.4pt 0cm 5.4pt'>
|
65
|
+
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;mso-yfti-lastrow:yes'>
|
66
|
+
<td width=663 valign=top style='width:497.25pt;padding:0cm 5.4pt 0cm 5.4pt'>
|
67
|
+
<div id="keywordsbox">
|
68
|
+
</div>
|
69
|
+
</td>
|
70
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
71
|
+
</tr>
|
72
|
+
</table>
|
73
|
+
|
74
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
75
|
+
style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
76
|
+
|
77
|
+
<p><br clear=all
|
78
|
+
style='page-break-before:always'></p>
|
79
|
+
|
80
|
+
<p class=MsoNormal align=center style='margin-top:24.0pt;text-align:center'><span
|
81
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
82
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>FOREWORD<o:p></o:p></span></span></p>
|
83
|
+
|
84
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
85
|
+
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>The
|
86
|
+
International Telecommunication Union (ITU) is the United Nations specialized
|
87
|
+
agency in the field of telecommunications</span></span><span
|
88
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
89
|
+
mso-ansi-language:EN-US'>, information and communication technologies (ICTs).</span></span><span
|
90
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
91
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'> The ITU Telecommunication
|
92
|
+
Standardization Sector (ITU-T) is a permanent organ of ITU. ITU-T is
|
93
|
+
responsible for studying technical, operating and tariff questions and issuing
|
94
|
+
Recommendations on them with a view to standardizing telecommunications on a
|
95
|
+
worldwide basis.<o:p></o:p></span></span></p>
|
96
|
+
|
97
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
98
|
+
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>The <a
|
99
|
+
name=iitexte>World Telecommunication Standardization Assembly (WTSA), which
|
100
|
+
meets every four years, establishes the topics for study by the ITU‑T study
|
101
|
+
groups which, in turn, produce Recommendations on these topics.<o:p></o:p></a></span></span></p>
|
102
|
+
|
103
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span
|
104
|
+
style='mso-bookmark:iitexte'><span lang=EN-US style='font-size:11.0pt;
|
105
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>The approval of ITU-T
|
106
|
+
Recommendations is covered by the procedure laid down in WTSA Resolution 1</span></span></span><span
|
107
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
108
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>.<o:p></o:p></span></span></p>
|
109
|
+
|
110
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
111
|
+
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>In
|
112
|
+
some areas of information technology which fall within ITU-T's purview, the
|
113
|
+
necessary standards are prepared on a collaborative basis with ISO and IEC.<o:p></o:p></span></span></p>
|
114
|
+
|
115
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
116
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
117
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
118
|
+
|
119
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
120
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
121
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
122
|
+
|
123
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
124
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
125
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
126
|
+
|
127
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
128
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
129
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>NOTE<o:p></o:p></span></span></p>
|
130
|
+
|
131
|
+
<p class=MsoNormal style='margin-top:9.0pt'><span style='mso-bookmark:_Hlk526346232'><span
|
132
|
+
lang=EN-GB style='font-size:11.0pt;mso-bidi-font-size:10.0pt'>In <a
|
133
|
+
name=iitextea>this Recommendation, the expression "Administration" is
|
134
|
+
used for conciseness to indicate both a telecommunication administration and a
|
135
|
+
recognized operating agency</a></span></span><span style='mso-bookmark:_Hlk526346232'><span
|
136
|
+
style='mso-bookmark:iitextea'><span lang=EN-US style='font-size:11.0pt;
|
137
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>.<o:p></o:p></span></span></span></p>
|
138
|
+
|
139
|
+
<p class=MsoNormal style='margin-top:9.0pt'><span style='mso-bookmark:_Hlk526346232'><span
|
140
|
+
style='mso-bookmark:iitextea'><span lang=EN-US style='font-size:11.0pt;
|
141
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>Compliance with this
|
142
|
+
Recommendation is voluntary. However, the Recommendation may contain certain
|
143
|
+
mandatory provisions (to ensure, e.g., interoperability or applicability) and
|
144
|
+
compliance with the Recommendation is achieved when all of these mandatory
|
145
|
+
provisions are met. The words "shall" or some other obligatory
|
146
|
+
language such as "must" and the negative equivalents are used to
|
147
|
+
express requirements. The use of such words does not suggest that compliance
|
148
|
+
with the Recommendation is required of any party</span></span></span><span
|
149
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
150
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>.<o:p></o:p></span></span></p>
|
151
|
+
|
152
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
153
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
154
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
155
|
+
|
156
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
157
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
158
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
159
|
+
|
160
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
161
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
162
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
163
|
+
|
164
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
165
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
166
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
167
|
+
|
168
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
169
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
170
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>INTELLECTUAL PROPERTY RIGHTS</span></span><span
|
171
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
172
|
+
mso-bidi-font-size:10.0pt;font-family:Symbol;mso-ansi-language:EN-US'><o:p></o:p></span></span></p>
|
173
|
+
|
174
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
175
|
+
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>ITU <a
|
176
|
+
name=iitexteb>draws attention to the possibility that the practice or
|
177
|
+
implementation of this Recommendation may involve the use of a claimed
|
178
|
+
Intellectual Property Right. ITU takes no position concerning the evidence,
|
179
|
+
validity or applicability of claimed Intellectual Property Rights, whether
|
180
|
+
asserted by ITU members or others outside of the Recommendation development
|
181
|
+
process.<o:p></o:p></a></span></span></p>
|
182
|
+
|
183
|
+
{% if unpublished %}
|
184
|
+
<p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;
|
185
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>As of the date of approval
|
186
|
+
of this Recommendation, ITU [had/had not] received notice of intellectual property,
|
187
|
+
protected by patents, which may be required to implement this Recommendation.
|
188
|
+
However, implementers are cautioned that this may not represent the latest
|
189
|
+
information and are therefore strongly urged to consult the TSB patent database at
|
190
|
+
<a href="http://www.itu.int/ITU-T/ipr/">http://www.itu.int/ITU-T/ipr/</a>.</span></p>
|
191
|
+
{% else %}
|
192
|
+
{% if ip_notice_received %}
|
193
|
+
<p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;
|
194
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>As of the date of approval
|
195
|
+
of this Recommendation, ITU had received notice of intellectual property,
|
196
|
+
protected by patents, which may be required to implement this Recommendation.
|
197
|
+
However, implementers are cautioned that this may not represent the latest
|
198
|
+
information and are therefore strongly urged to consult the TSB patent database at
|
199
|
+
<a href="http://www.itu.int/ITU-T/ipr/">http://www.itu.int/ITU-T/ipr/</a>.</span></p>
|
200
|
+
{% else %}
|
201
|
+
<p class=MsoNormal><span lang=EN-US style='font-size:11.0pt;
|
202
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>As of the date of approval
|
203
|
+
of this Recommendation, ITU had not received notice of intellectual property,
|
204
|
+
protected by patents, which may be required to implement this Recommendation.
|
205
|
+
However, implementers are cautioned that this may not represent the latest
|
206
|
+
information and are therefore strongly urged to consult the TSB patent database at
|
207
|
+
<a href="http://www.itu.int/ITU-T/ipr/">http://www.itu.int/ITU-T/ipr/</a>.</span></p>
|
208
|
+
{% endif %}
|
209
|
+
{% endif %}
|
210
|
+
|
211
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
212
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
213
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
214
|
+
|
215
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
216
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
217
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
218
|
+
|
219
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
220
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
221
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
222
|
+
|
223
|
+
<p class=MsoNormal align=center style='text-align:center'><span
|
224
|
+
style='mso-bookmark:_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;
|
225
|
+
mso-bidi-font-size:10.0pt;font-family:Symbol;mso-ascii-font-family:"Times New Roman";
|
226
|
+
mso-hansi-font-family:"Times New Roman";mso-ansi-language:EN-US;mso-char-type:
|
227
|
+
symbol;mso-symbol-font-family:Symbol'><span style='mso-char-type:symbol;
|
228
|
+
mso-symbol-font-family:Symbol'>ã</span></span></span><span style='mso-bookmark:
|
229
|
+
_Hlk526346232'><span lang=EN-US style='font-size:11.0pt;mso-bidi-font-size:
|
230
|
+
10.0pt;mso-ansi-language:EN-US'> ITU <a name=iiannee></a>2019<o:p></o:p></span></span></p>
|
231
|
+
|
232
|
+
<p class=MsoNormal><span style='mso-bookmark:_Hlk526346232'><span lang=EN-US
|
233
|
+
style='font-size:11.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'>All
|
234
|
+
rights reserved. No part of this publication may be reproduced, by any means
|
235
|
+
whatsoever, without the prior written permission of ITU.<o:p></o:p></span></span></p>
|
236
|
+
|
237
|
+
<b style='mso-bidi-font-weight:normal'><span lang=EN-US style='font-size:12.0pt;
|
238
|
+
mso-bidi-font-size:10.0pt;font-family:"Times New Roman",serif;mso-fareast-font-family:
|
239
|
+
"Times New Roman";mso-ansi-language:EN-US;mso-fareast-language:EN-US;
|
240
|
+
mso-bidi-language:AR-SA'><br clear=all style='page-break-before:always'>
|
241
|
+
</span></b>
|
242
|
+
|
243
|
+
<p class=MsoNormal align=center style='text-align:center'>
|
244
|
+
<b>Table of Contents</b></p>
|
245
|
+
|
246
|
+
WORDTOC
|
@@ -0,0 +1,283 @@
|
|
1
|
+
<table class="MsoNormalTable" border="0" cellspacing="0" cellpadding="0" width="663"
|
2
|
+
style='border-collapse:collapse;mso-table-layout-alt:fixed;mso-padding-alt:
|
3
|
+
0cm 5.4pt 0cm 5.4pt'>
|
4
|
+
<tr style='mso-yfti-irow:0;mso-yfti-firstrow:yes;height:70.9pt;mso-height-rule:
|
5
|
+
exactly'>
|
6
|
+
<td width="95" colspan="2" valign="top" style='width:71.4pt;padding:0cm 5.4pt 0cm 5.4pt;
|
7
|
+
height:70.9pt;mso-height-rule:exactly'>
|
8
|
+
<p class="MsoNormal"><v:shapetype id="_x0000_t75" coordsize="21600,21600"
|
9
|
+
o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
|
10
|
+
stroked="f">
|
11
|
+
<v:stroke joinstyle="miter"/>
|
12
|
+
<v:formulas>
|
13
|
+
<v:f eqn="if lineDrawn pixelLineWidth 0"/>
|
14
|
+
<v:f eqn="sum @0 1 0"/>
|
15
|
+
<v:f eqn="sum 0 0 @1"/>
|
16
|
+
<v:f eqn="prod @2 1 2"/>
|
17
|
+
<v:f eqn="prod @3 21600 pixelWidth"/>
|
18
|
+
<v:f eqn="prod @3 21600 pixelHeight"/>
|
19
|
+
<v:f eqn="sum @0 0 1"/>
|
20
|
+
<v:f eqn="prod @6 1 2"/>
|
21
|
+
<v:f eqn="prod @7 21600 pixelWidth"/>
|
22
|
+
<v:f eqn="sum @8 21600 0"/>
|
23
|
+
<v:f eqn="prod @7 21600 pixelHeight"/>
|
24
|
+
<v:f eqn="sum @10 21600 0"/>
|
25
|
+
</v:formulas>
|
26
|
+
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
|
27
|
+
<o:lock v:ext="edit" aspectratio="t"/>
|
28
|
+
</v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s1026" type="#_x0000_t75"
|
29
|
+
alt="Fond-Rec_e" style='position:absolute;left:0;text-align:left;
|
30
|
+
margin-left:-75.7pt;margin-top:-83.05pt;width:123.6pt;height:848.15pt;
|
31
|
+
z-index:251659264;visibility:visible;mso-wrap-style:square;
|
32
|
+
mso-width-percent:0;mso-height-percent:0;mso-wrap-distance-left:9pt;
|
33
|
+
mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
|
34
|
+
mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
|
35
|
+
mso-position-horizontal-relative:text;mso-position-vertical:absolute;
|
36
|
+
mso-position-vertical-relative:text;mso-width-percent:0;
|
37
|
+
mso-height-percent:0;mso-width-relative:margin;mso-height-relative:margin'
|
38
|
+
o:allowincell="f">
|
39
|
+
<v:imagedata src="itu-document-comb.png" o:title="Fond-Rec_e"/>
|
40
|
+
</v:shape><a name="_Hlk526346232"><span lang="EN-GB"><o:p> </o:p></span></a></p>
|
41
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
42
|
+
<p class="MsoNormal" style='margin-top:0cm'><span style='mso-bookmark:_Hlk526346232'><b
|
43
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-US" style='font-size:8.0pt;
|
44
|
+
mso-bidi-font-size:10.0pt;mso-ansi-language:EN-US'><o:p> </o:p></span></b></span></p>
|
45
|
+
</td>
|
46
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
47
|
+
<td width="568" colspan="3" valign="top" style='width:426.0pt;padding:0cm 5.4pt 0cm 5.4pt;
|
48
|
+
height:70.9pt;mso-height-rule:exactly'>
|
49
|
+
<p class="MsoNormal" style='margin-top:0cm'><span style='mso-bookmark:_Hlk526346232'><span
|
50
|
+
lang="EN-US" style='font-family:"Arial",sans-serif;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
51
|
+
<br style='mso-ignore:vglayout' clear="ALL"/>
|
52
|
+
<p class="MsoNormal" style='margin-top:14.2pt'><span style='mso-bookmark:_Hlk526346232'><b><span
|
53
|
+
lang="EN-GB" style='font-family:"Arial",sans-serif;color:gray;letter-spacing:
|
54
|
+
5.0pt'>International Telecommunication Union</span></b></span><span
|
55
|
+
style='mso-bookmark:_Hlk526346232'><b><span lang="EN-US" style='font-size:9.0pt;
|
56
|
+
mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;mso-ansi-language:
|
57
|
+
EN-US'><o:p></o:p></span></b></span></p>
|
58
|
+
</td>
|
59
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
60
|
+
</tr>
|
61
|
+
<tr style='mso-yfti-irow:1;height:49.6pt;mso-height-rule:exactly'>
|
62
|
+
<td width="95" colspan="2" valign="top" style='width:71.4pt;padding:0cm 5.4pt 0cm 5.4pt;
|
63
|
+
height:49.6pt;mso-height-rule:exactly'><span style='mso-bookmark:_Hlk526346232'></span>
|
64
|
+
<p class="MsoNormal" style='margin-top:0cm'><span style='mso-bookmark:_Hlk526346232'><span
|
65
|
+
lang="EN-US" style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
66
|
+
</td>
|
67
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
68
|
+
<td width="568" colspan="3" valign="top" style='width:426.0pt;padding:0cm 5.4pt 0cm 5.4pt;
|
69
|
+
height:49.6pt;mso-height-rule:exactly'><span style='mso-bookmark:_Hlk526346232'></span>
|
70
|
+
<p class="MsoNormal"><span style='mso-bookmark:_Hlk526346232'><span lang="EN-US"
|
71
|
+
style='mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
72
|
+
</td>
|
73
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
74
|
+
</tr>
|
75
|
+
<tr style='mso-yfti-irow:2;mso-row-margin-left:71.4pt'>
|
76
|
+
<td style='mso-cell-special:placeholder;border:none;padding:0cm 0cm 0cm 0cm'
|
77
|
+
width="95" colspan="2"><p class='MsoNormal'> </p></td>
|
78
|
+
<td width="168" valign="top" style='width:126.0pt;padding:0cm 4.25pt 0cm 4.25pt'>
|
79
|
+
<p class="MsoNormal"><span style='mso-bookmark:_Hlk526346232'><b
|
80
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-US" style='font-size:36.0pt;
|
81
|
+
mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:
|
82
|
+
"Times New Roman";letter-spacing:2.0pt;mso-ansi-language:EN-US'>ITU-{{bureau}}</span></b></span><span
|
83
|
+
style='mso-bookmark:_Hlk526346232'><b style='mso-bidi-font-weight:normal'><span
|
84
|
+
lang="EN-US" style='font-size:9.0pt;mso-bidi-font-size:10.0pt;mso-ansi-language:
|
85
|
+
EN-US'><o:p></o:p></span></b></span></p>
|
86
|
+
</td>
|
87
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
88
|
+
<td width="400" colspan="2" valign="top" style='width:300.0pt;padding:0cm 4.25pt 0cm 4.25pt'>
|
89
|
+
<p class="MsoNormal" align="right" style='margin-top:12.0pt;text-align:right'><span
|
90
|
+
style='mso-bookmark:_Hlk526346232'><a name="dnume"><b style='mso-bidi-font-weight:
|
91
|
+
normal'><span lang="EN-US" style='font-size:30.0pt;mso-bidi-font-size:10.0pt;
|
92
|
+
font-family:"Arial",sans-serif;mso-ansi-language:EN-US'>{{ docnumber }}<o:p></o:p></span></b></a></span></p>
|
93
|
+
</td>
|
94
|
+
<span style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:dnume'></span></span>
|
95
|
+
</tr>
|
96
|
+
<tr style='mso-yfti-irow:3;height:48.7pt;mso-row-margin-left:71.4pt'>
|
97
|
+
<td style='mso-cell-special:placeholder;border:none;padding:0cm 0cm 0cm 0cm'
|
98
|
+
width="95" colspan="2"><p class='MsoNormal'> </p></td>
|
99
|
+
<td width="303" colspan="2" valign="top" style='width:227.45pt;padding:0cm 4.25pt 0cm 4.25pt;
|
100
|
+
height:48.7pt'>
|
101
|
+
{% if bureau == "T" %}
|
102
|
+
<p class="MsoNormal" align="left" style='text-align:left'><span style='mso-bookmark:
|
103
|
+
_Hlk526346232'><span lang="EN-US" style='font-size:10.0pt;font-family:"Arial",sans-serif;
|
104
|
+
mso-bidi-font-family:"Times New Roman";mso-ansi-language:EN-US'>TELECOMMUNICATION</span></span><span
|
105
|
+
style='mso-bookmark:_Hlk526346232'><span lang="EN-US" style='font-size:10.0pt;
|
106
|
+
font-family:"Arial",sans-serif;mso-ansi-language:EN-US'><br/>
|
107
|
+
</span></span><span style='mso-bookmark:_Hlk526346232'><span lang="EN-US"
|
108
|
+
style='font-size:10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:
|
109
|
+
"Times New Roman";mso-ansi-language:EN-US'>STANDARDIZATION SECTOR<br/>
|
110
|
+
OF ITU</span></span><span style='mso-bookmark:_Hlk526346232'><b
|
111
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-US" style='font-size:10.0pt;
|
112
|
+
mso-ansi-language:EN-US'><o:p></o:p></span></b></span></p>
|
113
|
+
{% endif %}
|
114
|
+
{% if bureau == "D" %}
|
115
|
+
<p class="MsoNormal" align="left" style='text-align:left'><span style='mso-bookmark:
|
116
|
+
_Hlk526346232'><span lang="EN-US" style='font-size:10.0pt;font-family:"Arial",sans-serif;
|
117
|
+
mso-bidi-font-family:"Times New Roman";mso-ansi-language:EN-US'>TELECOMMUNICATION</span></span><span
|
118
|
+
style='mso-bookmark:_Hlk526346232'><span lang="EN-US" style='font-size:10.0pt;
|
119
|
+
font-family:"Arial",sans-serif;mso-ansi-language:EN-US'><br/>
|
120
|
+
</span></span><span style='mso-bookmark:_Hlk526346232'><span lang="EN-US"
|
121
|
+
style='font-size:10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:
|
122
|
+
"Times New Roman";mso-ansi-language:EN-US'>DEVELOPMENT SECTOR<br/>
|
123
|
+
OF ITU</span></span><span style='mso-bookmark:_Hlk526346232'><b
|
124
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-US" style='font-size:10.0pt;
|
125
|
+
mso-ansi-language:EN-US'><o:p></o:p></span></b></span></p>
|
126
|
+
{% endif %}
|
127
|
+
{% if bureau == "R" %}
|
128
|
+
<p class="MsoNormal" align="left" style='text-align:left'><span style='mso-bookmark:
|
129
|
+
_Hlk526346232'><span lang="EN-US" style='font-size:10.0pt;font-family:"Arial",sans-serif;
|
130
|
+
mso-bidi-font-family:"Times New Roman";mso-ansi-language:EN-US'>RADIOCOMMUNICATION</span></span><span
|
131
|
+
style='mso-bookmark:_Hlk526346232'><span lang="EN-US" style='font-size:10.0pt;
|
132
|
+
font-family:"Arial",sans-serif;mso-ansi-language:EN-US'><br/>
|
133
|
+
</span></span><span style='mso-bookmark:_Hlk526346232'><span lang="EN-US"
|
134
|
+
style='font-size:10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:
|
135
|
+
"Times New Roman";mso-ansi-language:EN-US'>SECTOR<br/>
|
136
|
+
OF ITU</span></span><span style='mso-bookmark:_Hlk526346232'><b
|
137
|
+
style='mso-bidi-font-weight:normal'><span lang="EN-US" style='font-size:10.0pt;
|
138
|
+
mso-ansi-language:EN-US'><o:p></o:p></span></b></span></p>
|
139
|
+
{% endif %}
|
140
|
+
|
141
|
+
</td>
|
142
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
143
|
+
<td width="265" valign="top" style='width:198.55pt;padding:0cm 4.25pt 0cm 4.25pt;
|
144
|
+
height:48.7pt'>
|
145
|
+
<p class="MsoNormal" align="right" style='margin-top:0cm;text-align:right'><span
|
146
|
+
style='mso-bookmark:_Hlk526346232'><a name="ddatee"><span lang="EN-US"
|
147
|
+
style='font-size:14.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
148
|
+
mso-ansi-language:EN-US'>{% if pubdate_monthyear %}({{ pubdate_monthyear }}){% endif %}<span style='mso-spacerun:yes'> </span><o:p></o:p></span></a></span></p>
|
149
|
+
</td>
|
150
|
+
<span style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:ddatee'></span></span>
|
151
|
+
</tr>
|
152
|
+
<tr style='mso-yfti-irow:4;page-break-inside:avoid;height:6.0cm;mso-height-rule:
|
153
|
+
exactly'>
|
154
|
+
<td width="95" valign="top" style='width:70.9pt;padding:0cm 5.4pt 0cm 5.4pt;
|
155
|
+
height:6.0cm;mso-height-rule:exactly'><span style='mso-bookmark:_Hlk526346232'></span>
|
156
|
+
<p class="MsoNormal" style='tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
157
|
+
style='mso-bookmark:_Hlk526346232'><span lang="EN-US" style='font-size:9.0pt;
|
158
|
+
mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:
|
159
|
+
"Times New Roman";mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
160
|
+
</td>
|
161
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
162
|
+
<td width="569" colspan="4" valign="bottom" style='width:426.5pt;border:none;
|
163
|
+
border-bottom:solid windowtext 1.5pt;padding:0cm 5.4pt 0cm 5.4pt;height:6.0cm;
|
164
|
+
mso-height-rule:exactly'>
|
165
|
+
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
166
|
+
style='mso-bookmark:_Hlk526346232'><a name="dsece"><span lang="EN-US"
|
167
|
+
style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
168
|
+
mso-ansi-language:EN-US'>SERIES {{ series | upcase }}<o:p></o:p></span></a></span></p>
|
169
|
+
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
170
|
+
style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:dsece'><span
|
171
|
+
lang="EN-US" style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:
|
172
|
+
"Arial",sans-serif;mso-ansi-language:EN-US'>{{ series1 }} {% if series2 %}—{% endif %}{{ series2 }}<o:p></o:p></span></span></span></p>
|
173
|
+
<span style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:dsece'></span></span>
|
174
|
+
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
175
|
+
style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:dsece'><span
|
176
|
+
lang="EN-US" style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:
|
177
|
+
"Arial",sans-serif;mso-ansi-language:EN-US'><o:p> </o:p></span></span></span></p>
|
178
|
+
</td>
|
179
|
+
<span style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:dsece'></span></span>
|
180
|
+
</tr>
|
181
|
+
<tr style='mso-yfti-irow:5;page-break-inside:avoid;height:4.0cm;mso-height-rule:
|
182
|
+
exactly'>
|
183
|
+
<td width="95" valign="top" style='width:70.9pt;padding:0cm 5.4pt 0cm 5.4pt;
|
184
|
+
height:4.0cm;mso-height-rule:exactly'><span style='mso-bookmark:_Hlk526346232'></span>
|
185
|
+
<p class="MsoNormal" style='tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
186
|
+
style='mso-bookmark:_Hlk526346232'><span lang="EN-US" style='font-size:9.0pt;
|
187
|
+
mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:
|
188
|
+
"Times New Roman";mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
189
|
+
</td>
|
190
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
191
|
+
<td width="569" colspan="4" valign="top" style='width:426.5pt;padding:0cm 5.4pt 0cm 5.4pt;
|
192
|
+
height:4.0cm;mso-height-rule:exactly'>
|
193
|
+
<p class="MsoNormal" align="left" style='text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
194
|
+
style='mso-bookmark:_Hlk526346232'><a name="c1tite"><b><span lang="EN-GB"
|
195
|
+
style='font-size:18.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
196
|
+
mso-bidi-font-family:"Times New Roman"'>{{ doctitle }}</span></b></a></span><span
|
197
|
+
style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:c1tite'><b><span
|
198
|
+
lang="EN-US" style='font-size:18.0pt;mso-bidi-font-size:10.0pt;font-family:
|
199
|
+
"Arial",sans-serif;mso-bidi-font-family:"Times New Roman";mso-ansi-language:
|
200
|
+
EN-US'><o:p></o:p></span></b></span></span></p>
|
201
|
+
</td>
|
202
|
+
<span style='mso-bookmark:_Hlk526346232'><span style='mso-bookmark:c1tite'></span></span>
|
203
|
+
</tr>
|
204
|
+
|
205
|
+
{% if unpublished %}
|
206
|
+
<tr style='mso-yfti-irow:6;mso-yfti-lastrow:yes;page-break-inside:avoid;
|
207
|
+
height:2.5cm;mso-height-rule:exactly'>
|
208
|
+
<td width="95" valign="top" style='width:70.9pt;border:none;border-right:solid windowtext 2.25pt;
|
209
|
+
padding:0cm 5.4pt 0cm 5.4pt;height:4.0cm;mso-height-rule:exactly'>
|
210
|
+
<p class="MsoNormal" style='tab-stops:right 17.0cm'><span lang="EN-GB"
|
211
|
+
style='font-size:9.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
212
|
+
mso-bidi-font-family:"Times New Roman"'><o:p> </o:p></span></p>
|
213
|
+
</td>
|
214
|
+
<td width="569" colspan="4" style='width:426.5pt;border-top:none;border-left:
|
215
|
+
none;border-bottom:solid windowtext 2.25pt;border-right:solid windowtext 2.25pt;
|
216
|
+
mso-border-top-alt:solid windowtext 2.25pt;mso-border-left-alt:solid windowtext 2.25pt;
|
217
|
+
padding:0cm 5.4pt 0cm 5.4pt;height:4.0cm;mso-height-rule:exactly'>
|
218
|
+
<p class="MsoNormal" align="center" style='text-align:center'><b
|
219
|
+
style='mso-bidi-font-weight:normal'><i style='mso-bidi-font-style:normal'><span
|
220
|
+
lang="EN-GB" style='font-size:16.0pt;mso-bidi-font-size:10.0pt'>CAUTION !<o:p></o:p></span></i></b></p>
|
221
|
+
<p class="MsoNormal" align="center" style='margin-top:3.0pt;text-align:center'><span
|
222
|
+
class="SpellE"><b style='mso-bidi-font-weight:normal'><i style='mso-bidi-font-style:
|
223
|
+
normal'><span lang="EN-GB" style='font-size:16.0pt;mso-bidi-font-size:10.0pt'>PREPUBLISHED</span></i></b></span><b
|
224
|
+
style='mso-bidi-font-weight:normal'><i style='mso-bidi-font-style:normal'><span
|
225
|
+
lang="EN-GB" style='font-size:16.0pt;mso-bidi-font-size:10.0pt'><span
|
226
|
+
style='mso-spacerun:yes'> </span>RECOMMENDATION<o:p></o:p></span></i></b></p>
|
227
|
+
<p class="MsoNormal" style='tab-stops:right 17.0cm'><span lang="EN-GB">This
|
228
|
+
prepublication is an unedited version of a recently approved Recommendation.
|
229
|
+
It will be replaced by the published version after editing. Therefore,
|
230
|
+
there will be differences between this prepublication and the published
|
231
|
+
version.</span><span lang="EN-GB" style='font-size:9.0pt;mso-bidi-font-size:
|
232
|
+
10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:"Times New Roman"'><o:p></o:p></span></p>
|
233
|
+
</td>
|
234
|
+
</tr>
|
235
|
+
{% else %}
|
236
|
+
<tr style='mso-yfti-irow:6;mso-yfti-lastrow:yes;page-break-inside:avoid;
|
237
|
+
height:2.5cm;mso-height-rule:exactly'>
|
238
|
+
<td width="95" colspan="5" valign="top" style='width:70.9pt;border:none;
|
239
|
+
padding:0cm 5.4pt 0cm 5.4pt;height:4.0cm;mso-height-rule:exactly'>
|
240
|
+
</td>
|
241
|
+
</tr>
|
242
|
+
{% endif %}
|
243
|
+
|
244
|
+
<tr style='mso-yfti-irow:6;mso-yfti-lastrow:yes;page-break-inside:avoid;
|
245
|
+
height:1.5cm;mso-height-rule:exactly'>
|
246
|
+
<td width="95" valign="top" style='width:70.9pt;padding:0cm 5.4pt 0cm 5.4pt;
|
247
|
+
height:1.5cm;mso-height-rule:exactly'><span style='mso-bookmark:_Hlk526346232'></span>
|
248
|
+
<p class="MsoNormal" style='tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
249
|
+
style='mso-bookmark:_Hlk526346232'><span lang="EN-US" style='font-size:9.0pt;
|
250
|
+
mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;mso-bidi-font-family:
|
251
|
+
"Times New Roman";mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
252
|
+
</td>
|
253
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
254
|
+
<td width="569" colspan="4" valign="bottom" style='width:426.5pt;padding:0cm 5.4pt 0cm 5.4pt;
|
255
|
+
height:70.9pt;mso-height-rule:exactly'>
|
256
|
+
<p class="MsoNormal" align="left" style='margin-top:3.0pt;margin-right:0cm;
|
257
|
+
margin-bottom:12.0pt;margin-left:0cm;text-align:left;tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span
|
258
|
+
style='mso-bookmark:_Hlk526346232'><a name="dnum2e"></a><span lang="EN-US"
|
259
|
+
style='font-size:16.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
260
|
+
mso-ansi-language:EN-US'>Recommendation<span style='mso-spacerun:yes'>
|
261
|
+
</span>ITU‑{{ bureau }}<span style='mso-spacerun:yes'> </span>{{ docnumber }}<o:p></o:p></span></span></p>
|
262
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
263
|
+
<p class="MsoNormal" align="left" style='margin-top:3.0pt;text-align:left;
|
264
|
+
tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span style='mso-bookmark:
|
265
|
+
_Hlk526346232'><span lang="EN-US" style='font-size:16.0pt;mso-bidi-font-size:
|
266
|
+
10.0pt;font-family:"Arial",sans-serif;mso-ansi-language:EN-US'><o:p> </o:p></span></span></p>
|
267
|
+
</td>
|
268
|
+
<span style='mso-bookmark:_Hlk526346232'></span>
|
269
|
+
</tr>
|
270
|
+
</table>
|
271
|
+
|
272
|
+
<p class="MsoNormal" align="right" style='margin-top:12.0pt;text-align:right;
|
273
|
+
tab-stops:39.7pt 59.55pt 79.4pt 99.25pt right 17.0cm'><span style='mso-bookmark:
|
274
|
+
_Hlk526346232'><span lang="EN-US" style='font-size:9.0pt;mso-bidi-font-size:10.0pt;
|
275
|
+
font-family:"Arial",sans-serif;mso-bidi-font-family:"Times New Roman";
|
276
|
+
mso-ansi-language:EN-US;mso-fareast-language:ZH-CN;mso-no-proof:yes'><v:shape
|
277
|
+
id="Picture_x0020_1" o:spid="_x0000_i1033" type="#_x0000_t75" alt="logo_E"
|
278
|
+
style='width:121pt;height:50pt;visibility:visible;mso-wrap-style:square'>
|
279
|
+
<v:imagedata src="logo.png" o:title="logo_E"/>
|
280
|
+
</v:shape></span></span><span style='mso-bookmark:_Hlk526346232'><span
|
281
|
+
lang="EN-US" style='font-size:9.0pt;mso-bidi-font-size:10.0pt;font-family:"Arial",sans-serif;
|
282
|
+
mso-bidi-font-family:"Times New Roman";mso-ansi-language:EN-US'><o:p></o:p></span></span></p>
|
283
|
+
|