sinicum 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +7 -0
  2. data/.cane +19 -0
  3. data/.gitignore +14 -0
  4. data/.rubocop.yml +30 -0
  5. data/.travis.yml +14 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE +24 -0
  8. data/README.md +327 -0
  9. data/Rakefile +37 -0
  10. data/app/assets/javascripts/sinicum/magnolia_client.js.coffee +233 -0
  11. data/app/controllers/sinicum/controller_base.rb +173 -0
  12. data/app/controllers/sinicum/controllers/cache_aware.rb +16 -0
  13. data/app/controllers/sinicum/controllers/global_state_cache.rb +83 -0
  14. data/app/helpers/sinicum/helper_utils.rb +152 -0
  15. data/app/helpers/sinicum/mgnl_helper.rb +145 -0
  16. data/app/helpers/sinicum/mgnl_helper5.rb +7 -0
  17. data/app/helpers/sinicum/mgnl_image_helper.rb +26 -0
  18. data/app/helpers/sinicum/taglib_helper5.rb +166 -0
  19. data/gemfiles/Gemfile-3.2 +6 -0
  20. data/gemfiles/Gemfile-4.0 +6 -0
  21. data/lib/generators/sinicum/install_generator.rb +162 -0
  22. data/lib/generators/sinicum/templates/VersionHandler.java +18 -0
  23. data/lib/generators/sinicum/templates/config/default/log4j-development.xml +203 -0
  24. data/lib/generators/sinicum/templates/config/default/log4j.xml +200 -0
  25. data/lib/generators/sinicum/templates/config/default/magnolia-author.properties +63 -0
  26. data/lib/generators/sinicum/templates/config/default/magnolia-public01.properties +63 -0
  27. data/lib/generators/sinicum/templates/config/default/magnolia.properties +63 -0
  28. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search-author.xml +73 -0
  29. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search-public01.xml +73 -0
  30. data/lib/generators/sinicum/templates/config/repo-conf/jackrabbit-bundle-postgres-search.xml +70 -0
  31. data/lib/generators/sinicum/templates/magnolia/config.modules.myproject.dialogs.xml +1625 -0
  32. data/lib/generators/sinicum/templates/magnolia/config.modules.myproject.templates.xml +247 -0
  33. data/lib/generators/sinicum/templates/module-config.xml +13 -0
  34. data/lib/generators/sinicum/templates/module-pom.xml +67 -0
  35. data/lib/generators/sinicum/templates/project-pom.xml +104 -0
  36. data/lib/generators/sinicum/templates/rails/_article.html.haml +15 -0
  37. data/lib/generators/sinicum/templates/rails/_content.html.haml +2 -0
  38. data/lib/generators/sinicum/templates/rails/_meta.html.haml +9 -0
  39. data/lib/generators/sinicum/templates/rails/application.html.haml +11 -0
  40. data/lib/generators/sinicum/templates/rails/content_controller.rb +5 -0
  41. data/lib/generators/sinicum/templates/rails/imaging.yml +8 -0
  42. data/lib/generators/sinicum/templates/rails/sinicum_server.yml +15 -0
  43. data/lib/sinicum.rb +53 -0
  44. data/lib/sinicum/content/aggregator.rb +173 -0
  45. data/lib/sinicum/content/website_content_resolver.rb +10 -0
  46. data/lib/sinicum/engine.rb +23 -0
  47. data/lib/sinicum/imaging.rb +29 -0
  48. data/lib/sinicum/imaging/config.rb +133 -0
  49. data/lib/sinicum/imaging/converter.rb +81 -0
  50. data/lib/sinicum/imaging/default_converter.rb +20 -0
  51. data/lib/sinicum/imaging/image_size_converter.rb +52 -0
  52. data/lib/sinicum/imaging/imaging.rb +171 -0
  53. data/lib/sinicum/imaging/imaging_file.rb +115 -0
  54. data/lib/sinicum/imaging/imaging_middleware.rb +56 -0
  55. data/lib/sinicum/imaging/max_size_converter.rb +39 -0
  56. data/lib/sinicum/imaging/resize_crop_converter.rb +35 -0
  57. data/lib/sinicum/jcr/api_client.rb +50 -0
  58. data/lib/sinicum/jcr/api_queries.rb +37 -0
  59. data/lib/sinicum/jcr/cache/global_cache.rb +26 -0
  60. data/lib/sinicum/jcr/dam/document.rb +57 -0
  61. data/lib/sinicum/jcr/dam/image.rb +40 -0
  62. data/lib/sinicum/jcr/jcr_configuration.rb +67 -0
  63. data/lib/sinicum/jcr/mgnl4_compatibility.rb +11 -0
  64. data/lib/sinicum/jcr/node.rb +268 -0
  65. data/lib/sinicum/jcr/node_initializer.rb +16 -0
  66. data/lib/sinicum/jcr/node_queries.rb +101 -0
  67. data/lib/sinicum/jcr/query_sanitizer.rb +24 -0
  68. data/lib/sinicum/jcr/type_translator.rb +38 -0
  69. data/lib/sinicum/jcr/type_translators/component_translator.rb +28 -0
  70. data/lib/sinicum/jcr/type_translators/dam_translator.rb +33 -0
  71. data/lib/sinicum/jcr/type_translators/data_translator.rb +31 -0
  72. data/lib/sinicum/jcr/type_translators/default_translator.rb +13 -0
  73. data/lib/sinicum/jcr/type_translators/translator_base.rb +40 -0
  74. data/lib/sinicum/logger.rb +28 -0
  75. data/lib/sinicum/navigation/default_navigation_element.rb +30 -0
  76. data/lib/sinicum/navigation/navigation_element.rb +39 -0
  77. data/lib/sinicum/navigation/navigation_element_list.rb +33 -0
  78. data/lib/sinicum/navigation/navigation_handler.rb +95 -0
  79. data/lib/sinicum/navigation/navigation_status.rb +27 -0
  80. data/lib/sinicum/templating/area_handler.rb +33 -0
  81. data/lib/sinicum/templating/dialog_resolver.rb +26 -0
  82. data/lib/sinicum/templating/templating_utils.rb +24 -0
  83. data/lib/sinicum/util.rb +12 -0
  84. data/lib/sinicum/version.rb +3 -0
  85. data/script/cibuild +31 -0
  86. data/sinicum.gemspec +29 -0
  87. data/spec/controllers/sinicum/controller_base_spec.rb +53 -0
  88. data/spec/controllers/sinicum/controllers/global_state_cache_spec.rb +35 -0
  89. data/spec/dummy/REVISION +1 -0
  90. data/spec/dummy/Rakefile +7 -0
  91. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  92. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  93. data/spec/dummy/app/views/application/index.html.erb +1 -0
  94. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  95. data/spec/dummy/app/views/layouts/layout_name.html.erb +0 -0
  96. data/spec/dummy/app/views/layouts/my-module/test.html.erb +0 -0
  97. data/spec/dummy/app/views/layouts/my_module/test.html.erb +0 -0
  98. data/spec/dummy/config.ru +4 -0
  99. data/spec/dummy/config/application.rb +45 -0
  100. data/spec/dummy/config/boot.rb +10 -0
  101. data/spec/dummy/config/database.yml +22 -0
  102. data/spec/dummy/config/environment.rb +5 -0
  103. data/spec/dummy/config/environments/development.rb +24 -0
  104. data/spec/dummy/config/environments/production.rb +51 -0
  105. data/spec/dummy/config/environments/test.rb +34 -0
  106. data/spec/dummy/config/imaging.yml +7 -0
  107. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  108. data/spec/dummy/config/initializers/inflections.rb +10 -0
  109. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  110. data/spec/dummy/config/initializers/secret_token.rb +11 -0
  111. data/spec/dummy/config/initializers/session_store.rb +8 -0
  112. data/spec/dummy/config/locales/en.yml +5 -0
  113. data/spec/dummy/config/routes.rb +59 -0
  114. data/spec/dummy/config/sinicum_server.yml +13 -0
  115. data/spec/dummy/public/404.html +26 -0
  116. data/spec/dummy/public/422.html +26 -0
  117. data/spec/dummy/public/500.html +26 -0
  118. data/spec/dummy/public/favicon.ico +0 -0
  119. data/spec/dummy/public/javascripts/application.js +2 -0
  120. data/spec/dummy/public/javascripts/controls.js +965 -0
  121. data/spec/dummy/public/javascripts/dragdrop.js +974 -0
  122. data/spec/dummy/public/javascripts/effects.js +1123 -0
  123. data/spec/dummy/public/javascripts/prototype.js +6001 -0
  124. data/spec/dummy/public/javascripts/rails.js +191 -0
  125. data/spec/dummy/public/stylesheets/.gitkeep +0 -0
  126. data/spec/dummy/script/rails +6 -0
  127. data/spec/fixtures/api/cache_global.json +3 -0
  128. data/spec/fixtures/api/content_mgnl5.json +22 -0
  129. data/spec/fixtures/api/default_json.json.erb +47 -0
  130. data/spec/fixtures/api/default_json_mgnl5.json.erb +27 -0
  131. data/spec/fixtures/api/file.json +73 -0
  132. data/spec/fixtures/api/file_mgnl5.json +51 -0
  133. data/spec/fixtures/api/homepage.json +1497 -0
  134. data/spec/fixtures/api/homepage_parent.json +483 -0
  135. data/spec/fixtures/api/image.json +73 -0
  136. data/spec/fixtures/api/image_mgnl5.json +50 -0
  137. data/spec/fixtures/api/navigation_children.json +3107 -0
  138. data/spec/fixtures/api/navigation_parents.json +25 -0
  139. data/spec/fixtures/api/product.json +2084 -0
  140. data/spec/fixtures/api/query_result.json +61 -0
  141. data/spec/fixtures/mock_content.rb +6 -0
  142. data/spec/fixtures/mock_image.gif +0 -0
  143. data/spec/helpers/sinicum/helper_utils_spec.rb +55 -0
  144. data/spec/helpers/sinicum/mgnl_helper_spec.rb +315 -0
  145. data/spec/helpers/sinicum/mgnl_image_helper_spec.rb +103 -0
  146. data/spec/sinicum/content/aggregator_spec.rb +91 -0
  147. data/spec/sinicum/content/website_content_resolver_spec.rb +14 -0
  148. data/spec/sinicum/imaging/config_spec.rb +50 -0
  149. data/spec/sinicum/imaging/converter_spec.rb +41 -0
  150. data/spec/sinicum/imaging/image_size_converter_spec.rb +27 -0
  151. data/spec/sinicum/imaging/imaging.yml +15 -0
  152. data/spec/sinicum/imaging/imaging_file_spec.rb +125 -0
  153. data/spec/sinicum/imaging/imaging_middleware_spec.rb +79 -0
  154. data/spec/sinicum/imaging/max_size_converter_spec.rb +52 -0
  155. data/spec/sinicum/imaging/resize_crop_converter_spec.rb +18 -0
  156. data/spec/sinicum/imaging_spec.rb +13 -0
  157. data/spec/sinicum/jcr/api_client_spec.rb +69 -0
  158. data/spec/sinicum/jcr/cache/global_cache_spec.rb +29 -0
  159. data/spec/sinicum/jcr/dam/document_spec.rb +81 -0
  160. data/spec/sinicum/jcr/dam/image_spec.rb +46 -0
  161. data/spec/sinicum/jcr/jcr_configuration_spec.rb +57 -0
  162. data/spec/sinicum/jcr/mgnl4_compatibility_spec.rb +10 -0
  163. data/spec/sinicum/jcr/node_queries_spec.rb +113 -0
  164. data/spec/sinicum/jcr/node_spec.rb +261 -0
  165. data/spec/sinicum/jcr/query_sanitizer_spec.rb +26 -0
  166. data/spec/sinicum/jcr/type_translator_spec.rb +42 -0
  167. data/spec/sinicum/jcr/type_translators/component_translator_spec.rb +71 -0
  168. data/spec/sinicum/jcr/type_translators/data_translator_spec.rb +38 -0
  169. data/spec/sinicum/jcr/type_translators/default_translator_spec.rb +19 -0
  170. data/spec/sinicum/navigation/default_navigation_element_spec.rb +45 -0
  171. data/spec/sinicum/navigation/navigation_handler_spec.rb +71 -0
  172. data/spec/sinicum/templating/dialog_resolver_spec.rb +13 -0
  173. data/spec/sinicum/util_spec.rb +34 -0
  174. data/spec/spec_helper.rb +42 -0
  175. data/spec/support/default_node_reader.rb +40 -0
  176. metadata +434 -0
@@ -0,0 +1,73 @@
1
+ [ {
2
+ "meta" : {
3
+ "path" : "/shure/homepage/twitter",
4
+ "depth" : 3,
5
+ "name" : "twitter",
6
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
7
+ "workspace" : "dms",
8
+ "mixinNodeTypes" : [ "mix:lockable" ],
9
+ "jcr:created" : "2011-01-31T15:13:15.540+08:00",
10
+ "jcr:uuid" : "d2ba49f9-8850-44b3-a7d3-985c60ef6b20",
11
+ "jcr:primaryType" : "mgnl:contentNode"
12
+ },
13
+ "properties" : {
14
+ "title" : "twitter",
15
+ "name" : "twitter",
16
+ "creator" : "superuser",
17
+ "type" : "png",
18
+ "modificationDate" : "2011-02-09T12:24:48.281+08:00",
19
+ "modifier" : "superuser",
20
+ "creationDate" : "2011-01-31T15:13:15.540+08:00",
21
+ "language" : "English",
22
+ "subject" : "A subject"
23
+ },
24
+ "nodes" : {
25
+ "MetaData" : {
26
+ "meta" : {
27
+ "path" : "/shure/homepage/twitter/MetaData",
28
+ "depth" : 4,
29
+ "name" : "MetaData",
30
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
31
+ "workspace" : "dms",
32
+ "mixinNodeTypes" : [ ],
33
+ "jcr:created" : "2011-01-31T15:13:15.540+08:00",
34
+ "jcr:uuid" : "2651d888-91a8-479f-b6ef-d1ad76a617d7",
35
+ "jcr:primaryType" : "mgnl:metaData"
36
+ },
37
+ "properties" : {
38
+ "mgnl:authorid" : "superuser",
39
+ "mgnl:activatorid" : "superuser",
40
+ "mgnl:creationdate" : "2011-01-31T15:13:15.540+08:00",
41
+ "mgnl:lastaction" : "2011-02-09T12:25:15.928+08:00",
42
+ "mgnl:template" : "",
43
+ "mgnl:activated" : true,
44
+ "mgnl:lastmodified" : "2011-02-09T12:24:48.281+08:00"
45
+ },
46
+ "nodes" : { }
47
+ },
48
+ "document" : {
49
+ "meta" : {
50
+ "path" : "/shure/homepage/twitter/document",
51
+ "depth" : 4,
52
+ "name" : "document",
53
+ "superTypes" : [ "mix:lastModified", "mix:mimeType", "mix:referenceable", "nt:base", "nt:resource" ],
54
+ "workspace" : "dms",
55
+ "mixinNodeTypes" : [ ],
56
+ "jcr:uuid" : "bdf06968-bc8c-4284-a4c7-75685717a7b4",
57
+ "jcr:primaryType" : "mgnl:resource"
58
+ },
59
+ "properties" : {
60
+ "size" : "6911",
61
+ "extension" : "png",
62
+ "jcr:data" : "Binary Data Type not supported",
63
+ "width" : "300",
64
+ "height" : "110",
65
+ "jcr:mimeType" : "image/png",
66
+ "jcr:lastModified" : "2011-02-09T12:24:48.279+08:00",
67
+ "nodeDataTemplate" : "",
68
+ "fileName" : "twitter"
69
+ },
70
+ "nodes" : { }
71
+ }
72
+ }
73
+ } ]
@@ -0,0 +1,50 @@
1
+ [ {
2
+ "meta" : {
3
+ "path" : "/shure/homepage/twitter",
4
+ "depth" : 3,
5
+ "name" : "twitter",
6
+ "superTypes" : [ "mix:created", "mix:referenceable", "nt:base", "nt:hierarchyNode" ],
7
+ "workspace" : "dam",
8
+ "mixinNodeTypes" : [ "mix:lockable" ],
9
+ "jcr:created" : "2011-01-31T15:13:15.540+08:00",
10
+ "jcr:uuid" : "d2ba49f9-8850-44b3-a7d3-985c60ef6b20",
11
+ "jcr:primaryType" : "mgnl:asset"
12
+ },
13
+ "properties" : {
14
+ "title" : "twitter",
15
+ "name" : "twitter",
16
+ "creator" : "dennis_yuen",
17
+ "type" : "png",
18
+ "modificationDate" : "2011-02-09T12:24:48.281+08:00",
19
+ "modifier" : "dennis_yuen",
20
+ "creationDate" : "2011-01-31T15:13:15.540+08:00",
21
+ "language" : "English",
22
+ "subject" : "A subject"
23
+ },
24
+ "nodes" : {
25
+ "jcr:content" : {
26
+ "meta" : {
27
+ "path" : "/shure/homepage/twitter/document",
28
+ "depth" : 4,
29
+ "name" : "document",
30
+ "superTypes" : [ "mix:lastModified", "mix:mimeType", "mix:referenceable", "nt:base", "nt:resource" ],
31
+ "workspace" : "dam",
32
+ "mixinNodeTypes" : [ ],
33
+ "jcr:uuid" : "bdf06968-bc8c-4284-a4c7-75685717a7b4",
34
+ "jcr:primaryType" : "mgnl:resource"
35
+ },
36
+ "properties" : {
37
+ "size" : "6911",
38
+ "extension" : "png",
39
+ "jcr:data" : "Binary Data Type not supported",
40
+ "width" : "300",
41
+ "height" : "110",
42
+ "jcr:mimeType" : "image/png",
43
+ "jcr:lastModified" : "2011-02-09T12:24:48.279+08:00",
44
+ "nodeDataTemplate" : "",
45
+ "fileName" : "twitter"
46
+ },
47
+ "nodes" : { }
48
+ }
49
+ }
50
+ } ]
@@ -0,0 +1,3107 @@
1
+ [ {
2
+ "properties" : {
3
+ "nav_hidden" : true,
4
+ "title" : "Search results"
5
+ },
6
+ "children" : [ {
7
+ "properties" : {
8
+ "nav_hidden" : true,
9
+ "title" : "Where to buy",
10
+ "nav_title" : "Where to buy"
11
+ },
12
+ "path" : "/en/meta_en/where_to_buy",
13
+ "uuid" : "9b3b0e9f-be95-4960-8b49-3589e0a76e41"
14
+ }, {
15
+ "properties" : {
16
+ "nav_hidden" : true,
17
+ "title" : "international_sites"
18
+ },
19
+ "path" : "/en/meta_en/international_sites",
20
+ "uuid" : "736a64fb-6ec2-4d2b-9f16-237d322be2eb"
21
+ }, {
22
+ "properties" : {
23
+ "nav_hidden" : true,
24
+ "title" : "newsletter"
25
+ },
26
+ "children" : [ {
27
+ "properties" : {
28
+ "nav_hidden" : true,
29
+ "title" : "Many thanks!"
30
+ },
31
+ "path" : "/en/meta_en/newsletter/thankyou",
32
+ "uuid" : "85543b0f-bf8a-4247-adf7-efe3130db666"
33
+ }, {
34
+ "properties" : {
35
+ "nav_hidden" : true,
36
+ "title" : "Your subscription has been set up"
37
+ },
38
+ "path" : "/en/meta_en/newsletter/welcome",
39
+ "uuid" : "407295bd-499d-4839-b761-c76064062fbf"
40
+ }, {
41
+ "properties" : {
42
+ "nav_hidden" : true,
43
+ "title" : "Your subscription has been deleted"
44
+ },
45
+ "path" : "/en/meta_en/newsletter/goodbye",
46
+ "uuid" : "5ffc1078-18c6-447c-a64f-3dbe0ce17316"
47
+ }, {
48
+ "properties" : {
49
+ "nav_hidden" : true,
50
+ "title" : "Your data has been updated"
51
+ },
52
+ "path" : "/en/meta_en/newsletter/updated",
53
+ "uuid" : "2c2d0dcd-57ae-4011-87df-216b23e0a4ae"
54
+ }, {
55
+ "properties" : { },
56
+ "path" : "/en/meta_en/newsletter/test",
57
+ "uuid" : "d2c03160-1de1-4fb2-bb96-1fe2aacf7201"
58
+ } ],
59
+ "path" : "/en/meta_en/newsletter",
60
+ "uuid" : "da261974-79a5-4a28-81f9-fca6865d553c"
61
+ }, {
62
+ "properties" : {
63
+ "nav_hidden" : true,
64
+ "title" : "Search Result"
65
+ },
66
+ "path" : "/en/meta_en/search",
67
+ "uuid" : "5f716552-d1ec-436b-8183-e180e8276ae3"
68
+ }, {
69
+ "properties" : {
70
+ "nav_hidden" : true,
71
+ "title" : "Sitemap"
72
+ },
73
+ "path" : "/en/meta_en/sitemap",
74
+ "uuid" : "375a9062-9966-49fd-aea8-2159134d2c55"
75
+ }, {
76
+ "properties" : {
77
+ "nav_hidden" : true,
78
+ "title" : "Contact us"
79
+ },
80
+ "children" : [ {
81
+ "properties" : {
82
+ "nav_hidden" : true,
83
+ "title" : "Many thanks for your inquiry!"
84
+ },
85
+ "path" : "/en/meta_en/contact/thanks",
86
+ "uuid" : "ed436163-a92d-450e-b5df-0a43e4c5b5af"
87
+ }, {
88
+ "properties" : {
89
+ "nav_hidden" : true,
90
+ "title" : "Shure Authorized Distributors in Asia Pacific"
91
+ },
92
+ "path" : "/en/meta_en/contact/apac_distributors",
93
+ "uuid" : "50912df1-b9cc-4102-838a-1f56c5459eac"
94
+ } ],
95
+ "path" : "/en/meta_en/contact",
96
+ "uuid" : "422727a7-2d53-447d-bec2-de7f2f178fb1"
97
+ }, {
98
+ "properties" : {
99
+ "nav_hidden" : true,
100
+ "title" : "Error Pages"
101
+ },
102
+ "children" : [ {
103
+ "properties" : {
104
+ "nav_hidden" : true,
105
+ "title" : "Page not found",
106
+ "nav_title" : "Page not found"
107
+ },
108
+ "path" : "/en/meta_en/errors/404",
109
+ "uuid" : "bd51a2ac-f52b-46f0-a480-a1e2a50a4d63"
110
+ }, {
111
+ "properties" : {
112
+ "nav_hidden" : true,
113
+ "title" : "Error"
114
+ },
115
+ "path" : "/en/meta_en/errors/500",
116
+ "uuid" : "64a98e48-4a58-448a-9e1c-94102e88a227"
117
+ } ],
118
+ "path" : "/en/meta_en/errors",
119
+ "uuid" : "81255e66-f1ac-47b0-9204-a272d1a6dfb9"
120
+ }, {
121
+ "properties" : {
122
+ "nav_hidden" : true,
123
+ "title" : ""
124
+ },
125
+ "path" : "/en/meta_en/imprint",
126
+ "uuid" : "4f926640-3501-4696-8bac-107fb2046555"
127
+ }, {
128
+ "properties" : {
129
+ "nav_hidden" : true,
130
+ "title" : "Shure Privacy Statement",
131
+ "nav_title" : "Privacy Statement"
132
+ },
133
+ "path" : "/en/meta_en/privacy",
134
+ "uuid" : "cc44fd03-53c4-49f0-9e58-9b4457c9b0c5"
135
+ }, {
136
+ "properties" : {
137
+ "title" : "Admin Interface"
138
+ },
139
+ "path" : "/en/meta_en/admin",
140
+ "uuid" : "addf6027-e03d-48b4-9ccf-5dab52d35125"
141
+ }, {
142
+ "properties" : {
143
+ "nav_hidden" : true
144
+ },
145
+ "children" : [ {
146
+ "properties" : {
147
+ "nav_hidden" : true,
148
+ "title" : "Shure EMEANOTES March 2010",
149
+ "nav_title" : "EMEANOTES March 2010"
150
+ },
151
+ "path" : "/en/meta_en/emea-newsletters/emeanotes-1",
152
+ "uuid" : "49c2c498-809a-420d-9131-b88dcbff0247"
153
+ } ],
154
+ "path" : "/en/meta_en/emea-newsletters",
155
+ "uuid" : "9ef7a386-d477-4510-bde4-d0d3a8d602b3"
156
+ }, {
157
+ "properties" : {
158
+ "title" : "Product Registration List"
159
+ },
160
+ "path" : "/en/meta_en/pr_admin",
161
+ "uuid" : "4e94eab5-566b-45c8-98c7-ff4adf3803e3"
162
+ }, {
163
+ "properties" : {
164
+ "title" : "Wireless"
165
+ },
166
+ "path" : "/en/meta_en/z_test",
167
+ "uuid" : "2f8ff1a1-6028-4671-98b3-dfdf670b8940"
168
+ }, {
169
+ "properties" : {
170
+ "nav_hidden" : true,
171
+ "title" : "newsletter"
172
+ },
173
+ "children" : [ {
174
+ "properties" : {
175
+ "nav_hidden" : true,
176
+ "title" : "Many thanks!"
177
+ },
178
+ "path" : "/en/meta_en/newsletter-earphone/thankyou",
179
+ "uuid" : "1a80aef1-9fda-425d-9608-b9cab5d7e763"
180
+ }, {
181
+ "properties" : {
182
+ "nav_hidden" : true,
183
+ "title" : "Your subscription has been set up"
184
+ },
185
+ "path" : "/en/meta_en/newsletter-earphone/welcome",
186
+ "uuid" : "5817d4f6-83a7-4f4d-839f-b3a76658e3ce"
187
+ }, {
188
+ "properties" : {
189
+ "nav_hidden" : true,
190
+ "title" : "Your subscription has been deleted"
191
+ },
192
+ "path" : "/en/meta_en/newsletter-earphone/goodbye",
193
+ "uuid" : "bd9117cb-6e26-413b-898d-1aaa53fead53"
194
+ }, {
195
+ "properties" : {
196
+ "nav_hidden" : true,
197
+ "title" : "Your data has been updated"
198
+ },
199
+ "path" : "/en/meta_en/newsletter-earphone/updated",
200
+ "uuid" : "ebcd8e52-cde7-411b-80d2-db1d21b732c5"
201
+ }, {
202
+ "properties" : { },
203
+ "path" : "/en/meta_en/newsletter-earphone/test",
204
+ "uuid" : "9b4f48ab-3c5e-4e00-acf0-d665a417051c"
205
+ } ],
206
+ "path" : "/en/meta_en/newsletter-earphone",
207
+ "uuid" : "b2137ec6-2a64-4664-9a38-cd59415e1f82"
208
+ } ],
209
+ "path" : "/en/meta_en",
210
+ "uuid" : "6df4290b-c54f-4166-a5cf-acae43e757b1"
211
+ }, {
212
+ "properties" : {
213
+ "title" : "Products Overview",
214
+ "nav_title" : "products"
215
+ },
216
+ "children" : [ {
217
+ "properties" : {
218
+ "title" : "Microphones for almost every application",
219
+ "nav_title" : "Microphones"
220
+ },
221
+ "children" : [ {
222
+ "properties" : {
223
+ "nav_hidden" : true,
224
+ "title" : "Microphone Product Page"
225
+ },
226
+ "path" : "/en/products/microphones/microphone",
227
+ "uuid" : "540e805f-c533-4a09-bab9-69cdba2aef0c"
228
+ }, {
229
+ "properties" : {
230
+ "title" : "Find the right vocal microphone for you",
231
+ "nav_title" : "Vocal "
232
+ },
233
+ "path" : "/en/products/microphones/vocal_microphones",
234
+ "uuid" : "7580c958-72eb-44f8-84f6-31122f6d98b8"
235
+ }, {
236
+ "properties" : {
237
+ "title" : "Find the right instrument microphone for you",
238
+ "nav_title" : "Instrument Microphones"
239
+ },
240
+ "path" : "/en/products/microphones/instrument_microphones",
241
+ "uuid" : "38994662-1233-4d9e-9f42-4b6622228d56"
242
+ }, {
243
+ "properties" : {
244
+ "title" : "Find the right guitar microphone",
245
+ "nav_title" : "Guitar Microphones"
246
+ },
247
+ "path" : "/en/products/microphones/guitar_microphones",
248
+ "uuid" : "b6158914-6fc5-4a91-961b-9c73eb4383d6"
249
+ }, {
250
+ "properties" : {
251
+ "title" : "Headset Microphones (Wired & Wireless)",
252
+ "nav_title" : "Headset "
253
+ },
254
+ "path" : "/en/products/microphones/headset_microphones",
255
+ "uuid" : "a5c0df12-0ce5-40f9-88bc-ed7fa0025c0e"
256
+ }, {
257
+ "properties" : {
258
+ "title" : "Lavalier Microphones (Wired & Wireless)",
259
+ "nav_title" : "Lavalier "
260
+ },
261
+ "path" : "/en/products/microphones/lavalier_microphones",
262
+ "uuid" : "979e846a-27ec-41bd-8728-5a9e93e982e9"
263
+ }, {
264
+ "properties" : {
265
+ "title" : "Broadcasting: Reporter Microphones, Stereo Microphones, Shotgun Microphones, Headsets",
266
+ "nav_title" : "Broadcasting"
267
+ },
268
+ "path" : "/en/products/microphones/broadcasting-microphones",
269
+ "uuid" : "1012c5ac-e6ee-46de-bbc4-bc39777d0e8d"
270
+ }, {
271
+ "properties" : {
272
+ "title" : "Home Recording",
273
+ "nav_title" : "Home Recording"
274
+ },
275
+ "path" : "/en/products/microphones/home_recording",
276
+ "uuid" : "01c4901a-ac5f-4d29-938a-ebe792acae5a"
277
+ }, {
278
+ "properties" : {
279
+ "title" : "Find the right drum microphone for you",
280
+ "nav_title" : "Drum Microphones"
281
+ },
282
+ "path" : "/en/products/microphones/drum_microphones",
283
+ "uuid" : "eb113401-c328-4dcf-8f78-c5d9e0104b1f"
284
+ }, {
285
+ "properties" : {
286
+ "title" : "Installed Microphones",
287
+ "nav_title" : "Installed"
288
+ },
289
+ "path" : "/en/products/microphones/installed",
290
+ "uuid" : "8375c979-c64e-49e3-9b9b-91709d4c77a7"
291
+ }, {
292
+ "properties" : {
293
+ "title" : "Microflex Microphones",
294
+ "nav_title" : "Microflex"
295
+ },
296
+ "path" : "/en/products/microphones/microflex",
297
+ "uuid" : "52187b6f-6523-46aa-9527-efc51c877c12"
298
+ }, {
299
+ "properties" : {
300
+ "title" : "Centraverse™ Installed Sound Microphone"
301
+ },
302
+ "path" : "/en/products/microphones/centraverse",
303
+ "uuid" : "af3f909d-62e2-48a9-b3c0-9280c4c5ef2f"
304
+ }, {
305
+ "properties" : {
306
+ "title" : "Karaoke Microphones",
307
+ "nav_title" : "Karaoke"
308
+ },
309
+ "path" : "/en/products/microphones/karaoke_microphones",
310
+ "uuid" : "9198193f-f42d-4229-af7a-9979b7a4540d"
311
+ }, {
312
+ "properties" : {
313
+ "title" : "Microphone Finder"
314
+ },
315
+ "path" : "/en/products/microphones/finder",
316
+ "uuid" : "de31ec28-29a4-4243-b32a-94337e814039"
317
+ }, {
318
+ "properties" : {
319
+ "nav_hidden" : true,
320
+ "title" : "Studio Microphones",
321
+ "nav_title" : "Professional Studio"
322
+ },
323
+ "path" : "/en/products/microphones/studio_microphones",
324
+ "uuid" : "797b73b7-f71e-49da-936b-e6a271967ee4"
325
+ }, {
326
+ "properties" : {
327
+ "title" : "Microphones Series",
328
+ "nav_title" : "Microphones Series"
329
+ },
330
+ "path" : "/en/products/microphones/microphone-series",
331
+ "uuid" : "93e06a82-78a3-4d3c-b7f8-8ba05181efa3"
332
+ } ],
333
+ "path" : "/en/products/microphones",
334
+ "uuid" : "22a7f64e-a4c6-4660-8932-8127717c706b"
335
+ }, {
336
+ "properties" : {
337
+ "title" : "Wireless Microphone Systems",
338
+ "nav_title" : "Wireless"
339
+ },
340
+ "children" : [ {
341
+ "properties" : {
342
+ "nav_hidden" : true,
343
+ "title" : "UHF-R Wireless System"
344
+ },
345
+ "path" : "/en/products/wireless_microphones/uhf_r_wireless_systems",
346
+ "uuid" : "c2921e99-0980-4f68-bcbf-1a125436996e"
347
+ }, {
348
+ "properties" : {
349
+ "nav_hidden" : true,
350
+ "title" : "Wireless System Product Page"
351
+ },
352
+ "path" : "/en/products/wireless_microphones/wireless_system_page",
353
+ "uuid" : "d220a2c7-7606-4e7a-9e29-2c284f7d56d9"
354
+ }, {
355
+ "properties" : {
356
+ "title" : "Find the right wireless vocal microphone for you",
357
+ "nav_title" : "Wireless Vocal "
358
+ },
359
+ "path" : "/en/products/wireless_microphones/wireless_application_vocal",
360
+ "uuid" : "f127bbba-f6f9-40ec-a377-8775776ec53c"
361
+ }, {
362
+ "properties" : {
363
+ "title" : "Wireless Systems for brass & wind",
364
+ "nav_title" : "Wireless Brass & Wind"
365
+ },
366
+ "path" : "/en/products/wireless_microphones/wireless_systems_brass",
367
+ "uuid" : "a1730dbd-ecb9-468a-9ee1-21f58d7a85d3"
368
+ }, {
369
+ "properties" : {
370
+ "title" : "Wireless Systems for guitarists and bassists",
371
+ "nav_title" : "Wireless Guitar & Bass"
372
+ },
373
+ "path" : "/en/products/wireless_microphones/wireless_systems_guitarists",
374
+ "uuid" : "d00519a6-2ac0-42af-b1f3-7a3b5badaecf"
375
+ }, {
376
+ "properties" : {
377
+ "nav_hidden" : true,
378
+ "title" : "Receivers"
379
+ },
380
+ "path" : "/en/products/wireless_microphones/receivers",
381
+ "uuid" : "919aeb11-2c43-4602-89dc-64e354ee2340"
382
+ }, {
383
+ "properties" : {
384
+ "nav_hidden" : true,
385
+ "title" : "Transmitters"
386
+ },
387
+ "path" : "/en/products/wireless_microphones/transmitters",
388
+ "uuid" : "663e873b-1bae-4447-8fc9-85aa3e3473a8"
389
+ }, {
390
+ "properties" : {
391
+ "nav_hidden" : true,
392
+ "title" : "Wireless Systems"
393
+ },
394
+ "path" : "/en/products/wireless_microphones/wireless_systems",
395
+ "uuid" : "63ea333d-18d3-42d8-b6ad-d517e8abceb9"
396
+ }, {
397
+ "properties" : {
398
+ "nav_hidden" : true,
399
+ "title" : "Wireless System Configurations"
400
+ },
401
+ "path" : "/en/products/wireless_microphones/wireless_systems_configurations",
402
+ "uuid" : "1ccf3243-f247-4d73-ba49-6bc173a724f6"
403
+ }, {
404
+ "properties" : {
405
+ "title" : "Lavalier Microphones",
406
+ "nav_title" : "Lavalier"
407
+ },
408
+ "path" : "/en/products/wireless_microphones/lavalier_microphones",
409
+ "uuid" : "7af980f5-b10c-4b7d-b40d-988cd4f40543"
410
+ }, {
411
+ "properties" : {
412
+ "title" : "Headset Microphones",
413
+ "nav_title" : "Headsets"
414
+ },
415
+ "path" : "/en/products/wireless_microphones/headset_microphones",
416
+ "uuid" : "f9cd7400-eceb-4e00-bec5-6848f9dd1567"
417
+ }, {
418
+ "properties" : {
419
+ "title" : "BLX Wireless Systems"
420
+ },
421
+ "path" : "/en/products/wireless_microphones/blx_wireless",
422
+ "uuid" : "7acc74cb-28c9-4b3e-8bc7-6980431ea43f"
423
+ }, {
424
+ "properties" : {
425
+ "title" : "Performance Gear Wireless Systems"
426
+ },
427
+ "path" : "/en/products/wireless_microphones/pg_wireless",
428
+ "uuid" : "491fb720-3080-4cc3-b1ef-bbbd1c73c65f"
429
+ }, {
430
+ "properties" : {
431
+ "title" : "PGX Wireless Systems"
432
+ },
433
+ "path" : "/en/products/wireless_microphones/pgx_wireless",
434
+ "uuid" : "ac7907ca-fe45-4aef-b449-7e462e0864d7"
435
+ }, {
436
+ "properties" : {
437
+ "title" : "PGXD Wireless Systems"
438
+ },
439
+ "path" : "/en/products/wireless_microphones/pgxd_wireless",
440
+ "uuid" : "0bee99b2-5fd2-4214-baca-c31f6fd3a281"
441
+ }, {
442
+ "properties" : {
443
+ "title" : "SLX Wireless Systems"
444
+ },
445
+ "path" : "/en/products/wireless_microphones/slx_wireless",
446
+ "uuid" : "f6ce7da4-53a4-4599-b501-23eb19aa4dc8"
447
+ }, {
448
+ "properties" : {
449
+ "title" : "SVX Wireless Systems"
450
+ },
451
+ "path" : "/en/products/wireless_microphones/svx_wireless",
452
+ "uuid" : "0586b806-4a33-4baf-9551-a2f07c4ddc97"
453
+ }, {
454
+ "properties" : {
455
+ "title" : "FP Wireless Systems",
456
+ "nav_title" : "FP Wireless Systems"
457
+ },
458
+ "path" : "/en/products/wireless_microphones/fp_wireless",
459
+ "uuid" : "9a9df4ce-1239-47b1-b9b7-c1be1162b10e"
460
+ }, {
461
+ "properties" : {
462
+ "title" : "ULX Wireless Systems"
463
+ },
464
+ "path" : "/en/products/wireless_microphones/ulx_wireless",
465
+ "uuid" : "f9c188e6-389f-44f2-b636-c21ecbd5b972"
466
+ }, {
467
+ "properties" : {
468
+ "title" : "ULX-D Wireless Systems"
469
+ },
470
+ "path" : "/en/products/wireless_microphones/ulxd_wireless",
471
+ "uuid" : "ec8fcc88-bf98-4d55-949f-71cc93008e09"
472
+ }, {
473
+ "properties" : {
474
+ "title" : "UHF-R Wireless Systems"
475
+ },
476
+ "path" : "/en/products/wireless_microphones/uhfr_wireless",
477
+ "uuid" : "8097d6c0-9c1f-4d7b-81d8-5f77929ac10a"
478
+ }, {
479
+ "properties" : {
480
+ "title" : "Axient™ Wireless microphone system",
481
+ "nav_title" : "Axient™ Wireless microphone system"
482
+ },
483
+ "path" : "/en/products/wireless_microphones/axient-wireless-management-network",
484
+ "uuid" : "2c2e416c-fb8d-4531-ab51-ccdb44fa735f"
485
+ } ],
486
+ "path" : "/en/products/wireless_microphones",
487
+ "uuid" : "ca833293-688a-4174-a427-e511aadb34d7"
488
+ }, {
489
+ "properties" : {
490
+ "title" : "Shure Sound Isolating™ earphones - immerse yourself in the music ",
491
+ "nav_title" : "Earphones"
492
+ },
493
+ "children" : [ {
494
+ "properties" : {
495
+ "title" : "Shure Sound Isolating Earphones: Discontinued Models",
496
+ "nav_title" : "Discontinued Models"
497
+ },
498
+ "path" : "/en/products/earphones/phase-out",
499
+ "uuid" : "4077fe6f-ca07-4c71-8440-09884481bf10"
500
+ }, {
501
+ "properties" : {
502
+ "nav_hidden" : true,
503
+ "title" : "Earphone Product Page"
504
+ },
505
+ "path" : "/en/products/earphones/earphone",
506
+ "uuid" : "9c5b6d33-d3eb-4200-b8a7-8e357769c25e"
507
+ } ],
508
+ "path" : "/en/products/earphones",
509
+ "uuid" : "64fdabb1-1f7e-443e-a748-09ecb93e500a"
510
+ }, {
511
+ "properties" : {
512
+ "title" : "Headphones",
513
+ "nav_title" : "Headphones"
514
+ },
515
+ "children" : [ {
516
+ "properties" : {
517
+ "nav_hidden" : true,
518
+ "title" : "Headphone Product Page"
519
+ },
520
+ "path" : "/en/products/headphones/headphone",
521
+ "uuid" : "449ee890-6798-49e3-bab4-84c261fd082e"
522
+ } ],
523
+ "path" : "/en/products/headphones",
524
+ "uuid" : "6e7b3af4-ca08-4b82-b82a-849d0af95833"
525
+ }, {
526
+ "properties" : {
527
+ "title" : "In-Ear Personal Monitoring",
528
+ "nav_title" : "Monitoring"
529
+ },
530
+ "children" : [ {
531
+ "properties" : {
532
+ "nav_hidden" : true,
533
+ "title" : "In Ear Monitoring System Product Page"
534
+ },
535
+ "path" : "/en/products/in_ear_monitoring/in_ear_monitoring",
536
+ "uuid" : "b2da71d7-fb17-442b-9ce3-20921cb4bcbd"
537
+ }, {
538
+ "properties" : {
539
+ "nav_hidden" : true,
540
+ "title" : "In Ear Monitoring Receiver"
541
+ },
542
+ "path" : "/en/products/in_ear_monitoring/in_ear_monitoring_receivers",
543
+ "uuid" : "c468d723-999e-4f4b-a74d-1123355d75bf"
544
+ }, {
545
+ "properties" : {
546
+ "nav_hidden" : true,
547
+ "title" : "In Ear Monitoring Transmitters"
548
+ },
549
+ "path" : "/en/products/in_ear_monitoring/in_ear_monitoring_transmitters",
550
+ "uuid" : "48b20fc0-d5e9-44f3-bb9b-7a09fbbd6686"
551
+ }, {
552
+ "properties" : {
553
+ "title" : "PSM 200"
554
+ },
555
+ "path" : "/en/products/in_ear_monitoring/psm200",
556
+ "uuid" : "aad78df1-5cdb-488a-bd14-e2f87a647e44"
557
+ }, {
558
+ "properties" : {
559
+ "nav_hidden" : true,
560
+ "title" : "PSM 400"
561
+ },
562
+ "path" : "/en/products/in_ear_monitoring/psm400",
563
+ "uuid" : "dadd4db2-18cd-4ae3-b7d7-8b87fa856b64"
564
+ }, {
565
+ "properties" : {
566
+ "nav_hidden" : true,
567
+ "title" : "PSM 700"
568
+ },
569
+ "path" : "/en/products/in_ear_monitoring/psm700",
570
+ "uuid" : "3f677577-a0e1-45af-9bc5-7c4e312c6cc4"
571
+ }, {
572
+ "properties" : {
573
+ "title" : "PSM 900"
574
+ },
575
+ "path" : "/en/products/in_ear_monitoring/psm900",
576
+ "uuid" : "3d45548e-06d8-4688-8baf-a0277d8e8534"
577
+ }, {
578
+ "properties" : {
579
+ "title" : "PSM 1000"
580
+ },
581
+ "path" : "/en/products/in_ear_monitoring/psm1000",
582
+ "uuid" : "92a66d01-bb0c-4563-af57-a2de24e23972"
583
+ } ],
584
+ "path" : "/en/products/in_ear_monitoring",
585
+ "uuid" : "f6f07239-2f11-4cf6-84a3-12686e99dd8e"
586
+ }, {
587
+ "properties" : {
588
+ "title" : "DJ & Phono",
589
+ "nav_title" : "DJ & Phono"
590
+ },
591
+ "children" : [ {
592
+ "properties" : {
593
+ "nav_hidden" : true,
594
+ "title" : "DJ & Phono Product Page"
595
+ },
596
+ "path" : "/en/products/dj_phono/dj_phono",
597
+ "uuid" : "07007349-3127-40f1-98e2-9da3d300ae25"
598
+ } ],
599
+ "path" : "/en/products/dj_phono",
600
+ "uuid" : "ef39bccd-5884-440e-be08-352799f5399c"
601
+ }, {
602
+ "properties" : {
603
+ "title" : "Mixers & DSP",
604
+ "nav_title" : "Mixers & DSP"
605
+ },
606
+ "children" : [ {
607
+ "properties" : {
608
+ "nav_hidden" : true,
609
+ "title" : "Mixer Product Page"
610
+ },
611
+ "path" : "/en/products/mixers/mixer",
612
+ "uuid" : "713d95d6-89b9-4c20-bb2a-e4e4c3a08734"
613
+ } ],
614
+ "path" : "/en/products/mixers",
615
+ "uuid" : "64b04920-b511-49a5-8958-70dfd89a5ae1"
616
+ }, {
617
+ "properties" : {
618
+ "title" : "Accessories and Replacement Parts",
619
+ "nav_title" : "Accessories"
620
+ },
621
+ "children" : [ {
622
+ "properties" : {
623
+ "title" : "Wireless Accessories and Replacement Parts",
624
+ "nav_title" : "Wireless"
625
+ },
626
+ "path" : "/en/products/accessories/wireless_accessories",
627
+ "uuid" : "50c7a29a-b37e-4267-a90a-c185624bbdf8"
628
+ }, {
629
+ "properties" : {
630
+ "title" : "Accessories for In-Ear Personal Monitoring",
631
+ "nav_title" : "In-Ear Personal Monitoring"
632
+ },
633
+ "path" : "/en/products/accessories/psm_and_earphones_accessories",
634
+ "uuid" : "b8b7358f-9b1d-45ea-ba7c-7156f3dbd59e"
635
+ }, {
636
+ "properties" : {
637
+ "title" : "Earphones Accessories",
638
+ "nav_title" : "Earphones"
639
+ },
640
+ "path" : "/en/products/accessories/earphones_accessories",
641
+ "uuid" : "c8fc48c5-4e9a-4314-9a95-ce2eba8eca2b"
642
+ }, {
643
+ "properties" : {
644
+ "title" : "DJ & Phono Accesories and replacement parts",
645
+ "nav_title" : "DJ & Phono"
646
+ },
647
+ "path" : "/en/products/accessories/dj_phono_accessories",
648
+ "uuid" : "876e2aa5-b773-43f8-8c84-1f8df224909a"
649
+ }, {
650
+ "properties" : {
651
+ "title" : "Mixers & DSP Accessories",
652
+ "nav_title" : "Mixers & DSP"
653
+ },
654
+ "path" : "/en/products/accessories/mixers_dsp_accessories",
655
+ "uuid" : "3ce2243e-273d-4afc-97de-45caff661773"
656
+ }, {
657
+ "properties" : {
658
+ "title" : "Headphones Accessories",
659
+ "nav_title" : "Headphones"
660
+ },
661
+ "path" : "/en/products/accessories/headphones_accessories",
662
+ "uuid" : "e04703ae-8e18-4a80-a788-b3990178a0e6"
663
+ }, {
664
+ "properties" : {
665
+ "title" : "Discussion System Accessories",
666
+ "nav_title" : "Discussion Systems"
667
+ },
668
+ "path" : "/en/products/accessories/discussion_systems",
669
+ "uuid" : "975954c7-4429-4a09-b7a0-6d538a850d27"
670
+ }, {
671
+ "properties" : {
672
+ "title" : "Problem Solvers",
673
+ "nav_title" : "Problem Solvers"
674
+ },
675
+ "path" : "/en/products/accessories/problem_solvers",
676
+ "uuid" : "05e678ea-53c3-4c07-a9bf-42d00a10db10"
677
+ }, {
678
+ "properties" : {
679
+ "nav_hidden" : true,
680
+ "title" : "Accessory Product Page"
681
+ },
682
+ "path" : "/en/products/accessories/accessory",
683
+ "uuid" : "37795012-22d4-47b6-a6e0-47957ad90c15"
684
+ }, {
685
+ "properties" : {
686
+ "title" : "Microphone Accessories and Replacement Parts",
687
+ "nav_title" : "Microphone Accessories"
688
+ },
689
+ "path" : "/en/products/accessories/microphones_accessories",
690
+ "uuid" : "c937e677-43bb-4bf3-9f53-18eb66854f8f"
691
+ }, {
692
+ "properties" : {
693
+ "title" : "Conferencing Microphones Accessories",
694
+ "nav_title" : "Conferencing Microphones Accessories"
695
+ },
696
+ "path" : "/en/products/accessories/conferencing-accessories",
697
+ "uuid" : "958eb50e-d88e-46c7-842e-67c897c9a86e"
698
+ } ],
699
+ "path" : "/en/products/accessories",
700
+ "uuid" : "31821d0a-aa98-4578-892e-74248c894426"
701
+ }, {
702
+ "properties" : {
703
+ "title" : "New products from Shure",
704
+ "nav_title" : "New Products"
705
+ },
706
+ "path" : "/en/products/new_products",
707
+ "uuid" : "a2997493-7d89-478d-88b4-a04ae8247b70"
708
+ }, {
709
+ "properties" : {
710
+ "title" : "Shure Discontinued Products",
711
+ "nav_title" : "Discontinued"
712
+ },
713
+ "path" : "/en/products/discontinued-products",
714
+ "uuid" : "ea635a97-f978-424b-a277-e423b5596d5b"
715
+ }, {
716
+ "properties" : {
717
+ "nav_hidden" : true,
718
+ "title" : "Product Comparison Base Page"
719
+ },
720
+ "path" : "/en/products/comparison",
721
+ "uuid" : "867a7480-14d7-4439-be01-8bcbcf030277"
722
+ }, {
723
+ "properties" : {
724
+ "nav_hidden" : true,
725
+ "title" : "Notepad Base Page"
726
+ },
727
+ "path" : "/en/products/notepad",
728
+ "uuid" : "3a822b7f-3c51-44ec-a3a6-8e3f7f1a2b40"
729
+ }, {
730
+ "properties" : {
731
+ "nav_hidden" : true
732
+ },
733
+ "path" : "/en/products/----------------",
734
+ "uuid" : "3cfaa758-915d-44b8-a871-9ab4d3896b67"
735
+ }, {
736
+ "properties" : {
737
+ "nav_hidden" : true,
738
+ "title" : "Drum Microphone Sets"
739
+ },
740
+ "children" : [ {
741
+ "properties" : {
742
+ "nav_hidden" : true,
743
+ "title" : "Drum Microphone Set Product Page"
744
+ },
745
+ "path" : "/en/products/drum_microphone_sets/drum_microphone_set",
746
+ "uuid" : "041d2314-26f0-46a7-be77-19865b4ee48d"
747
+ } ],
748
+ "path" : "/en/products/drum_microphone_sets",
749
+ "uuid" : "ad8fb221-0449-4bd4-a753-ecbba49c2be1"
750
+ }, {
751
+ "properties" : {
752
+ "nav_hidden" : true,
753
+ "title" : "USB Microphone Sets"
754
+ },
755
+ "children" : [ {
756
+ "properties" : {
757
+ "nav_hidden" : true,
758
+ "title" : "USB Microphone Set Product Page"
759
+ },
760
+ "path" : "/en/products/usb_microphone_sets/usb_microphone_set",
761
+ "uuid" : "43327eb9-05db-4dd4-8630-705de8e6a9c9"
762
+ } ],
763
+ "path" : "/en/products/usb_microphone_sets",
764
+ "uuid" : "006c19ce-5750-4fde-b7db-ffe226899c58"
765
+ }, {
766
+ "properties" : {
767
+ "nav_hidden" : true,
768
+ "title" : "Discussion Systems"
769
+ },
770
+ "children" : [ {
771
+ "properties" : {
772
+ "nav_hidden" : true,
773
+ "title" : "Microflex Product Page"
774
+ },
775
+ "path" : "/en/products/dis/dis",
776
+ "uuid" : "7f4f7af2-24a4-4e00-85d9-717a1f9b6a2f"
777
+ } ],
778
+ "path" : "/en/products/dis",
779
+ "uuid" : "9d650998-dcb0-4b17-ba31-7bfc821ce19f"
780
+ }, {
781
+ "properties" : {
782
+ "nav_hidden" : true,
783
+ "title" : "Discussion Systems"
784
+ },
785
+ "children" : [ {
786
+ "properties" : {
787
+ "nav_hidden" : true,
788
+ "title" : "Microflex Product Page"
789
+ },
790
+ "path" : "/en/products/centraverse/centraverse",
791
+ "uuid" : "62e789ba-c55b-4e18-8439-604d588208a3"
792
+ } ],
793
+ "path" : "/en/products/centraverse",
794
+ "uuid" : "003d831d-be3d-431c-aeda-6510f91a1ff7"
795
+ }, {
796
+ "properties" : {
797
+ "nav_hidden" : true,
798
+ "title" : "Discussion Systems"
799
+ },
800
+ "children" : [ {
801
+ "properties" : {
802
+ "nav_hidden" : true,
803
+ "title" : "Microflex Product Page"
804
+ },
805
+ "path" : "/en/products/microflex/microflex",
806
+ "uuid" : "03055220-d48e-4ba9-bddc-d25984ef2105"
807
+ } ],
808
+ "path" : "/en/products/microflex",
809
+ "uuid" : "99a44699-7ac5-444b-b7ae-bb1563df008e"
810
+ }, {
811
+ "properties" : {
812
+ "nav_hidden" : true,
813
+ "title" : "Headsets"
814
+ },
815
+ "children" : [ {
816
+ "properties" : {
817
+ "nav_hidden" : true,
818
+ "title" : "Headset Product Page"
819
+ },
820
+ "path" : "/en/products/headsets/headset",
821
+ "uuid" : "9cbbf2fa-194a-40eb-a709-b9090eb55ef2"
822
+ } ],
823
+ "path" : "/en/products/headsets",
824
+ "uuid" : "a7a428c5-cf77-4afb-9eda-6549ab7d2ab0"
825
+ }, {
826
+ "properties" : {
827
+ "nav_hidden" : true,
828
+ "title" : "Microphone Capsules"
829
+ },
830
+ "children" : [ {
831
+ "properties" : {
832
+ "title" : "Capsule Product Page"
833
+ },
834
+ "path" : "/en/products/capsules/capsule",
835
+ "uuid" : "fcf9299f-ced6-47e1-8f0b-6a07d0fb9562"
836
+ } ],
837
+ "path" : "/en/products/capsules",
838
+ "uuid" : "163ed573-f630-4401-a3fd-8bf30767e316"
839
+ } ],
840
+ "path" : "/en/products",
841
+ "uuid" : "502ea8d3-70d0-400b-8468-affd4ebf38d4"
842
+ }, {
843
+ "properties" : {
844
+ "title" : "News",
845
+ "nav_title" : "News"
846
+ },
847
+ "children" : [ {
848
+ "properties" : {
849
+ "title" : "Shure events",
850
+ "nav_title" : "events"
851
+ },
852
+ "path" : "/en/news/events",
853
+ "uuid" : "8e7df918-38e7-4484-9220-1e4bad478afb"
854
+ }, {
855
+ "properties" : {
856
+ "nav_hidden" : true,
857
+ "title" : "Sound Engineers",
858
+ "nav_title" : "Sound Engineers"
859
+ },
860
+ "children" : [ {
861
+ "properties" : {
862
+ "title" : "Video: Interview with recording engineer and producer Ken Caillat",
863
+ "nav_title" : "Interview: Ken Caillat"
864
+ },
865
+ "path" : "/en/news/sound_engineers/stagetalk-ken-caillat",
866
+ "uuid" : "c9610265-ddeb-4307-937a-9dd3d5777ff3"
867
+ }, {
868
+ "properties" : {
869
+ "title" : "Video: Interview with recording engineer and producer Thom Panunzio",
870
+ "nav_title" : "Interview: Thom Panunzio"
871
+ },
872
+ "path" : "/en/news/sound_engineers/stagetalk-thom-panunzio",
873
+ "uuid" : "bf618ccf-5b52-464e-a163-da4b91e6e73e"
874
+ }, {
875
+ "properties" : {
876
+ "title" : "Video: Interview with recording engineer and producer Ron Nevison",
877
+ "nav_title" : "Interview: Ron Nevison"
878
+ },
879
+ "path" : "/en/news/sound_engineers/stagetalk-ron-nevison",
880
+ "uuid" : "3758ca58-0532-4c4a-9ff2-dc6573788fb8"
881
+ }, {
882
+ "properties" : {
883
+ "title" : "Video: Interview with recording engineer and producer Mike Frondelli",
884
+ "nav_title" : "Interview: Mike Frondelli"
885
+ },
886
+ "path" : "/en/news/sound_engineers/stagetalk-mike-frondelli",
887
+ "uuid" : "26b3035c-c3a9-45a6-8b5f-e3bd035fdfcf"
888
+ }, {
889
+ "properties" : {
890
+ "title" : "Video: Interview with recording engineer and producer Mike Clinck",
891
+ "nav_title" : "Interview: Mike Clinck"
892
+ },
893
+ "path" : "/en/news/sound_engineers/stagetalk-mike-clinck",
894
+ "uuid" : "7633eea1-bea9-40a8-86d7-d41592254e7a"
895
+ }, {
896
+ "properties" : {
897
+ "title" : "Video: Interview with recording engineer Andy Johns",
898
+ "nav_title" : "Interview: Andy Johns"
899
+ },
900
+ "path" : "/en/news/sound_engineers/stagetalk-andy-johns",
901
+ "uuid" : "1d23b3f2-a677-4300-b9c0-39ca4fae3ae0"
902
+ }, {
903
+ "properties" : {
904
+ "title" : "視頻:採訪錄音師Glen Ballard",
905
+ "nav_title" : "Interview: Glen Ballard"
906
+ },
907
+ "path" : "/en/news/sound_engineers/stagetalk-glen-ballard",
908
+ "uuid" : "55fa97a5-ee76-4c1b-be96-ef31e6117360"
909
+ }, {
910
+ "properties" : {
911
+ "title" : "Video: Interview with producer and mixer Simon Gogerly",
912
+ "nav_title" : "Interview: Simon Gogerly"
913
+ },
914
+ "path" : "/en/news/sound_engineers/stagetalk-simon-gogerly",
915
+ "uuid" : "82812b50-b9cd-413a-8450-e31f63dfe8a2"
916
+ }, {
917
+ "properties" : {
918
+ "title" : "Video: Interview with recording engineer and producer Bil Vorndick",
919
+ "nav_title" : "Interview: Bil Vorndick"
920
+ },
921
+ "path" : "/en/news/sound_engineers/stagetalk-bil-vorndick",
922
+ "uuid" : "e69d3611-e440-4b0b-a6fe-ad1c3b0676af"
923
+ } ],
924
+ "path" : "/en/news/sound_engineers",
925
+ "uuid" : "c6638bc4-08a3-4a1a-a6af-58011e24b463"
926
+ }, {
927
+ "properties" : {
928
+ "title" : "Shure Awards",
929
+ "nav_title" : "Awards"
930
+ },
931
+ "path" : "/en/news/Shure-wins-Product-of-the-Year-and-other-awards-at-NAMM",
932
+ "uuid" : "51fcbc08-e3a5-4084-8a07-26f2a60c9270"
933
+ }, {
934
+ "properties" : {
935
+ "title" : "Shure News Archive",
936
+ "nav_title" : "News Archive"
937
+ },
938
+ "children" : [ {
939
+ "properties" : {
940
+ "nav_hidden" : true,
941
+ "title" : "Shure Asia honours E&E anniversary",
942
+ "nav_title" : "Shure Asia honours E&E anniversary"
943
+ },
944
+ "path" : "/en/news/news-archive/E_E_60th",
945
+ "uuid" : "8d91b44e-b7ae-4fd2-9376-bfa89f294ea3"
946
+ }, {
947
+ "properties" : {
948
+ "nav_hidden" : true,
949
+ "title" : "Custom Sleeves",
950
+ "nav_title" : "Custom Sleeves"
951
+ },
952
+ "path" : "/en/news/news-archive/sensaphonics",
953
+ "uuid" : "f84e4b51-a672-4d10-ab43-6bab94bbaca1"
954
+ }, {
955
+ "properties" : {
956
+ "nav_hidden" : true,
957
+ "title" : "700 MHz Update",
958
+ "nav_title" : "700 MHz Update"
959
+ },
960
+ "path" : "/en/news/news-archive/nz_700mhz",
961
+ "uuid" : "9120ee6f-7277-4ac5-9596-51abaabc7f18"
962
+ }, {
963
+ "properties" : {
964
+ "nav_hidden" : true,
965
+ "title" : "SHURE AXIENT WIRELESS EXCELS AT LIGHTS FESTIVAL FOR ABC7 CHICAGO",
966
+ "nav_title" : "SHURE AXIENT WIRELESS EXCELS AT LIGHTS FESTIVAL FOR ABC7 CHICAGO"
967
+ },
968
+ "path" : "/en/news/news-archive/SHURE-AXIENT-WIRELESS-EXCELS-AT-LIGHTS-FESTIVAL-FOR-ABC7-CHICAGO",
969
+ "uuid" : "7df83680-b572-4c85-af1f-8e7b6eff255f"
970
+ }, {
971
+ "properties" : {
972
+ "nav_hidden" : true,
973
+ "title" : "Shure Introduces SRH1840 and SRH1440 Open Back Headphones ",
974
+ "nav_title" : "SHURE AXIENT WIRELESS EXCELS AT LIGHTS FESTIVAL FOR ABC7 CHICAGO"
975
+ },
976
+ "path" : "/en/news/news-archive/Shure-Introduces-SRH1840-and-SRH1440-Open-Back-Headphones--",
977
+ "uuid" : "a30f9edb-f76a-42bb-83eb-a9317c6083d8"
978
+ }, {
979
+ "properties" : {
980
+ "nav_hidden" : true,
981
+ "title" : "Shure Unveils ULX-D™ Digital Wireless System",
982
+ "nav_title" : "Shure Unveils ULX-D™ Digital Wireless System"
983
+ },
984
+ "path" : "/en/news/news-archive/Shure-Unveils-ULXD-Digital-Wireless-System",
985
+ "uuid" : "ab040154-9b6b-4d4b-936b-258c4b85f92b"
986
+ }, {
987
+ "properties" : {
988
+ "nav_hidden" : true,
989
+ "title" : "Shure Adds Lavaliers, Earset to Microflex® Line",
990
+ "nav_title" : "Shure Adds Lavaliers, Earset to Microflex® Line"
991
+ },
992
+ "path" : "/en/news/news-archive/Shure-Adds-Lavaliers-Earset-to-Microflex-Line",
993
+ "uuid" : "a6450bb1-2802-49a3-9124-ed9762c705a4"
994
+ }, {
995
+ "properties" : {
996
+ "nav_hidden" : true,
997
+ "title" : "SHURE NAMED ONE OF THE NATION’S “BEST AND BRIGHTEST” COMPANIES ",
998
+ "nav_title" : "SHURE NAMED ONE OF THE NATION’S “BEST AND BRIGHTEST” COMPANIES"
999
+ },
1000
+ "path" : "/en/news/news-archive/Shure-Named-One-Of-The-Nation-s-Best-And-Brightest-Companies",
1001
+ "uuid" : "ae4b626e-d372-4a3d-99a7-8d67b151514c"
1002
+ }, {
1003
+ "properties" : {
1004
+ "nav_hidden" : true,
1005
+ "title" : "SHURE PSM®1000 USED EXCLUSIVELY FOR THE 54th ANNUAL GRAMMY® AWARDS",
1006
+ "nav_title" : "SHURE PSM®1000 USED EXCLUSIVELY FOR THE 54th ANNUAL GRAMMY® AWARDS"
1007
+ },
1008
+ "path" : "/en/news/news-archive/SHURE-PSM1000-USED-EXCLUSIVELY-FOR-THE-54th-ANNUAL-GRAMMY-AWARDS",
1009
+ "uuid" : "555e5f65-05bf-4ce5-b851-7842915df548"
1010
+ }, {
1011
+ "properties" : {
1012
+ "nav_hidden" : true,
1013
+ "title" : "Shure wins product of the year and other awards at NAMM",
1014
+ "nav_title" : "Shure wins Product of the Year and other awards at NAMM"
1015
+ },
1016
+ "path" : "/en/news/news-archive/Shure-wins-Product-of-the-Year-and-other-awards-at-NAMM",
1017
+ "uuid" : "c9bb6aef-dc48-4015-aae0-64991cd919d0"
1018
+ }, {
1019
+ "properties" : {
1020
+ "nav_hidden" : true,
1021
+ "title" : "Dadawa hosted the Dragon TV GRAMMY live in second time, with the upcoming CD release of scintillating sounds of China "
1022
+ },
1023
+ "path" : "/en/news/news-archive/Dadawa-hosted-the-Dragon-TV-GRAMMY-live-in-second-time",
1024
+ "uuid" : "330c3405-f98e-4f07-ad9b-6987775ec128"
1025
+ }, {
1026
+ "properties" : {
1027
+ "nav_hidden" : true,
1028
+ "title" : "TAMING THE WILD, WILD WEST OF WIRELESS AT THE 2012 DETROIT AUTO SHOW"
1029
+ },
1030
+ "path" : "/en/news/news-archive/TAMING-THE-WILD,-WILD-WEST-OF-WIRELESS-AT-THE-2012-DETROIT-AUTO-SHOW",
1031
+ "uuid" : "06afc816-adf6-46fc-82dc-af50fd95b7e1"
1032
+ }, {
1033
+ "properties" : {
1034
+ "nav_hidden" : true,
1035
+ "title" : "GARBAGE USES SHURE RIBBON MICS TO RECORD NEW ALBUM"
1036
+ },
1037
+ "path" : "/en/news/news-archive/GARBAGE-USES-SHURE-RIBBON-MICS-TO-RECORD-NEW-ALBUM",
1038
+ "uuid" : "d9671f51-d126-4836-a5f0-4162ddc6867a"
1039
+ }, {
1040
+ "properties" : {
1041
+ "nav_hidden" : true,
1042
+ "title" : "BILLBOARD LATIN MUSIC AWARDS USE SHURE GEAR EXCLUSIVELY"
1043
+ },
1044
+ "path" : "/en/news/news-archive/BILLBOARD-LATIN-MUSIC-AWARDS-USE-SHURE-GEAR-EXCLUSIVELY",
1045
+ "uuid" : "999955d1-ded7-40a3-8cbf-b6adc68e2598"
1046
+ }, {
1047
+ "properties" : {
1048
+ "nav_hidden" : true,
1049
+ "title" : "SHURE PSM®1000 SOLVES IN-EAR ISSUES FOR RED HOT CHILI PEPPERS"
1050
+ },
1051
+ "path" : "/en/news/news-archive/SHURE-PSM1000-SOLVES-IN-EAR-ISSUES-FOR-RED-HOT-CHILI-PEPPERS",
1052
+ "uuid" : "b4f1e182-5bb9-4e1a-b696-aaac776c9150"
1053
+ }, {
1054
+ "properties" : {
1055
+ "nav_hidden" : true,
1056
+ "title" : "Shure Axient Wireless Management Network used for the 98th German Catholic Convention"
1057
+ },
1058
+ "path" : "/en/news/news-archive/Shure-Axient-Wireless-Management-Network-used-for-the-98th-German-Catholic-Convention",
1059
+ "uuid" : "7ef45343-78e0-4d3e-8fdd-45422ef51241"
1060
+ }, {
1061
+ "properties" : {
1062
+ "nav_hidden" : true,
1063
+ "title" : "SHURE PARTNERS WITH AUDINATE"
1064
+ },
1065
+ "path" : "/en/news/news-archive/Shure-Audinate-Partnership-release",
1066
+ "uuid" : "7b61a439-476a-4898-bb4e-e93e5e5ac321"
1067
+ }, {
1068
+ "properties" : {
1069
+ "nav_hidden" : true,
1070
+ "title" : "SHURE ADDS LAVALIERS, EARSET TO MICROFLEX® LINE"
1071
+ },
1072
+ "path" : "/en/news/news-archive/SHURE-ADDS-LAVALIERS-EARSET-TO-MICROFLEX-LINE",
1073
+ "uuid" : "648e1f91-816a-4d78-b503-03191fac5fa9"
1074
+ }, {
1075
+ "properties" : {
1076
+ "nav_hidden" : true,
1077
+ "title" : "SHURE UA874 ACTIVE DIRECTIONAL ANTENNA "
1078
+ },
1079
+ "path" : "/en/news/news-archive/UA874_INFOCOMM-2012",
1080
+ "uuid" : "a65df981-ac6c-42ee-b253-bf90ac356bb5"
1081
+ }, {
1082
+ "properties" : {
1083
+ "nav_hidden" : true,
1084
+ "title" : "SHURE ADDS DUAL, QUAD RECEIVERS TO ULX-D SERIES"
1085
+ },
1086
+ "path" : "/en/news/news-archive/SHURE-ADDS-DUAL-QUAD-RECEIVERS-TO-ULX-D-SERIES",
1087
+ "uuid" : "e09c84b7-53b4-49d9-ae22-4019da1979c9"
1088
+ }, {
1089
+ "properties" : {
1090
+ "nav_hidden" : true,
1091
+ "title" : "Shure has been honored as one of \"Chicago's 101 Best and Brightest Companies To Work"
1092
+ },
1093
+ "path" : "/en/news/news-archive/Shure-has-been-honored-as-one-of--Chicago-s-101-Best-and-Brightest-Companies-To-Work",
1094
+ "uuid" : "ba3bafad-2bc1-4a73-aac5-085f1f7f88d3"
1095
+ } ],
1096
+ "path" : "/en/news/news-archive",
1097
+ "uuid" : "b9247979-36ab-456d-aecb-7099a6f02c7b"
1098
+ }, {
1099
+ "properties" : {
1100
+ "nav_hidden" : true,
1101
+ "title" : "Shure New Wireless Systems",
1102
+ "nav_title" : "Shure New Wireless Systems"
1103
+ },
1104
+ "path" : "/en/news/new-wireless-products",
1105
+ "uuid" : "cbffdef2-eccb-4b6a-b234-ec2ebecb66f6"
1106
+ } ],
1107
+ "path" : "/en/news",
1108
+ "uuid" : "5d7eaa4f-65d9-4173-9341-4a3b0fa838e6"
1109
+ }, {
1110
+ "properties" : {
1111
+ "title" : "Artists",
1112
+ "nav_title" : "Artists"
1113
+ },
1114
+ "children" : [ {
1115
+ "properties" : {
1116
+ "nav_hidden" : true,
1117
+ "title" : "Shure Artists: "
1118
+ },
1119
+ "path" : "/en/artists/Artist_template",
1120
+ "uuid" : "0ecf19d8-71d1-45ef-8ecc-f2b603381bbf"
1121
+ }, {
1122
+ "properties" : {
1123
+ "nav_hidden" : true,
1124
+ "title" : "Shure Artists: Andrew Chu",
1125
+ "nav_title" : "Andrew Chu"
1126
+ },
1127
+ "path" : "/en/artists/andrew_chu",
1128
+ "uuid" : "3fcea3e5-fae5-4a41-853e-f0ec575ab544"
1129
+ }, {
1130
+ "properties" : {
1131
+ "nav_hidden" : true,
1132
+ "title" : "Shure Artists: Angus & Julia Stone"
1133
+ },
1134
+ "path" : "/en/artists/Angus_Julia_Stone",
1135
+ "uuid" : "16bb8a71-9138-4433-b2b0-d4c2f09e84d5"
1136
+ }, {
1137
+ "properties" : {
1138
+ "nav_hidden" : true,
1139
+ "title" : "Shure Artists: Anson Hu",
1140
+ "nav_title" : "Anson Hu"
1141
+ },
1142
+ "path" : "/en/artists/anson_hu",
1143
+ "uuid" : "d2908bef-7b68-4611-ae79-c226fc6d34f7"
1144
+ }, {
1145
+ "properties" : {
1146
+ "nav_hidden" : true,
1147
+ "title" : "Shure Artists: Dave Dobbyn",
1148
+ "nav_title" : "Dave Dobbyn"
1149
+ },
1150
+ "path" : "/en/artists/dave_dobbyn",
1151
+ "uuid" : "589afc7d-cf69-4afd-9dd6-9660fc7beaf7"
1152
+ }, {
1153
+ "properties" : {
1154
+ "nav_hidden" : true,
1155
+ "title" : "Shure Artists: David Tao"
1156
+ },
1157
+ "path" : "/en/artists/david_tao",
1158
+ "uuid" : "521dfb91-1d4b-4705-b739-ae6ac8a38819"
1159
+ }, {
1160
+ "properties" : {
1161
+ "nav_hidden" : true,
1162
+ "title" : "Shure Artists: DJ CO-MA",
1163
+ "nav_title" : "DJ CO-MA"
1164
+ },
1165
+ "path" : "/en/artists/dj_coma",
1166
+ "uuid" : "37fc6567-0572-4178-992c-3ea2b912d393"
1167
+ }, {
1168
+ "properties" : {
1169
+ "nav_hidden" : true,
1170
+ "title" : "Shure Artists: ELECTRICO",
1171
+ "nav_title" : "ELECTRICO"
1172
+ },
1173
+ "path" : "/en/artists/electrico",
1174
+ "uuid" : "d3e7b187-dbd3-49c9-9e09-faa2458740f2"
1175
+ }, {
1176
+ "properties" : {
1177
+ "nav_hidden" : true,
1178
+ "title" : "Shure Artists: Empire Of The Sun"
1179
+ },
1180
+ "path" : "/en/artists/Empire_Of_The_Sun",
1181
+ "uuid" : "8451e4b8-2f42-40cf-9e1d-88ac05cd0a6a"
1182
+ }, {
1183
+ "properties" : {
1184
+ "nav_hidden" : true,
1185
+ "title" : "Shure Artists: Evermore"
1186
+ },
1187
+ "path" : "/en/artists/Evermore",
1188
+ "uuid" : "31ff31f3-a61d-4f96-aaf4-a35ada74a8a4"
1189
+ }, {
1190
+ "properties" : {
1191
+ "nav_hidden" : true,
1192
+ "title" : "Shure Artists: Faker"
1193
+ },
1194
+ "path" : "/en/artists/Faker",
1195
+ "uuid" : "c1c33ab0-f3cc-4522-b30a-e5d3e53a8380"
1196
+ }, {
1197
+ "properties" : {
1198
+ "nav_hidden" : true,
1199
+ "title" : "Shure Artists: Hanjin Tan",
1200
+ "nav_title" : "Hanjin Tan"
1201
+ },
1202
+ "path" : "/en/artists/hanjin_tan",
1203
+ "uuid" : "b182d6cd-0d48-481e-8932-8562b1d8b405"
1204
+ }, {
1205
+ "properties" : {
1206
+ "nav_hidden" : true,
1207
+ "title" : "Shure Artists: Hee Hyun Kim",
1208
+ "nav_title" : "Hee Hyun Kim"
1209
+ },
1210
+ "path" : "/en/artists/hee_hyun_kim",
1211
+ "uuid" : "f00ff96e-a136-4025-a548-edf7ee1400ad"
1212
+ }, {
1213
+ "properties" : {
1214
+ "nav_hidden" : true,
1215
+ "title" : "Shure Artists: The Hilltop Hoods",
1216
+ "nav_title" : "The Hilltop Hoods"
1217
+ },
1218
+ "path" : "/en/artists/hilltop_hoods",
1219
+ "uuid" : "3a4afe99-1415-4a7e-aa48-04705c46688a"
1220
+ }, {
1221
+ "properties" : {
1222
+ "nav_hidden" : true,
1223
+ "title" : "Shure Artists: Jim Lee",
1224
+ "nav_title" : "Jim Lee"
1225
+ },
1226
+ "path" : "/en/artists/jim_lee",
1227
+ "uuid" : "f5aefb69-1933-4c6c-b9a8-e47399d212e8"
1228
+ }, {
1229
+ "properties" : {
1230
+ "nav_hidden" : true,
1231
+ "title" : "Shure Artists: Jimmy Barnes"
1232
+ },
1233
+ "path" : "/en/artists/Jimmy_Barnes",
1234
+ "uuid" : "5c65f787-1025-421f-a451-6c1310ddb1ff"
1235
+ }, {
1236
+ "properties" : {
1237
+ "nav_hidden" : true,
1238
+ "title" : "Shure Artists: John Butler Trio"
1239
+ },
1240
+ "path" : "/en/artists/John_Butler_Trio",
1241
+ "uuid" : "54c1fbbe-e3e3-44f0-92bd-9b3070527b8a"
1242
+ }, {
1243
+ "properties" : {
1244
+ "nav_hidden" : true,
1245
+ "title" : "Shure Artists: Kate Miller Heidke"
1246
+ },
1247
+ "path" : "/en/artists/Kate_Miller_Heidke",
1248
+ "uuid" : "d29fa16a-6aa8-4832-b33d-3ed87eb36587"
1249
+ }, {
1250
+ "properties" : {
1251
+ "nav_hidden" : true,
1252
+ "title" : "Shure Artists: Kid Kenobi"
1253
+ },
1254
+ "path" : "/en/artists/Kid_Kenobi",
1255
+ "uuid" : "58289d6f-895d-48c0-8a69-e53f1216c618"
1256
+ }, {
1257
+ "properties" : {
1258
+ "nav_hidden" : true,
1259
+ "title" : "Shure Artists: Talent Development Project"
1260
+ },
1261
+ "path" : "/en/artists/Talent_Development_Project",
1262
+ "uuid" : "9ca18b24-8174-4a84-9f89-dac8e59c5e32"
1263
+ }, {
1264
+ "properties" : {
1265
+ "nav_hidden" : true,
1266
+ "title" : "Shure Artists: Kireek (DJ-HI-C and DJ YASA)",
1267
+ "nav_title" : "Kireek (DJ-HI-C and DJ YASA)"
1268
+ },
1269
+ "path" : "/en/artists/dj_kireek",
1270
+ "uuid" : "37d17da1-8f01-4269-bf57-ac30d5d9c877"
1271
+ }, {
1272
+ "properties" : {
1273
+ "nav_hidden" : true,
1274
+ "title" : "Shure Artists: Hit City Studios "
1275
+ },
1276
+ "path" : "/en/artists/Hit_City_Studios",
1277
+ "uuid" : "59c9f033-202f-4372-acfe-490f24842ab9"
1278
+ }, {
1279
+ "properties" : {
1280
+ "nav_hidden" : true,
1281
+ "title" : "Shure Artists: MC Shureshock"
1282
+ },
1283
+ "path" : "/en/artists/MC_Shureshock",
1284
+ "uuid" : "2606cb9b-2dbc-4d7c-be9a-1f5846be15f3"
1285
+ }, {
1286
+ "properties" : {
1287
+ "nav_hidden" : true,
1288
+ "title" : "Shure Artists: McAlister Kemp",
1289
+ "nav_title" : "McAlister Kemp"
1290
+ },
1291
+ "path" : "/en/artists/McAlister_Kemp",
1292
+ "uuid" : "dfed8301-2ea1-4b7b-a437-013a5523d626"
1293
+ }, {
1294
+ "properties" : {
1295
+ "nav_hidden" : true,
1296
+ "title" : "Shure Artists: Powder Finger"
1297
+ },
1298
+ "path" : "/en/artists/Powder_Finger",
1299
+ "uuid" : "87f85b99-165b-4040-a726-f49989ed49e5"
1300
+ }, {
1301
+ "properties" : {
1302
+ "nav_hidden" : true,
1303
+ "title" : "Shure Artists: Sam Lee",
1304
+ "nav_title" : "Sam Lee"
1305
+ },
1306
+ "path" : "/en/artists/sam_lee",
1307
+ "uuid" : "b45d2d0a-6ca4-447c-888c-b28578463142"
1308
+ }, {
1309
+ "properties" : {
1310
+ "nav_hidden" : true,
1311
+ "title" : "Shure Artists: Sneaky Sound System"
1312
+ },
1313
+ "path" : "/en/artists/Sneaky_Sound_System",
1314
+ "uuid" : "391be7c5-3505-47a4-9935-9c438e000ec8"
1315
+ }, {
1316
+ "properties" : {
1317
+ "nav_hidden" : true,
1318
+ "title" : "Shure Artists: Tainted",
1319
+ "nav_title" : "Tainted"
1320
+ },
1321
+ "path" : "/en/artists/tainted",
1322
+ "uuid" : "8983a629-72f2-4fa1-8684-0fbe7d50f88f"
1323
+ }, {
1324
+ "properties" : {
1325
+ "nav_hidden" : true,
1326
+ "title" : "Shure Artists: The Butterfly Effect"
1327
+ },
1328
+ "path" : "/en/artists/The_Butterfly_Effect",
1329
+ "uuid" : "b4766db3-3dd8-41c1-be1b-d165b78dbd97"
1330
+ }, {
1331
+ "properties" : {
1332
+ "nav_hidden" : true,
1333
+ "title" : "Shure Artists: The Cat Empire"
1334
+ },
1335
+ "path" : "/en/artists/The_Cat_Empire",
1336
+ "uuid" : "9b8fcfff-9b29-4680-ae9c-74ba33b02239"
1337
+ }, {
1338
+ "properties" : {
1339
+ "nav_hidden" : true,
1340
+ "title" : "Shure Artists: The Herd"
1341
+ },
1342
+ "path" : "/en/artists/The_Herd",
1343
+ "uuid" : "5fc3a437-63fe-4685-bd68-37da32119662"
1344
+ }, {
1345
+ "properties" : {
1346
+ "nav_hidden" : true,
1347
+ "title" : "Shure Artists: The Presets",
1348
+ "nav_title" : "The Presets"
1349
+ },
1350
+ "path" : "/en/artists/the_presets",
1351
+ "uuid" : "106d0d2a-d703-4c9d-b554-78646423e57f"
1352
+ }, {
1353
+ "properties" : {
1354
+ "nav_hidden" : true,
1355
+ "title" : "Shure Artists: Tiki Taane",
1356
+ "nav_title" : "Tiki Taane"
1357
+ },
1358
+ "path" : "/en/artists/tiki_taane",
1359
+ "uuid" : "e5ebae2a-4541-4e11-a076-09caa2199893"
1360
+ }, {
1361
+ "properties" : {
1362
+ "nav_hidden" : true,
1363
+ "title" : "Shure Artists: Troy Cassar Daley"
1364
+ },
1365
+ "path" : "/en/artists/Troy_Cassar_Daley",
1366
+ "uuid" : "5ac294a3-b9de-429f-85bb-793c921d3b75"
1367
+ }, {
1368
+ "properties" : {
1369
+ "nav_hidden" : true,
1370
+ "title" : "Shure Artists: Unicorn",
1371
+ "nav_title" : "Unicorn"
1372
+ },
1373
+ "path" : "/en/artists/unicorn",
1374
+ "uuid" : "24a35855-67bf-4ba3-9881-f6eff3c9b198"
1375
+ }, {
1376
+ "properties" : {
1377
+ "nav_hidden" : true,
1378
+ "title" : "Shure Artists: Urthboy"
1379
+ },
1380
+ "path" : "/en/artists/Urthboy",
1381
+ "uuid" : "1b2e7c3f-b720-4c84-bd31-65a7e580108e"
1382
+ }, {
1383
+ "properties" : {
1384
+ "nav_hidden" : true,
1385
+ "title" : "Artist Relations Overview",
1386
+ "nav_title" : "Artist Relations Overview"
1387
+ },
1388
+ "path" : "/en/artists/artist-engineering_ralation_spots",
1389
+ "uuid" : "c0272065-aa4c-492a-a7b1-9031a66b99a0"
1390
+ }, {
1391
+ "properties" : {
1392
+ "nav_hidden" : true
1393
+ },
1394
+ "children" : [ {
1395
+ "properties" : {
1396
+ "title" : "Shure Drummers: Dave Weckl",
1397
+ "nav_title" : "Dave Weckl"
1398
+ },
1399
+ "path" : "/en/artists/drummers/dave_weckl",
1400
+ "uuid" : "b6c7262e-991e-4b1c-b3a8-eba926a0199c"
1401
+ }, {
1402
+ "properties" : {
1403
+ "title" : "Shure Drummers: Simon Phillips",
1404
+ "nav_title" : "Simon Phillips"
1405
+ },
1406
+ "path" : "/en/artists/drummers/simon_phillips",
1407
+ "uuid" : "ddcf8f7a-5482-497d-a988-6b30355fe980"
1408
+ }, {
1409
+ "properties" : {
1410
+ "title" : "Shure Drummers: Jim Riley",
1411
+ "nav_title" : "Jim Riley"
1412
+ },
1413
+ "path" : "/en/artists/drummers/jim_riley",
1414
+ "uuid" : "562beeb8-7631-4f06-b367-8cccf30732c7"
1415
+ }, {
1416
+ "properties" : {
1417
+ "title" : "Shure Drummers: Kenny Aronoff",
1418
+ "nav_title" : "Kenny Aronoff"
1419
+ },
1420
+ "path" : "/en/artists/drummers/kenny_aronoff",
1421
+ "uuid" : "736380a2-1182-463f-b661-13990c532c53"
1422
+ } ],
1423
+ "path" : "/en/artists/drummers",
1424
+ "uuid" : "86987f0e-5cdd-4057-8799-90ff4e5b4168"
1425
+ }, {
1426
+ "properties" : {
1427
+ "nav_hidden" : true
1428
+ },
1429
+ "children" : [ {
1430
+ "properties" : {
1431
+ "title" : "Shure Artists: Henry Rollins",
1432
+ "nav_title" : "Henry Rollins"
1433
+ },
1434
+ "path" : "/en/artists/bands/henry_rollins",
1435
+ "uuid" : "e65dc256-0163-4782-a33e-c738e2254238"
1436
+ }, {
1437
+ "properties" : {
1438
+ "title" : "Shure Artists: Mastodon",
1439
+ "nav_title" : "Mastodon"
1440
+ },
1441
+ "path" : "/en/artists/bands/mastodon",
1442
+ "uuid" : "8183a973-815f-4f40-8ac9-d5d97bcda553"
1443
+ }, {
1444
+ "properties" : {
1445
+ "title" : "Phoenix",
1446
+ "nav_title" : "Phoenix"
1447
+ },
1448
+ "path" : "/en/artists/bands/phoenix",
1449
+ "uuid" : "795e615a-cdb4-4ca9-a038-f495301e06af"
1450
+ }, {
1451
+ "properties" : {
1452
+ "title" : "Estelle",
1453
+ "nav_title" : "Estelle"
1454
+ },
1455
+ "path" : "/en/artists/bands/estelle",
1456
+ "uuid" : "cf062777-f13f-4810-93e3-58abbd5c3866"
1457
+ }, {
1458
+ "properties" : {
1459
+ "title" : "Shure Artists: The Who",
1460
+ "nav_title" : "The Who "
1461
+ },
1462
+ "path" : "/en/artists/bands/the_who",
1463
+ "uuid" : "f10b5318-cfe1-4e58-a5f3-53ab99e279aa"
1464
+ }, {
1465
+ "properties" : {
1466
+ "title" : "Shure Artists: Common",
1467
+ "nav_title" : "Common"
1468
+ },
1469
+ "path" : "/en/artists/bands/common",
1470
+ "uuid" : "3176888e-2cab-4901-b90c-c9d388783bff"
1471
+ }, {
1472
+ "properties" : {
1473
+ "title" : "Shure Artists: The Presets",
1474
+ "nav_title" : "The Presets"
1475
+ },
1476
+ "path" : "/en/artists/bands/The-Presets",
1477
+ "uuid" : "d125edc2-c658-4283-9132-68afbc8f5190"
1478
+ }, {
1479
+ "properties" : {
1480
+ "title" : "Shure Artists: Doves",
1481
+ "nav_title" : "Doves"
1482
+ },
1483
+ "path" : "/en/artists/bands/the-doves",
1484
+ "uuid" : "f2197825-6022-44d4-8f34-6996b22e5280"
1485
+ }, {
1486
+ "properties" : {
1487
+ "title" : "Shure Artists: White Belt Yellow Tag",
1488
+ "nav_title" : "White Belt Yellow Tag"
1489
+ },
1490
+ "path" : "/en/artists/bands/white-belt-yello-tag",
1491
+ "uuid" : "d0c119f9-1748-4baa-a535-0ae5d0718964"
1492
+ }, {
1493
+ "properties" : {
1494
+ "title" : "Shure Artists: Hot Chip",
1495
+ "nav_title" : "Hot Chip"
1496
+ },
1497
+ "path" : "/en/artists/bands/hot-chip",
1498
+ "uuid" : "58f189b3-fee8-4be3-ba4d-e24d0eb9c490"
1499
+ }, {
1500
+ "properties" : {
1501
+ "title" : "Shure Artists: The Polyphonic Spree",
1502
+ "nav_title" : "The Polyphonic Spree"
1503
+ },
1504
+ "path" : "/en/artists/bands/the-polyphonic-spree",
1505
+ "uuid" : "87f549d9-9e94-42b2-a421-c4c622866232"
1506
+ }, {
1507
+ "properties" : {
1508
+ "title" : "The 69 Eyes",
1509
+ "nav_title" : "The 69 Eyes"
1510
+ },
1511
+ "path" : "/en/artists/bands/69_eyes",
1512
+ "uuid" : "026837c4-cbcb-474e-bebc-e77b3b0f311a"
1513
+ }, {
1514
+ "properties" : {
1515
+ "title" : "Serj Tankian",
1516
+ "nav_title" : "Serj Tankian"
1517
+ },
1518
+ "path" : "/en/artists/bands/serj_tankian",
1519
+ "uuid" : "ea282266-6db2-49e7-820f-f3164b3af816"
1520
+ }, {
1521
+ "properties" : {
1522
+ "title" : "Shure Artists: Mos Def",
1523
+ "nav_title" : "Mos Def"
1524
+ },
1525
+ "path" : "/en/artists/bands/mos-def",
1526
+ "uuid" : "a698cb10-b858-4cd3-99b0-c42fead9f9f4"
1527
+ }, {
1528
+ "properties" : {
1529
+ "title" : "Shure Artists: Snow Patrol",
1530
+ "nav_title" : "Snow Patrol"
1531
+ },
1532
+ "path" : "/en/artists/bands/snow_patrol",
1533
+ "uuid" : "bb66119b-4bdc-48fb-a067-13cc67619926"
1534
+ }, {
1535
+ "properties" : {
1536
+ "title" : "Shure Artists: Jason Mraz",
1537
+ "nav_title" : "Jason Mraz"
1538
+ },
1539
+ "path" : "/en/artists/bands/jason_mraz",
1540
+ "uuid" : "7530da63-ed51-47eb-bf5a-57e3c5481b0d"
1541
+ }, {
1542
+ "properties" : {
1543
+ "title" : "Shure Artists: Elbow",
1544
+ "nav_title" : "Elbow"
1545
+ },
1546
+ "path" : "/en/artists/bands/elbow",
1547
+ "uuid" : "b68183ce-1784-4e15-9ebf-ad846463103c"
1548
+ }, {
1549
+ "properties" : {
1550
+ "title" : "Shure Artists: Kasabian",
1551
+ "nav_title" : "Kasabian"
1552
+ },
1553
+ "path" : "/en/artists/bands/Kasabian",
1554
+ "uuid" : "f973326a-50cd-4240-9832-0e7532393b4c"
1555
+ } ],
1556
+ "path" : "/en/artists/bands",
1557
+ "uuid" : "7af17ef8-95ca-4159-b34d-614fc9316610"
1558
+ }, {
1559
+ "properties" : {
1560
+ "nav_hidden" : true,
1561
+ "title" : "Shure Artists: Valen Hsu",
1562
+ "nav_title" : "Valen Hsu"
1563
+ },
1564
+ "path" : "/en/artists/valen_hsu",
1565
+ "uuid" : "27331cb8-0df5-4054-9a13-cc24fa0ebf55"
1566
+ }, {
1567
+ "properties" : {
1568
+ "nav_hidden" : true,
1569
+ "title" : "Shure Artists: Fiona Fung",
1570
+ "nav_title" : "fiona_fung"
1571
+ },
1572
+ "path" : "/en/artists/fiona_fung",
1573
+ "uuid" : "4c0cf7ed-6d56-47db-8a07-cfb692de0044"
1574
+ }, {
1575
+ "properties" : {
1576
+ "nav_hidden" : true,
1577
+ "title" : "Shure Artists: Dadawa",
1578
+ "nav_title" : "dadawa"
1579
+ },
1580
+ "path" : "/en/artists/dadawa",
1581
+ "uuid" : "72fe31b4-048e-48db-9bc0-2db709198c64"
1582
+ }, {
1583
+ "properties" : {
1584
+ "nav_hidden" : true,
1585
+ "title" : "Shure Artists: Super VC",
1586
+ "nav_title" : "Super VC"
1587
+ },
1588
+ "path" : "/en/artists/super_vc",
1589
+ "uuid" : "2712955b-ce17-44c2-99c2-34da6cff656e"
1590
+ }, {
1591
+ "properties" : {
1592
+ "nav_hidden" : true,
1593
+ "title" : "Shure Artists: Hoff Dylan",
1594
+ "nav_title" : "Hoff Dylan"
1595
+ },
1596
+ "path" : "/en/artists/Hoff_Dylan",
1597
+ "uuid" : "6196324e-6dc1-431e-92dd-77e90d6eedce"
1598
+ }, {
1599
+ "properties" : {
1600
+ "nav_hidden" : true,
1601
+ "title" : "Shure Artists: Seung Chul Lee",
1602
+ "nav_title" : "Seung Chul Lee"
1603
+ },
1604
+ "path" : "/en/artists/seung_chul_lee",
1605
+ "uuid" : "f5032c30-dd1c-4b77-90c7-ee7452374e1a"
1606
+ }, {
1607
+ "properties" : {
1608
+ "nav_hidden" : true,
1609
+ "title" : "Shure Artists: Lee Juck",
1610
+ "nav_title" : "Lee Juck"
1611
+ },
1612
+ "path" : "/en/artists/lee_juck",
1613
+ "uuid" : "030f6bad-8ded-499f-b373-475df6bb0782"
1614
+ }, {
1615
+ "properties" : {
1616
+ "nav_hidden" : true,
1617
+ "title" : "Shure Artists: Shaan",
1618
+ "nav_title" : "Shaan"
1619
+ },
1620
+ "path" : "/en/artists/shaan",
1621
+ "uuid" : "e0a6e252-57f3-442f-9806-3d384ccc1f28"
1622
+ }, {
1623
+ "properties" : {
1624
+ "nav_hidden" : true,
1625
+ "title" : "Shure Artists: Luke Dickens",
1626
+ "nav_title" : "Luke Dickens"
1627
+ },
1628
+ "path" : "/en/artists/luke_dickens",
1629
+ "uuid" : "654f3952-c281-44cd-8052-10c857dafe10"
1630
+ }, {
1631
+ "properties" : {
1632
+ "nav_hidden" : true,
1633
+ "title" : "Shure Artists: Guy Sebastian",
1634
+ "nav_title" : "Guy Sebastian"
1635
+ },
1636
+ "path" : "/en/artists/guy_sebastian",
1637
+ "uuid" : "a76c0073-b25e-400c-bec2-8067b557df9d"
1638
+ }, {
1639
+ "properties" : {
1640
+ "nav_hidden" : true,
1641
+ "title" : "Shure Artists: ToR+",
1642
+ "nav_title" : "ToR+"
1643
+ },
1644
+ "path" : "/en/artists/tor",
1645
+ "uuid" : "e2d47c74-5f3c-48da-bc41-a6acd9b2462f"
1646
+ }, {
1647
+ "properties" : {
1648
+ "nav_hidden" : true,
1649
+ "title" : "Shure Artists: Parikrama",
1650
+ "nav_title" : "Parikrama"
1651
+ },
1652
+ "path" : "/en/artists/parikrama",
1653
+ "uuid" : "1c18aaab-291f-4b2f-87af-46c2e1df1052"
1654
+ }, {
1655
+ "properties" : {
1656
+ "nav_hidden" : true,
1657
+ "title" : "Shure Artists: TKB",
1658
+ "nav_title" : "TKB"
1659
+ },
1660
+ "path" : "/en/artists/tkb",
1661
+ "uuid" : "0cecd9dc-79c6-45b7-ad49-73dba743893a"
1662
+ }, {
1663
+ "properties" : {
1664
+ "nav_hidden" : true,
1665
+ "title" : "Shure Artists: Marcus Powell of All My Brothers",
1666
+ "nav_title" : "AMB"
1667
+ },
1668
+ "path" : "/en/artists/all_my_brothers",
1669
+ "uuid" : "38a00c41-3753-4f3b-a3c4-ad4ee87d47ad"
1670
+ } ],
1671
+ "path" : "/en/artists",
1672
+ "uuid" : "90b984dd-1849-4f7f-9503-996722feca1d"
1673
+ }, {
1674
+ "properties" : {
1675
+ "title" : "Project Showcases",
1676
+ "nav_title" : "Project Showcases"
1677
+ },
1678
+ "children" : [ {
1679
+ "properties" : {
1680
+ "nav_hidden" : true,
1681
+ "title" : "showcase_template",
1682
+ "nav_title" : "Shanghai Century Square"
1683
+ },
1684
+ "path" : "/en/project_showcase/showcase_template",
1685
+ "uuid" : "3760b059-3e1e-440e-9dfb-5d34719706e6"
1686
+ }, {
1687
+ "properties" : {
1688
+ "nav_hidden" : true,
1689
+ "title" : "The Happy Community Church (Korea)",
1690
+ "nav_title" : "The Happy Community Church"
1691
+ },
1692
+ "path" : "/en/project_showcase/Happy_Community_Church_Korea",
1693
+ "uuid" : "692bd26c-b9b6-47be-8347-f62c5d9ea887"
1694
+ }, {
1695
+ "properties" : {
1696
+ "nav_hidden" : true,
1697
+ "title" : "GwangMyeong Full Gospel Church (Korea)",
1698
+ "nav_title" : "GwangMyeong Full Gospel Church"
1699
+ },
1700
+ "path" : "/en/project_showcase/GwangMyeong_Full_Gospel_Church_Korea",
1701
+ "uuid" : "a8595ab5-874f-4e6e-8afa-bb00b39b754c"
1702
+ }, {
1703
+ "properties" : {
1704
+ "nav_hidden" : true,
1705
+ "title" : "Yohnhee Methodist Church",
1706
+ "nav_title" : "Yohnhee Methodist Church"
1707
+ },
1708
+ "path" : "/en/project_showcase/Yohnhee_Methodist_Church_korea",
1709
+ "uuid" : "fffdd0e1-b8f5-42d7-9aaa-8034187b1d28"
1710
+ }, {
1711
+ "properties" : {
1712
+ "nav_hidden" : true,
1713
+ "title" : "Sehan Church (Korea)",
1714
+ "nav_title" : "Sehan Church"
1715
+ },
1716
+ "path" : "/en/project_showcase/Sehan_Church_Korea",
1717
+ "uuid" : "59469311-638d-451b-ba87-4b14b20dce3d"
1718
+ }, {
1719
+ "properties" : {
1720
+ "nav_hidden" : true,
1721
+ "title" : "Whitireia in New Zealand",
1722
+ "nav_title" : "Whitireia"
1723
+ },
1724
+ "path" : "/en/project_showcase/Whitireia-in-New-Zealand",
1725
+ "uuid" : "53b02ebf-0adb-4155-9f09-54310573c537"
1726
+ }, {
1727
+ "properties" : {
1728
+ "nav_hidden" : true,
1729
+ "title" : "Shanghai Century Square",
1730
+ "nav_title" : "Shanghai Century Square"
1731
+ },
1732
+ "path" : "/en/project_showcase/Shanghai-Century-Square",
1733
+ "uuid" : "cc55eb1c-a3ae-413e-b03a-b95bbf0b99d0"
1734
+ }, {
1735
+ "properties" : {
1736
+ "nav_hidden" : true,
1737
+ "title" : "Shanghai Theatre Academy",
1738
+ "nav_title" : "Shanghai Theatre Academy"
1739
+ },
1740
+ "path" : "/en/project_showcase/Shanghai-Theatre-Academy",
1741
+ "uuid" : "f68fa379-25e4-421a-802a-c72407c3cbc9"
1742
+ }, {
1743
+ "properties" : {
1744
+ "nav_hidden" : true,
1745
+ "title" : "TC Furlong Unifies Shure RF Mics With IFB for WBBM-TV in Chicago",
1746
+ "nav_title" : "WBBM-TV"
1747
+ },
1748
+ "path" : "/en/project_showcase/WBBM_TV-2_Chicago",
1749
+ "uuid" : "464ba3e8-d361-4d62-a87e-9a678535777c"
1750
+ }, {
1751
+ "properties" : {
1752
+ "nav_hidden" : true,
1753
+ "title" : "Family Mart",
1754
+ "nav_title" : "Family Mart"
1755
+ },
1756
+ "path" : "/en/project_showcase/Family-Mart",
1757
+ "uuid" : "8ace8e78-75b3-4dd9-b659-6901decc5c1d"
1758
+ }, {
1759
+ "properties" : {
1760
+ "nav_hidden" : true,
1761
+ "title" : "GMA-7",
1762
+ "nav_title" : "GMA-7"
1763
+ },
1764
+ "path" : "/en/project_showcase/GMA-7",
1765
+ "uuid" : "8992547b-4f02-42e7-95b4-a9a54fcef37e"
1766
+ }, {
1767
+ "properties" : {
1768
+ "nav_hidden" : true,
1769
+ "title" : "Nissan Motor Company Limited",
1770
+ "nav_title" : "Nissan Motor Company Limited"
1771
+ },
1772
+ "path" : "/en/project_showcase/Nissan-Motor-Company-Limited",
1773
+ "uuid" : "64257ecb-0e38-4367-abcb-9949d080aedc"
1774
+ }, {
1775
+ "properties" : {
1776
+ "nav_hidden" : true,
1777
+ "title" : "The Japanese police",
1778
+ "nav_title" : "The Japanese police"
1779
+ },
1780
+ "path" : "/en/project_showcase/The-Japanese-police",
1781
+ "uuid" : "a461c4ef-a854-41bc-85e8-4398b94c7ab0"
1782
+ }, {
1783
+ "properties" : {
1784
+ "nav_hidden" : true,
1785
+ "title" : "Maria Kusuma Karmel",
1786
+ "nav_title" : "Maria Kusuma Karmel"
1787
+ },
1788
+ "path" : "/en/project_showcase/Maria-Kusuma-Karmel",
1789
+ "uuid" : "41d17ac5-e8b3-4409-adda-5c4c69f60f80"
1790
+ }, {
1791
+ "properties" : {
1792
+ "nav_hidden" : true,
1793
+ "title" : "Inje Hanulnaerin Center",
1794
+ "nav_title" : "Inje Hanulnaerin Center"
1795
+ },
1796
+ "path" : "/en/project_showcase/Inje-Hanulnaerin-Center",
1797
+ "uuid" : "be8664ab-28db-4e78-9f45-2197f31c0f34"
1798
+ }, {
1799
+ "properties" : {
1800
+ "nav_hidden" : true,
1801
+ "title" : "Asiana Airlines",
1802
+ "nav_title" : "Asiana Airlines"
1803
+ },
1804
+ "path" : "/en/project_showcase/Asiana-Airlines",
1805
+ "uuid" : "459cde36-3d8b-43f8-9353-cee18f62caa4"
1806
+ }, {
1807
+ "properties" : {
1808
+ "nav_hidden" : true,
1809
+ "title" : "SERIM TTC",
1810
+ "nav_title" : "SERIM TTC"
1811
+ },
1812
+ "path" : "/en/project_showcase/SERIM-TTC",
1813
+ "uuid" : "aa23f6c7-94d1-41f1-aea9-6d516241b56a"
1814
+ }, {
1815
+ "properties" : {
1816
+ "nav_hidden" : true,
1817
+ "title" : "Korea Exchange",
1818
+ "nav_title" : "Korea Exchange"
1819
+ },
1820
+ "path" : "/en/project_showcase/Korea-Exchange",
1821
+ "uuid" : "ff27ad9d-ccac-471f-a8e7-7788fcec27f7"
1822
+ }, {
1823
+ "properties" : {
1824
+ "nav_hidden" : true,
1825
+ "title" : "Hyundai Steel",
1826
+ "nav_title" : "Hyundai Stee"
1827
+ },
1828
+ "path" : "/en/project_showcase/Hyundai-Stee",
1829
+ "uuid" : "5176a3a2-e691-43a0-a8aa-684ba16b18ac"
1830
+ }, {
1831
+ "properties" : {
1832
+ "nav_hidden" : true,
1833
+ "title" : "Singapore American School",
1834
+ "nav_title" : "Singapore American School"
1835
+ },
1836
+ "path" : "/en/project_showcase/Singapore-American-School",
1837
+ "uuid" : "44d9a1a7-c99f-448b-be8a-f541e8991262"
1838
+ }, {
1839
+ "properties" : {
1840
+ "nav_hidden" : true,
1841
+ "title" : "Exposition in Shanghai",
1842
+ "nav_title" : "Exposition in Shanghai"
1843
+ },
1844
+ "path" : "/en/project_showcase/Expo-2010-Shanghai",
1845
+ "uuid" : "cd98cfd4-da96-4fb5-8be1-be477664e51c"
1846
+ }, {
1847
+ "properties" : {
1848
+ "nav_hidden" : true,
1849
+ "title" : "Jilin Television",
1850
+ "nav_title" : "Jilin Television"
1851
+ },
1852
+ "path" : "/en/project_showcase/Jilin-Television",
1853
+ "uuid" : "c1e9d86f-8119-4551-a034-d607dc0aa860"
1854
+ }, {
1855
+ "properties" : {
1856
+ "nav_hidden" : true,
1857
+ "title" : "Michael Waters",
1858
+ "nav_title" : "Michael Waters"
1859
+ },
1860
+ "path" : "/en/project_showcase/Michael-Waters",
1861
+ "uuid" : "f8441720-5e75-4ae0-ba30-663b52cb4bf9"
1862
+ }, {
1863
+ "properties" : {
1864
+ "nav_hidden" : true,
1865
+ "title" : "National Institute of Dramatic Art in Australia",
1866
+ "nav_title" : "NIDA"
1867
+ },
1868
+ "path" : "/en/project_showcase/National-Institute-of-Dramatic-Art",
1869
+ "uuid" : "ae6f1947-7a41-42bb-afc1-6893541482e3"
1870
+ }, {
1871
+ "properties" : {
1872
+ "nav_hidden" : true,
1873
+ "title" : "Bruhath Bangalore Mahanagara Palike in India",
1874
+ "nav_title" : "bbmp"
1875
+ },
1876
+ "path" : "/en/project_showcase/bbmp",
1877
+ "uuid" : "b3beb3bb-abab-48d0-aae0-ca82f6e869d5"
1878
+ }, {
1879
+ "properties" : {
1880
+ "nav_hidden" : true,
1881
+ "title" : "Singapore Institute of Management",
1882
+ "nav_title" : "sim"
1883
+ },
1884
+ "path" : "/en/project_showcase/singapore-institute-of-management",
1885
+ "uuid" : "9c981efe-3a1b-4d1d-b5e5-b8135cfd851c"
1886
+ }, {
1887
+ "properties" : {
1888
+ "nav_hidden" : true,
1889
+ "title" : "University of Southern California",
1890
+ "nav_title" : "usc"
1891
+ },
1892
+ "path" : "/en/project_showcase/usc",
1893
+ "uuid" : "2c38f115-d6e4-4527-acfc-2783f2c6b45c"
1894
+ }, {
1895
+ "properties" : {
1896
+ "nav_hidden" : true,
1897
+ "title" : "Shure upgrades AV for Corporate Boardroom"
1898
+ },
1899
+ "path" : "/en/project_showcase/corp-boardroom",
1900
+ "uuid" : "e5f61187-c9b9-4cba-a8ea-a7c329c7be46"
1901
+ }, {
1902
+ "properties" : {
1903
+ "nav_hidden" : true,
1904
+ "title" : "Illigals Hotel and Club"
1905
+ },
1906
+ "path" : "/en/project_showcase/illigals",
1907
+ "uuid" : "082e51b7-5c71-47a7-b1c5-db7c816d361f"
1908
+ }, {
1909
+ "properties" : {
1910
+ "nav_hidden" : true,
1911
+ "title" : "Hit City Studios"
1912
+ },
1913
+ "path" : "/en/project_showcase/Hit_City_Studios",
1914
+ "uuid" : "07f58ecd-c0b2-4c2f-af19-45b5b5daf2f9"
1915
+ }, {
1916
+ "properties" : {
1917
+ "nav_hidden" : true,
1918
+ "title" : "TIANJIN TV STATION IN CHINA"
1919
+ },
1920
+ "path" : "/en/project_showcase/China-Tianjin-TV-opts-for-Shure",
1921
+ "uuid" : "a799a68c-ca98-4eb7-af13-53b845dbba0f"
1922
+ }, {
1923
+ "properties" : {
1924
+ "nav_hidden" : true,
1925
+ "title" : "Ikeda Hall equipped with Shure UHF-R wireless systems"
1926
+ },
1927
+ "path" : "/en/project_showcase/Ikeda-Hall-equipped-with-Shure-UHF-R-wireless-systems",
1928
+ "uuid" : "c6874ac4-2afe-4b27-9850-a3b81c7a1b22"
1929
+ }, {
1930
+ "properties" : {
1931
+ "nav_hidden" : true,
1932
+ "title" : "SHURE AXIENT WIRELESS TACKLES REFEREE MICROPHONES AT SUN LIFE STADIUM"
1933
+ },
1934
+ "path" : "/en/project_showcase/SHURE-AXIENT-WIRELESS-TACKLES-REFEREE-MICROPHONES-AT-SUN-LIFE-STADIUM",
1935
+ "uuid" : "efd38fcf-4139-41cb-96cb-70ab358ce6cb"
1936
+ }, {
1937
+ "properties" : {
1938
+ "nav_hidden" : true,
1939
+ "title" : "SHURE AXIENT WIRELESS EXCELS AT LIGHTS FESTIVAL FOR ABC7 CHICAGO"
1940
+ },
1941
+ "path" : "/en/project_showcase/SHURE-AXIENT-WIRELESS-EXCELS-AT-LIGHTS-FESTIVAL-FOR-ABC7-CHICAGO",
1942
+ "uuid" : "1ef62977-0c5f-4239-a1dc-48d418afc191"
1943
+ }, {
1944
+ "properties" : {
1945
+ "nav_hidden" : true,
1946
+ "title" : "SOUTHEAST ASIAN GAMES"
1947
+ },
1948
+ "path" : "/en/project_showcase/SOUTHEAST-ASIAN-GAMES",
1949
+ "uuid" : "021a6a4e-5a06-4775-9813-de4393bcd3ab"
1950
+ }, {
1951
+ "properties" : {
1952
+ "nav_hidden" : true,
1953
+ "title" : "TELEVISA ADOPTS SHURE AXIENT WIRELESS IN CHAPULTEPEC STUDIOS"
1954
+ },
1955
+ "path" : "/en/project_showcase/TELEVISA-ADOPTS-SHURE-AXIENT-WIRELESS-IN-CHAPULTEPEC-STUDIOS",
1956
+ "uuid" : "be4f4d48-4f7e-4a46-a566-f33ec41432a5"
1957
+ }, {
1958
+ "properties" : {
1959
+ "nav_hidden" : true,
1960
+ "title" : "Point HiFi Sono N°1 equips CAFAT with Shure"
1961
+ },
1962
+ "path" : "/en/project_showcase/Point-HiFi-Sono-N1-equips-CAFAT-with-Shure",
1963
+ "uuid" : "37c09967-33f3-47f8-a0bb-f5bc966a0acb"
1964
+ }, {
1965
+ "properties" : {
1966
+ "nav_hidden" : true,
1967
+ "title" : "E&E equips Marina Bay Sands with Shure"
1968
+ },
1969
+ "path" : "/en/project_showcase/E-E-equips-Marina-Bay-Sands-with-Shure",
1970
+ "uuid" : "2e9c22de-1457-4b27-b266-fe88be99e107"
1971
+ }, {
1972
+ "properties" : {
1973
+ "nav_hidden" : true,
1974
+ "title" : "KENNY CHESNEY MOVES TO SHURE AXIENT WITH KSM9/HS FOR STADIUM TOUR"
1975
+ },
1976
+ "path" : "/en/project_showcase/KENNY-CHESNEY-MOVES-TO-SHURE-AXIENT-WITH-KSM9-HS-FOR-STADIUM-TOUR",
1977
+ "uuid" : "ede18c1e-bb68-41d7-9fc5-5453e363be27"
1978
+ }, {
1979
+ "properties" : {
1980
+ "nav_hidden" : true,
1981
+ "title" : "Singapore National Day Parade"
1982
+ },
1983
+ "path" : "/en/project_showcase/Singapore-National-Day-Parade",
1984
+ "uuid" : "7664ad5e-e34a-41fd-8e8e-5d3ca56a4491"
1985
+ }, {
1986
+ "properties" : {
1987
+ "nav_hidden" : true,
1988
+ "title" : "Goshen Electronics and Shure Asia sponsor SSR Jakarta school"
1989
+ },
1990
+ "path" : "/en/project_showcase/Goshen-Electronics-and-Shure-Asia-sponsor-SSR-Jakarta-school",
1991
+ "uuid" : "a4fbafb1-6f6e-458b-b509-32160ca7232b"
1992
+ }, {
1993
+ "properties" : {
1994
+ "nav_hidden" : true,
1995
+ "title" : "SHURE AXIENT® WIRELESS TAKES THE STAGE AT THE 46th MONTREUX JAZZ FESTIVAL"
1996
+ },
1997
+ "path" : "/en/project_showcase/SHURE-AXIENT-WIRELESS-TAKES-THE-STAGE-46th-MONTREUX-JAZZ-FESTIVAL",
1998
+ "uuid" : "24327b96-c313-425b-a6fd-a7051573f2b3"
1999
+ }, {
2000
+ "properties" : {
2001
+ "nav_hidden" : true,
2002
+ "title" : "SHURE PSM 900 HELPS POWER NINTENDO ’S ‘THE LEGEND OF ZELDA™: SYMPHONY OF THE GODDESSES’ ORCHESTRA TOUR"
2003
+ },
2004
+ "path" : "/en/project_showcase/SHURE-PSM900-HELPS-POWER-NINTENDOS-THE-LEGEND-OF-ZELDA",
2005
+ "uuid" : "0bbf1384-0b4b-466f-aa76-20e88aed29f7"
2006
+ }, {
2007
+ "properties" : {
2008
+ "nav_hidden" : true,
2009
+ "title" : "SHURE AXIENT® RAISES THE CALGARY STAMPEDE TO NEW LEVELS OF EXCELLENCE "
2010
+ },
2011
+ "path" : "/en/project_showcase/SHURE-AXIENT-RAISES-THE-CALGARY-STAMPEDE-TO-NEW-LEVELS-OF-EXCELLENCE",
2012
+ "uuid" : "0337be54-22b5-42e6-b1c7-f9cdb5e3580d"
2013
+ }, {
2014
+ "properties" : {
2015
+ "nav_hidden" : true,
2016
+ "title" : "TAMING THE WILD, WILD WEST OF WIRELESS AT THE 2012 DETROIT AUTO SHOW"
2017
+ },
2018
+ "path" : "/en/project_showcase/TAMING-THE-WILD,-WILD-WEST-OF-WIRELESS-AT-THE-2012-DETROIT-AUTO-SHOW",
2019
+ "uuid" : "77dacc2a-23f2-43f2-878a-4d1b8ba28955"
2020
+ }, {
2021
+ "properties" : {
2022
+ "nav_hidden" : true,
2023
+ "title" : "SHURE WIRELESS ANSWERS CALL FROM BRUCE SPRINGSTEEN’S WRECKING BALL TOUR"
2024
+ },
2025
+ "path" : "/en/project_showcase/SHURE-WIRELESS-ANSWERS-CALL-FROM-BRUCE-SPRINGSTEENS-WRECKING-BALL-TOUR",
2026
+ "uuid" : "dd462b0f-7c87-4442-bd01-b73d838c2283"
2027
+ }, {
2028
+ "properties" : {
2029
+ "nav_hidden" : true,
2030
+ "title" : "E&E brings Shure to The Drama Centre"
2031
+ },
2032
+ "path" : "/en/project_showcase/E-E-brings-Shure-to-The-Drama-Centre",
2033
+ "uuid" : "29109752-93f1-42e2-91a5-1d98c3ba1fb5"
2034
+ }, {
2035
+ "properties" : {
2036
+ "nav_hidden" : true,
2037
+ "title" : "SHURE WIRELESS ANCHORS OPENING AND CLOSING CEREMONIES IN LONDON"
2038
+ },
2039
+ "path" : "/en/project_showcase/SHURE-WIRELESS-ANCHORS-OPENING-AND-CLOSING-CEREMONIES-IN-LONDON",
2040
+ "uuid" : "a59db196-e5ac-4498-a024-cc73334f5cf8"
2041
+ }, {
2042
+ "properties" : {
2043
+ "nav_hidden" : true,
2044
+ "title" : "SHURE WIRELESS SYSTEMS RULE “COUNTRY MUSIC’S BIGGEST NIGHT”"
2045
+ },
2046
+ "path" : "/en/project_showcase/SHURE-WIRELESS-SYSTEMS-RULE-COUNTRY-MUSICS-BIGGEST-NIGHT",
2047
+ "uuid" : "e3f9ca11-3cb1-4dd1-9e6a-efd3550cc4fd"
2048
+ }, {
2049
+ "properties" : {
2050
+ "nav_hidden" : true,
2051
+ "title" : "THE CRACK OF THE BAT – BROUGHT TO YOU BY SHURE"
2052
+ },
2053
+ "path" : "/en/project_showcase/THE-CRACK-OF-THE-BAT-BROUGHT-TO-YOU-BY-SHURE",
2054
+ "uuid" : "f7d44984-45c2-44d0-b65b-32e8c262189f"
2055
+ }, {
2056
+ "properties" : {
2057
+ "nav_hidden" : true,
2058
+ "title" : "Shure Wireless Drives Audio For Volkswagen At 2012 International Auto Shows"
2059
+ },
2060
+ "path" : "/en/project_showcase/Shure-Wireless-Drives-Audio-For-Volkswagen-At-2012-International-Auto-Shows",
2061
+ "uuid" : "f49b40f2-7ec5-4739-9ebf-eb4f2d8b67b9"
2062
+ }, {
2063
+ "properties" : {
2064
+ "nav_hidden" : true,
2065
+ "title" : "SHURE AXIENT™ WIRELESS TAKES CENTER STAGE AT THE GLOBAL INDIAN MUSIC AWARDS "
2066
+ },
2067
+ "path" : "/en/project_showcase/SHURE-AXIENT-WIRELESS-TAKES-CENTER-STAGE-AT-THE-GLOBAL-INDIAN-MUSIC-AWARDS",
2068
+ "uuid" : "453875be-bf81-4db9-ace6-c186852a5a29"
2069
+ }, {
2070
+ "properties" : {
2071
+ "nav_hidden" : true,
2072
+ "title" : "JPJ Audio’s Shure PSM 1000 Meeting Demand"
2073
+ },
2074
+ "path" : "/en/project_showcase/JPJ-Audio-Shure-PSM-1000-Meeting-Demand",
2075
+ "uuid" : "13d9e114-d110-49cf-ba10-bfe351fde2f3"
2076
+ }, {
2077
+ "properties" : {
2078
+ "nav_hidden" : true,
2079
+ "title" : "AV CONCEPTS POWERS CORPORATE EVENTS WITH SHURE ULX-D™ DIGITAL WIRELESS SYSTEMS "
2080
+ },
2081
+ "path" : "/en/project_showcase/AV-CONCEPTS-POWERS-CORPORATE-EVENTS-WITH-SHURE",
2082
+ "uuid" : "2849b486-d44d-4cbc-a71a-ce68065c96e8"
2083
+ }, {
2084
+ "properties" : {
2085
+ "nav_hidden" : true,
2086
+ "title" : "Shure Microphones are a Resounding Success during Folk Music Performance"
2087
+ },
2088
+ "path" : "/en/project_showcase/Shure-Microphones-are-a-Resounding-Success-during-Folk-Music-Performance",
2089
+ "uuid" : "da8ef8f9-a8a4-452f-bbef-72a163819b15"
2090
+ }, {
2091
+ "properties" : {
2092
+ "nav_hidden" : true,
2093
+ "title" : "SHURE BRINGS 124 WIRELESS CHANNELS TO SINGAPORE’S ICONIC NEW LANDMARK: THE STAR PERFORMING ARTS CENTRE "
2094
+ },
2095
+ "path" : "/en/project_showcase/SHURE-BRINGS-124-WIRELESS-CHANNELS-TO-SINGAPORE-ICONIC-NEW-LANDMARK",
2096
+ "uuid" : "b949c354-51a7-4dd9-83c8-13bed4d0df5b"
2097
+ }, {
2098
+ "properties" : {
2099
+ "nav_hidden" : true,
2100
+ "title" : "Shure Axient™ Wireless Supports Critically Acclaimed Stage Play in Beijing "
2101
+ },
2102
+ "path" : "/en/project_showcase/End-of-Love-Axient",
2103
+ "uuid" : "22009293-d0da-4361-a9ae-34979a02e013"
2104
+ }, {
2105
+ "properties" : {
2106
+ "nav_hidden" : true,
2107
+ "title" : "SHURE AND SAMA SOUND BRING ULX-D™ DIGITAL WIRELESS TO A CONGREGATION OF 7,000 MEMBERS"
2108
+ },
2109
+ "path" : "/en/project_showcase/Dongbu-Kwangsung-Church",
2110
+ "uuid" : "9f4fa666-b044-4518-920f-8f19815e04e6"
2111
+ }, {
2112
+ "properties" : {
2113
+ "nav_hidden" : true,
2114
+ "title" : "SHURE PSM®1000 USED EXCLUSIVELY FOR THE GRAMMY® AWARDS, AGAIN"
2115
+ },
2116
+ "path" : "/en/project_showcase/Grammys-2013",
2117
+ "uuid" : "ccb21caf-4bc4-4e8b-8cf1-d635149bd2cc"
2118
+ }, {
2119
+ "properties" : {
2120
+ "nav_hidden" : true,
2121
+ "title" : "SHURE ULX-D™ DIGITAL WIRELESS SYSTEMS PLAY A KEY ROLE IN THE SIBOS INTERNATIONAL FINANCIAL CONFERENCE"
2122
+ },
2123
+ "path" : "/en/project_showcase/Shure-ULX-D-Sibos",
2124
+ "uuid" : "88544070-f512-4922-9237-343d71c78b8a"
2125
+ }, {
2126
+ "properties" : {
2127
+ "nav_hidden" : true,
2128
+ "title" : "SHURE AXIENT™ WIRELESS STARS AT JAVA JAZZ"
2129
+ },
2130
+ "path" : "/en/project_showcase/SHURE-AXIENT-WIRELESS-STARS-JAVA-JAZZ",
2131
+ "uuid" : "25dfb02f-3e4a-4a5c-9dc4-c478b0725bfc"
2132
+ }, {
2133
+ "properties" : {
2134
+ "nav_hidden" : true,
2135
+ "title" : "Shure UHF-R® Emerges as Major Player in Sound For Film"
2136
+ },
2137
+ "path" : "/en/project_showcase/Shure-UHF-R-Emerges-as-Major-Player-in-Sound-For-Film",
2138
+ "uuid" : "c9fde4ba-54b5-4371-8b5d-8551c3c1c6c4"
2139
+ }, {
2140
+ "properties" : {
2141
+ "nav_hidden" : true,
2142
+ "title" : " Shure AXIENT® Successfully Used at the Liaoning TV 2013 Spring Festival Gala Program"
2143
+ },
2144
+ "path" : "/en/project_showcase/LiaoningTV-Spring-Festival-Gala-2013",
2145
+ "uuid" : "7414bed2-f990-4c6e-b9d1-53ab741a0baf"
2146
+ }, {
2147
+ "properties" : {
2148
+ "nav_hidden" : true,
2149
+ "title" : "REYNOLDS SOUND & LIGHTING SERVICES RELIES ON SHURE AXIENT™ WIRELESS TO POWER CORPORATE EVENT "
2150
+ },
2151
+ "path" : "/en/project_showcase/Reynolds-Sound-Lighting-Services-Relies-On-Shure-Axient-Wireless",
2152
+ "uuid" : "83f8a86a-d98f-473f-aaf8-ed9776b4836f"
2153
+ }, {
2154
+ "properties" : {
2155
+ "nav_hidden" : true,
2156
+ "title" : "THE NBA’S PORTLAND TRAIL BLAZERS PRE-GAME BROADCAST GOES WIRELESS WITH SHURE ULX-D™ AND PSM®1000"
2157
+ },
2158
+ "path" : "/en/project_showcase/NBA-Portland-Trail-Blazers",
2159
+ "uuid" : "3e1aed46-a9e3-40e3-8b0a-c700507e5816"
2160
+ }, {
2161
+ "properties" : {
2162
+ "nav_hidden" : true,
2163
+ "title" : "SHURE WIRELESS SYSTEMS DOMINATE 48th ANNUAL ACMAs"
2164
+ },
2165
+ "path" : "/en/project_showcase/ACMAs-2013",
2166
+ "uuid" : "73e5f11d-6f3e-4be9-abc0-870b096e1a05"
2167
+ }, {
2168
+ "properties" : {
2169
+ "nav_hidden" : true,
2170
+ "title" : "Shure ULX-D Receiver Discovery and Patching from Yamaha CL Consoles"
2171
+ },
2172
+ "path" : "/en/project_showcase/Yamaha-CL-Consoles-ULXD",
2173
+ "uuid" : "0decf1f5-a946-4482-8716-284b69482828"
2174
+ } ],
2175
+ "path" : "/en/project_showcase",
2176
+ "uuid" : "9f9298c6-15b5-4ea1-b79e-f9143a825198"
2177
+ }, {
2178
+ "properties" : {
2179
+ "title" : "Support",
2180
+ "nav_title" : "Support"
2181
+ },
2182
+ "children" : [ {
2183
+ "properties" : {
2184
+ "title" : "Product Registration"
2185
+ },
2186
+ "children" : [ {
2187
+ "properties" : {
2188
+ "nav_hidden" : true,
2189
+ "title" : "Many thanks for your registration!"
2190
+ },
2191
+ "path" : "/en/support_download/product_registration/thanks",
2192
+ "uuid" : "d88faafd-f1ee-4bd6-939a-8eab324fd1b3"
2193
+ } ],
2194
+ "path" : "/en/support_download/product_registration",
2195
+ "uuid" : "a8ffeb63-038a-4133-a076-47c3f5befe0a"
2196
+ }, {
2197
+ "properties" : {
2198
+ "title" : "Service & Replacement parts",
2199
+ "nav_title" : "Service & Replacement parts"
2200
+ },
2201
+ "path" : "/en/support_download/service_replacement_parts",
2202
+ "uuid" : "800770b1-bba8-47a6-9866-3b30ab5f2aab"
2203
+ }, {
2204
+ "properties" : {
2205
+ "title" : "Shure Downloads",
2206
+ "nav_title" : "Downloads"
2207
+ },
2208
+ "children" : [ {
2209
+ "properties" : {
2210
+ "title" : "User Guides",
2211
+ "nav_title" : "User Guides"
2212
+ },
2213
+ "path" : "/en/support_download/downloads/user-guides",
2214
+ "uuid" : "5bee3feb-cab3-48a7-9ad8-53ae273d8fa3"
2215
+ }, {
2216
+ "properties" : {
2217
+ "title" : "Product Overviews",
2218
+ "nav_title" : "Product Overviews"
2219
+ },
2220
+ "path" : "/en/support_download/downloads/product-overviews",
2221
+ "uuid" : "6612a3a7-5d16-4156-ae03-b55df2916b21"
2222
+ }, {
2223
+ "properties" : {
2224
+ "title" : "CAD Files",
2225
+ "nav_title" : "CAD Files"
2226
+ },
2227
+ "path" : "/en/support_download/downloads/cad-files",
2228
+ "uuid" : "3e868b2b-a851-43e3-bd6b-8fb87c321e19"
2229
+ }, {
2230
+ "properties" : {
2231
+ "title" : "Architectural Specifications",
2232
+ "nav_title" : "Architectural Specifications"
2233
+ },
2234
+ "path" : "/en/support_download/downloads/architectural-specifications",
2235
+ "uuid" : "8cb775fb-c2c2-4e88-8a39-fdf57b2e1b03"
2236
+ }, {
2237
+ "properties" : {
2238
+ "title" : "Basics PDF Guides",
2239
+ "nav_title" : "Basics PDF Guides"
2240
+ },
2241
+ "path" : "/en/support_download/downloads/pdf-guides",
2242
+ "uuid" : "5c67ffbc-8d4c-4cca-a967-0363c68cf4e9"
2243
+ }, {
2244
+ "properties" : {
2245
+ "title" : "Software Downloads",
2246
+ "nav_title" : "Software Downloads"
2247
+ },
2248
+ "path" : "/en/support_download/downloads/software-drivers",
2249
+ "uuid" : "53870cfc-12c3-4161-ba8c-9d53585cd088"
2250
+ }, {
2251
+ "properties" : {
2252
+ "title" : "Shure Brochures",
2253
+ "nav_title" : "Brochures"
2254
+ },
2255
+ "path" : "/en/support_download/downloads/brochures",
2256
+ "uuid" : "e018dbdc-61e7-4a07-8873-8972ef0d992d"
2257
+ }, {
2258
+ "properties" : {
2259
+ "title" : "Wireless Workbench (Version 5.0.5)",
2260
+ "nav_title" : "Wireless Workbench"
2261
+ },
2262
+ "path" : "/en/support_download/downloads/wireless-workbench0",
2263
+ "uuid" : "025399f9-cadc-419d-84a6-dd971ba8df11"
2264
+ } ],
2265
+ "path" : "/en/support_download/downloads",
2266
+ "uuid" : "39aaa4ff-6142-493c-b0c4-b49af380f050"
2267
+ }, {
2268
+ "properties" : {
2269
+ "title" : "FAQ"
2270
+ },
2271
+ "path" : "/en/support_download/faq",
2272
+ "uuid" : "4cae9989-bf24-4111-98d9-9408ce89eeca"
2273
+ }, {
2274
+ "properties" : {
2275
+ "nav_hidden" : true,
2276
+ "title" : "Shure FAQ",
2277
+ "nav_title" : "FAQ"
2278
+ },
2279
+ "path" : "/en/support_download/faq_",
2280
+ "uuid" : "882daa07-02f2-433e-9aae-edfb6ebf82f7"
2281
+ }, {
2282
+ "properties" : {
2283
+ "title" : "Educational Content",
2284
+ "nav_title" : "Educational Content"
2285
+ },
2286
+ "children" : [ {
2287
+ "properties" : {
2288
+ "title" : "In-Ear Personal Monitoring",
2289
+ "nav_title" : "In-Ear Personal Monitoring"
2290
+ },
2291
+ "path" : "/en/support_download/educational_content/in-ear-monitoring",
2292
+ "uuid" : "99d106e3-adc4-43d2-9751-dc529524d045"
2293
+ }, {
2294
+ "properties" : {
2295
+ "title" : "Studio & Home Recording: Eduactional Content",
2296
+ "nav_title" : "Studio & Home Recording"
2297
+ },
2298
+ "path" : "/en/support_download/educational_content/studio-home-recording",
2299
+ "uuid" : "a3eaff27-304a-4cbc-8f3a-891610c08ea2"
2300
+ }, {
2301
+ "properties" : {
2302
+ "title" : "Microphones: Educational Content",
2303
+ "nav_title" : "Microphones"
2304
+ },
2305
+ "path" : "/en/support_download/educational_content/microphones-basics",
2306
+ "uuid" : "a4df4a5b-f209-4f42-85ea-aafa40a21ffa"
2307
+ }, {
2308
+ "properties" : {
2309
+ "title" : "Wireless Microphones: Educational Content",
2310
+ "nav_title" : "Wireless Microphones"
2311
+ },
2312
+ "path" : "/en/support_download/educational_content/wireless-microphones-basics",
2313
+ "uuid" : "e059682f-dea3-40d2-b1dd-2c2da2b45479"
2314
+ } ],
2315
+ "path" : "/en/support_download/educational_content",
2316
+ "uuid" : "b8f44204-c6d0-4984-89ec-a56fdac3300d"
2317
+ }, {
2318
+ "properties" : {
2319
+ "title" : "Shure Videos",
2320
+ "nav_title" : "Videos"
2321
+ },
2322
+ "children" : [ {
2323
+ "properties" : {
2324
+ "nav_hidden" : true,
2325
+ "title" : "Videos: How-To",
2326
+ "nav_title" : "Videos: How-To"
2327
+ },
2328
+ "path" : "/en/support_download/videos/how-to",
2329
+ "uuid" : "9a467af2-6dd0-418d-b1fa-6272282f19fe"
2330
+ }, {
2331
+ "properties" : {
2332
+ "nav_hidden" : true,
2333
+ "title" : "Videos: Products",
2334
+ "nav_title" : "Videos: Products"
2335
+ },
2336
+ "path" : "/en/support_download/videos/products",
2337
+ "uuid" : "2f52b319-e2ae-4480-8231-15f0b5812c73"
2338
+ }, {
2339
+ "properties" : {
2340
+ "nav_hidden" : true,
2341
+ "title" : "Videos: Other",
2342
+ "nav_title" : "Videos: Other"
2343
+ },
2344
+ "path" : "/en/support_download/videos/other",
2345
+ "uuid" : "b50101c7-a9a0-405d-8746-4fb9aa02e0f5"
2346
+ }, {
2347
+ "properties" : {
2348
+ "nav_hidden" : true,
2349
+ "title" : "Shure UK on YouTube",
2350
+ "nav_title" : "Latest YouTube Videos"
2351
+ },
2352
+ "path" : "/en/support_download/videos/youtube",
2353
+ "uuid" : "2ece00e6-f5a0-4fa2-9373-c271cbbd2528"
2354
+ } ],
2355
+ "path" : "/en/support_download/videos",
2356
+ "uuid" : "0db23afd-d947-4951-b411-13401e552fbd"
2357
+ }, {
2358
+ "properties" : {
2359
+ "nav_hidden" : true,
2360
+ "title" : "Warranty",
2361
+ "nav_title" : "Warranty"
2362
+ },
2363
+ "children" : [ {
2364
+ "properties" : {
2365
+ "nav_hidden" : true,
2366
+ "title" : "produktregistrierung"
2367
+ },
2368
+ "path" : "/en/support_download/warranty/produktregistrierung",
2369
+ "uuid" : "c2cf4f28-ba39-40b9-bd99-71a96b3d0008"
2370
+ } ],
2371
+ "path" : "/en/support_download/warranty",
2372
+ "uuid" : "51e949a4-1d4d-424c-937e-16b3a9c59a91"
2373
+ }, {
2374
+ "properties" : {
2375
+ "nav_hidden" : true,
2376
+ "title" : "Many thanks for your enquiry!",
2377
+ "nav_title" : "Many thanks for your enquiry!"
2378
+ },
2379
+ "path" : "/en/support_download/thanks",
2380
+ "uuid" : "3f16cafd-4977-41b0-a0fe-64f0a11d9995"
2381
+ }, {
2382
+ "properties" : {
2383
+ "title" : "Glossary"
2384
+ },
2385
+ "path" : "/en/support_download/glossary",
2386
+ "uuid" : "199d68e4-a335-482f-a2f8-8d6ef7dd429b"
2387
+ }, {
2388
+ "properties" : {
2389
+ "title" : "Tools"
2390
+ },
2391
+ "children" : [ {
2392
+ "properties" : {
2393
+ "title" : "Wireless Frequency Finder"
2394
+ },
2395
+ "path" : "/en/support_download/tools/wireless_frequency_finder",
2396
+ "uuid" : "8244ae20-cb7e-43da-b777-803adb15f82f"
2397
+ }, {
2398
+ "properties" : {
2399
+ "title" : "Wireless Accessory Wizard"
2400
+ },
2401
+ "path" : "/en/support_download/tools/wireless_accessory_wizard",
2402
+ "uuid" : "11dcb700-0337-40c7-944e-141b79a4c22f"
2403
+ }, {
2404
+ "properties" : {
2405
+ "title" : "Wireless Remote Antennas"
2406
+ },
2407
+ "path" : "/en/support_download/tools/wireless_remote_antennas",
2408
+ "uuid" : "bf7ae130-f27c-4159-939c-72496213c592"
2409
+ } ],
2410
+ "path" : "/en/support_download/tools",
2411
+ "uuid" : "700e537b-242c-49c0-ba27-20e9bd99651a"
2412
+ }, {
2413
+ "properties" : {
2414
+ "nav_hidden" : true,
2415
+ "title" : "Product Registration"
2416
+ },
2417
+ "path" : "/en/support_download/shure_asia_product_registration",
2418
+ "uuid" : "07409725-1160-41c8-864f-5771e1b5f524"
2419
+ }, {
2420
+ "properties" : {
2421
+ "nav_hidden" : true,
2422
+ "title" : "service announcement "
2423
+ },
2424
+ "path" : "/en/support_download/service_announcement_hk",
2425
+ "uuid" : "bd718883-022a-4c6a-a8e8-7d3e2795edb6"
2426
+ } ],
2427
+ "path" : "/en/support_download",
2428
+ "uuid" : "ef808655-7012-4f96-8be9-d3b138ad477b"
2429
+ }, {
2430
+ "properties" : {
2431
+ "title" : "Company"
2432
+ },
2433
+ "children" : [ {
2434
+ "properties" : {
2435
+ "title" : "Contact Us"
2436
+ },
2437
+ "path" : "/en/company/contact",
2438
+ "uuid" : "5f4143ba-a7cb-4a01-a896-7fa03ce6d94c"
2439
+ }, {
2440
+ "properties" : {
2441
+ "title" : "About Shure"
2442
+ },
2443
+ "path" : "/en/company/about_shure",
2444
+ "uuid" : "fcede5d3-dea8-4143-a810-f156527e7a5f"
2445
+ }, {
2446
+ "properties" : {
2447
+ "title" : "Careers"
2448
+ },
2449
+ "path" : "/en/company/careers",
2450
+ "uuid" : "b579b15d-cf1b-44d8-8bc0-27469f7a727d"
2451
+ }, {
2452
+ "properties" : {
2453
+ "nav_hidden" : true,
2454
+ "title" : "Environment",
2455
+ "nav_title" : "Environment"
2456
+ },
2457
+ "path" : "/en/company/environment",
2458
+ "uuid" : "d3f925bd-c7a4-47c7-b7fc-ab2b68c5b493"
2459
+ }, {
2460
+ "properties" : {
2461
+ "title" : "Shure History",
2462
+ "nav_title" : "History"
2463
+ },
2464
+ "path" : "/en/company/shure_history",
2465
+ "uuid" : "4fa24c6b-ef28-4145-85f3-e4dcb3a57b32"
2466
+ }, {
2467
+ "properties" : {
2468
+ "title" : "Anti-Counterfeiting",
2469
+ "nav_title" : "Anti-Counterfeiting"
2470
+ },
2471
+ "path" : "/en/company/shure_anti_counterfeiting_initiative",
2472
+ "uuid" : "78bf5d36-2822-49bd-9e7e-716415d0d679"
2473
+ }, {
2474
+ "properties" : {
2475
+ "title" : "Press"
2476
+ },
2477
+ "children" : [ {
2478
+ "properties" : {
2479
+ "title" : "Press Release Archive",
2480
+ "nav_title" : "Archive"
2481
+ },
2482
+ "path" : "/en/company/press/press_releases",
2483
+ "uuid" : "7efceff2-d7e3-4494-9120-1b71ff96c32c"
2484
+ } ],
2485
+ "path" : "/en/company/press",
2486
+ "uuid" : "d43f3501-fc1c-448d-aef0-e3d19d361726"
2487
+ }, {
2488
+ "properties" : {
2489
+ "nav_hidden" : true,
2490
+ "title" : "Anti-Counterfeiting",
2491
+ "nav_title" : "Anti-Counterfeiting"
2492
+ },
2493
+ "path" : "/en/company/shure_anti_counterfeiting_initiative0",
2494
+ "uuid" : "3f2491c4-2bb6-4134-bbcd-11c8b496d490"
2495
+ }, {
2496
+ "properties" : {
2497
+ "title" : "Service repair center ",
2498
+ "nav_title" : "Service repair center "
2499
+ },
2500
+ "path" : "/en/company/service-repair-center",
2501
+ "uuid" : "7c93ea96-a8cf-458c-a91c-e6664757767f"
2502
+ } ],
2503
+ "path" : "/en/company",
2504
+ "uuid" : "842a712b-00ea-49e8-bf3a-1252120b6a9a"
2505
+ }, {
2506
+ "properties" : {
2507
+ "title" : "Products Overview",
2508
+ "nav_title" : "products"
2509
+ },
2510
+ "children" : [ {
2511
+ "properties" : {
2512
+ "title" : "Microphones for almost every application",
2513
+ "nav_title" : "Microphones"
2514
+ },
2515
+ "children" : [ {
2516
+ "properties" : {
2517
+ "nav_hidden" : true,
2518
+ "title" : "Microphone Product Page"
2519
+ },
2520
+ "path" : "/en/products-revamp/microphones/microphone",
2521
+ "uuid" : "0bd789a8-1a7f-4991-85c8-457e7bb39d6d"
2522
+ }, {
2523
+ "properties" : {
2524
+ "title" : "Find the right vocal microphone for you",
2525
+ "nav_title" : "Vocal "
2526
+ },
2527
+ "path" : "/en/products-revamp/microphones/vocal_microphones",
2528
+ "uuid" : "6afd1fa7-9c17-4f74-88de-e0b3ec398bad"
2529
+ }, {
2530
+ "properties" : {
2531
+ "title" : "Find the right instrument microphone for you",
2532
+ "nav_title" : "Instrument Microphones"
2533
+ },
2534
+ "path" : "/en/products-revamp/microphones/instrument_microphones",
2535
+ "uuid" : "eaf53854-0e5b-468f-82a5-7099ee63a89c"
2536
+ }, {
2537
+ "properties" : {
2538
+ "title" : "Find the right guitar microphone",
2539
+ "nav_title" : "Guitar Microphones"
2540
+ },
2541
+ "path" : "/en/products-revamp/microphones/guitar_microphones",
2542
+ "uuid" : "06d146e3-8c3c-4233-8f75-5a16b0554724"
2543
+ }, {
2544
+ "properties" : {
2545
+ "title" : "Headset Microphones (Wired & Wireless)",
2546
+ "nav_title" : "Headset "
2547
+ },
2548
+ "path" : "/en/products-revamp/microphones/headset_microphones",
2549
+ "uuid" : "3214209e-7bca-4b06-be50-eff292654183"
2550
+ }, {
2551
+ "properties" : {
2552
+ "title" : "Lavalier Microphones (Wired & Wireless)",
2553
+ "nav_title" : "Lavalier "
2554
+ },
2555
+ "path" : "/en/products-revamp/microphones/lavalier_microphones",
2556
+ "uuid" : "d31b63d5-f64b-4e38-ba38-981e51bc2784"
2557
+ }, {
2558
+ "properties" : {
2559
+ "title" : "Broadcasting: Reporter Microphones, Stereo Microphones, Shotgun Microphones, Headsets",
2560
+ "nav_title" : "Broadcasting"
2561
+ },
2562
+ "path" : "/en/products-revamp/microphones/broadcasting-microphones",
2563
+ "uuid" : "317a6dcf-3d51-4c10-b080-88d64d851be6"
2564
+ }, {
2565
+ "properties" : {
2566
+ "title" : "Home Recording",
2567
+ "nav_title" : "Home Recording"
2568
+ },
2569
+ "path" : "/en/products-revamp/microphones/home_recording",
2570
+ "uuid" : "5d59925c-a39c-4e4c-a662-59e192c380f7"
2571
+ }, {
2572
+ "properties" : {
2573
+ "title" : "Find the right drum microphone for you",
2574
+ "nav_title" : "Drum Microphones"
2575
+ },
2576
+ "path" : "/en/products-revamp/microphones/drum_microphones",
2577
+ "uuid" : "e943c12b-a132-4147-ab64-ab10a006927b"
2578
+ }, {
2579
+ "properties" : {
2580
+ "title" : "Karaoke Microphones",
2581
+ "nav_title" : "Karaoke"
2582
+ },
2583
+ "path" : "/en/products-revamp/microphones/karaoke_microphones",
2584
+ "uuid" : "10d23fce-ceed-4718-b3b5-ce23825bb465"
2585
+ }, {
2586
+ "properties" : {
2587
+ "title" : "Microphone Finder"
2588
+ },
2589
+ "path" : "/en/products-revamp/microphones/finder",
2590
+ "uuid" : "31e48bae-b969-41dc-9dfb-cfc61777b81c"
2591
+ }, {
2592
+ "properties" : {
2593
+ "nav_hidden" : true,
2594
+ "title" : "Studio Microphones",
2595
+ "nav_title" : "Professional Studio"
2596
+ },
2597
+ "path" : "/en/products-revamp/microphones/studio_microphones",
2598
+ "uuid" : "087595d7-511d-403e-ba4b-b072ac1039dd"
2599
+ }, {
2600
+ "properties" : {
2601
+ "title" : "Microphones Series",
2602
+ "nav_title" : "Microphones Series"
2603
+ },
2604
+ "path" : "/en/products-revamp/microphones/microphone-series",
2605
+ "uuid" : "1777e7a3-29b6-467d-8c5d-38ca25d87f54"
2606
+ }, {
2607
+ "properties" : {
2608
+ "title" : "Installed Microphones",
2609
+ "nav_title" : "Installed"
2610
+ },
2611
+ "path" : "/en/products-revamp/microphones/installed",
2612
+ "uuid" : "06078e51-6655-45a6-81a1-2abda68b5734"
2613
+ }, {
2614
+ "properties" : {
2615
+ "title" : "Audio Solutions: Find the best audio system for your environment or application",
2616
+ "nav_title" : "Installed"
2617
+ },
2618
+ "path" : "/en/products-revamp/microphones/installed-revamp",
2619
+ "uuid" : "5fe77f6d-745a-479e-845c-ddaea2ef88d8"
2620
+ }, {
2621
+ "properties" : {
2622
+ "title" : "Centraverse™ Installed Sound Microphone"
2623
+ },
2624
+ "path" : "/en/products-revamp/microphones/centraverse",
2625
+ "uuid" : "560127a2-258d-4a33-8a22-1159fc52f1e6"
2626
+ }, {
2627
+ "properties" : {
2628
+ "title" : "Discussion Microphones",
2629
+ "nav_title" : "Discussion"
2630
+ },
2631
+ "path" : "/en/products-revamp/microphones/discussion",
2632
+ "uuid" : "000b4395-9608-46e8-a880-c96913322890"
2633
+ }, {
2634
+ "properties" : {
2635
+ "title" : "Conferencing Microphones",
2636
+ "nav_title" : "Conferencing"
2637
+ },
2638
+ "path" : "/en/products-revamp/microphones/conferencing",
2639
+ "uuid" : "4ecac1e1-6624-45d7-a911-5c50162b9cfd"
2640
+ } ],
2641
+ "path" : "/en/products-revamp/microphones",
2642
+ "uuid" : "ed980aaf-41a6-427c-94f4-e0457eaa38e7"
2643
+ }, {
2644
+ "properties" : {
2645
+ "title" : "Wireless Microphone Systems",
2646
+ "nav_title" : "Wireless"
2647
+ },
2648
+ "children" : [ {
2649
+ "properties" : {
2650
+ "nav_hidden" : true,
2651
+ "title" : "UHF-R Wireless System"
2652
+ },
2653
+ "path" : "/en/products-revamp/wireless_microphones/uhf_r_wireless_systems",
2654
+ "uuid" : "c0cc1628-81b3-47de-a784-15f85e528ad1"
2655
+ }, {
2656
+ "properties" : {
2657
+ "nav_hidden" : true,
2658
+ "title" : "Wireless System Product Page"
2659
+ },
2660
+ "path" : "/en/products-revamp/wireless_microphones/wireless_system_page",
2661
+ "uuid" : "6b725f9a-2c7f-4d8a-93bd-6f8814bfe1a8"
2662
+ }, {
2663
+ "properties" : {
2664
+ "title" : "Find the right wireless vocal microphone for you",
2665
+ "nav_title" : "Wireless Vocal "
2666
+ },
2667
+ "path" : "/en/products-revamp/wireless_microphones/wireless_application_vocal",
2668
+ "uuid" : "a2c603a8-4a8d-48c8-86f5-b29907b73327"
2669
+ }, {
2670
+ "properties" : {
2671
+ "title" : "Wireless Systems for brass & wind",
2672
+ "nav_title" : "Wireless Brass & Wind"
2673
+ },
2674
+ "path" : "/en/products-revamp/wireless_microphones/wireless_systems_brass",
2675
+ "uuid" : "418b63fe-eab2-43d8-b23b-a64b932cf6af"
2676
+ }, {
2677
+ "properties" : {
2678
+ "title" : "Wireless Systems for guitarists and bassists",
2679
+ "nav_title" : "Wireless Guitar & Bass"
2680
+ },
2681
+ "path" : "/en/products-revamp/wireless_microphones/wireless_systems_guitarists",
2682
+ "uuid" : "b8117660-b95b-4527-96a7-8d0a5eb9c8d6"
2683
+ }, {
2684
+ "properties" : {
2685
+ "nav_hidden" : true,
2686
+ "title" : "Receivers"
2687
+ },
2688
+ "path" : "/en/products-revamp/wireless_microphones/receivers",
2689
+ "uuid" : "a4f895ae-0900-44d3-b0d5-4ca8887e0077"
2690
+ }, {
2691
+ "properties" : {
2692
+ "nav_hidden" : true,
2693
+ "title" : "Transmitters"
2694
+ },
2695
+ "path" : "/en/products-revamp/wireless_microphones/transmitters",
2696
+ "uuid" : "10117284-2d1f-4eb9-94a0-0c232f5da397"
2697
+ }, {
2698
+ "properties" : {
2699
+ "nav_hidden" : true,
2700
+ "title" : "Wireless Systems"
2701
+ },
2702
+ "path" : "/en/products-revamp/wireless_microphones/wireless_systems",
2703
+ "uuid" : "2b97da37-15e0-4563-9c53-59bfb413b75b"
2704
+ }, {
2705
+ "properties" : {
2706
+ "nav_hidden" : true,
2707
+ "title" : "Wireless System Configurations"
2708
+ },
2709
+ "path" : "/en/products-revamp/wireless_microphones/wireless_systems_configurations",
2710
+ "uuid" : "e31c564a-3088-4d23-9a4a-56b1936471ec"
2711
+ }, {
2712
+ "properties" : {
2713
+ "title" : "Lavalier Microphones",
2714
+ "nav_title" : "Lavalier"
2715
+ },
2716
+ "path" : "/en/products-revamp/wireless_microphones/lavalier_microphones",
2717
+ "uuid" : "d2d04b08-8ea7-4380-bb24-344c6222d50d"
2718
+ }, {
2719
+ "properties" : {
2720
+ "title" : "Headset Microphones",
2721
+ "nav_title" : "Headsets"
2722
+ },
2723
+ "path" : "/en/products-revamp/wireless_microphones/headset_microphones",
2724
+ "uuid" : "fc28d9dc-7baa-4615-9c1c-b69d31781a00"
2725
+ }, {
2726
+ "properties" : {
2727
+ "title" : "Performance Gear Wireless Systems"
2728
+ },
2729
+ "path" : "/en/products-revamp/wireless_microphones/pg_wireless",
2730
+ "uuid" : "8fc6421b-85a9-41d4-a423-eb20645363db"
2731
+ }, {
2732
+ "properties" : {
2733
+ "title" : "PGX Wireless Systems"
2734
+ },
2735
+ "path" : "/en/products-revamp/wireless_microphones/pgx_wireless",
2736
+ "uuid" : "e6f98132-398d-4efa-98f6-95d099f9c821"
2737
+ }, {
2738
+ "properties" : {
2739
+ "title" : "PGXD Wireless Systems"
2740
+ },
2741
+ "path" : "/en/products-revamp/wireless_microphones/pgxd_wireless",
2742
+ "uuid" : "b2d70096-23d9-4339-8688-7b08a515b82d"
2743
+ }, {
2744
+ "properties" : {
2745
+ "title" : "SLX Wireless Systems"
2746
+ },
2747
+ "path" : "/en/products-revamp/wireless_microphones/slx_wireless",
2748
+ "uuid" : "a4246449-af1b-4278-b428-2c4e2ffdcfa8"
2749
+ }, {
2750
+ "properties" : {
2751
+ "title" : "SVX Wireless Systems"
2752
+ },
2753
+ "path" : "/en/products-revamp/wireless_microphones/svx_wireless",
2754
+ "uuid" : "495636c7-bdf0-4bfa-be0b-872ef54b72ea"
2755
+ }, {
2756
+ "properties" : {
2757
+ "title" : "FP Wireless Systems",
2758
+ "nav_title" : "FP Wireless Systems"
2759
+ },
2760
+ "path" : "/en/products-revamp/wireless_microphones/fp_wireless",
2761
+ "uuid" : "c7ac3419-8f68-4436-a8ee-52e7ca3c7cae"
2762
+ }, {
2763
+ "properties" : {
2764
+ "title" : "ULX Wireless Systems"
2765
+ },
2766
+ "path" : "/en/products-revamp/wireless_microphones/ulx_wireless",
2767
+ "uuid" : "6ac44454-3c61-4f54-b684-848a915b4bc0"
2768
+ }, {
2769
+ "properties" : {
2770
+ "title" : "ULX-D Wireless Systems"
2771
+ },
2772
+ "path" : "/en/products-revamp/wireless_microphones/ulxd_wireless",
2773
+ "uuid" : "90fc3b5c-fc3c-4c96-8135-f6f9fc8987bd"
2774
+ }, {
2775
+ "properties" : {
2776
+ "title" : "UHF-R Wireless Systems"
2777
+ },
2778
+ "path" : "/en/products-revamp/wireless_microphones/uhfr_wireless",
2779
+ "uuid" : "7f27645f-8a76-404f-8835-7492c8349bce"
2780
+ }, {
2781
+ "properties" : {
2782
+ "title" : "Axient™ Wireless microphone system",
2783
+ "nav_title" : "Axient™ Wireless microphone system"
2784
+ },
2785
+ "path" : "/en/products-revamp/wireless_microphones/axient-wireless-management-network",
2786
+ "uuid" : "7e832fd6-7e27-4964-aba4-c5b5306cf8d9"
2787
+ } ],
2788
+ "path" : "/en/products-revamp/wireless_microphones",
2789
+ "uuid" : "e1f9c3bd-542c-49da-bcda-3802b2f13ad2"
2790
+ }, {
2791
+ "properties" : {
2792
+ "title" : "Shure Sound Isolating™ earphones - immerse yourself in the music ",
2793
+ "nav_title" : "Earphones"
2794
+ },
2795
+ "children" : [ {
2796
+ "properties" : {
2797
+ "title" : "Shure Sound Isolating Earphones: Discontinued Models",
2798
+ "nav_title" : "Discontinued Models"
2799
+ },
2800
+ "path" : "/en/products-revamp/earphones/phase-out",
2801
+ "uuid" : "586da838-232c-4f4f-bfad-26746eeb0621"
2802
+ }, {
2803
+ "properties" : {
2804
+ "nav_hidden" : true,
2805
+ "title" : "Earphone Product Page"
2806
+ },
2807
+ "path" : "/en/products-revamp/earphones/earphone",
2808
+ "uuid" : "195fadd4-98ff-4ce9-92c8-7a2c0a0028c9"
2809
+ } ],
2810
+ "path" : "/en/products-revamp/earphones",
2811
+ "uuid" : "c5d4d45e-56f1-44c4-bae3-a9dadefa3508"
2812
+ }, {
2813
+ "properties" : {
2814
+ "title" : "Headphones",
2815
+ "nav_title" : "Headphones"
2816
+ },
2817
+ "children" : [ {
2818
+ "properties" : {
2819
+ "nav_hidden" : true,
2820
+ "title" : "Headphone Product Page"
2821
+ },
2822
+ "path" : "/en/products-revamp/headphones/headphone",
2823
+ "uuid" : "957dab28-95c4-41f6-b5ff-484d00563eca"
2824
+ } ],
2825
+ "path" : "/en/products-revamp/headphones",
2826
+ "uuid" : "394ccd4a-deb6-4171-a680-46843d865c6e"
2827
+ }, {
2828
+ "properties" : {
2829
+ "title" : "In-Ear Personal Monitoring",
2830
+ "nav_title" : "Monitoring"
2831
+ },
2832
+ "children" : [ {
2833
+ "properties" : {
2834
+ "nav_hidden" : true,
2835
+ "title" : "In Ear Monitoring System Product Page"
2836
+ },
2837
+ "path" : "/en/products-revamp/in_ear_monitoring/in_ear_monitoring",
2838
+ "uuid" : "a229f9a9-dadf-406b-8206-46d52ce2e695"
2839
+ }, {
2840
+ "properties" : {
2841
+ "nav_hidden" : true,
2842
+ "title" : "In Ear Monitoring Receiver"
2843
+ },
2844
+ "path" : "/en/products-revamp/in_ear_monitoring/in_ear_monitoring_receivers",
2845
+ "uuid" : "2946b621-658b-4dc2-95e8-cebc01bf671e"
2846
+ }, {
2847
+ "properties" : {
2848
+ "nav_hidden" : true,
2849
+ "title" : "In Ear Monitoring Transmitters"
2850
+ },
2851
+ "path" : "/en/products-revamp/in_ear_monitoring/in_ear_monitoring_transmitters",
2852
+ "uuid" : "f0bb7481-b8e4-4ef1-85dd-494affca986c"
2853
+ }, {
2854
+ "properties" : {
2855
+ "title" : "PSM 200"
2856
+ },
2857
+ "path" : "/en/products-revamp/in_ear_monitoring/psm200",
2858
+ "uuid" : "d06bb2e4-94a5-44dc-9fb3-ffa8d29d93b3"
2859
+ }, {
2860
+ "properties" : {
2861
+ "nav_hidden" : true,
2862
+ "title" : "PSM 400"
2863
+ },
2864
+ "path" : "/en/products-revamp/in_ear_monitoring/psm400",
2865
+ "uuid" : "ca0e6e00-fcd1-4879-b1df-47888a06d995"
2866
+ }, {
2867
+ "properties" : {
2868
+ "nav_hidden" : true,
2869
+ "title" : "PSM 700"
2870
+ },
2871
+ "path" : "/en/products-revamp/in_ear_monitoring/psm700",
2872
+ "uuid" : "fb407c44-e66d-4cf7-8da4-d186d6da4710"
2873
+ }, {
2874
+ "properties" : {
2875
+ "title" : "PSM 900"
2876
+ },
2877
+ "path" : "/en/products-revamp/in_ear_monitoring/psm900",
2878
+ "uuid" : "231d38b3-dee1-4720-8ae8-8f096682d018"
2879
+ }, {
2880
+ "properties" : {
2881
+ "title" : "PSM 1000"
2882
+ },
2883
+ "path" : "/en/products-revamp/in_ear_monitoring/psm1000",
2884
+ "uuid" : "7dd8ce83-3b4d-4125-9a76-a469753513a0"
2885
+ } ],
2886
+ "path" : "/en/products-revamp/in_ear_monitoring",
2887
+ "uuid" : "40cfc337-2c46-4de5-ba78-a3cbd7b07f27"
2888
+ }, {
2889
+ "properties" : {
2890
+ "title" : "DJ & Phono",
2891
+ "nav_title" : "DJ & Phono"
2892
+ },
2893
+ "children" : [ {
2894
+ "properties" : {
2895
+ "nav_hidden" : true,
2896
+ "title" : "DJ & Phono Product Page"
2897
+ },
2898
+ "path" : "/en/products-revamp/dj_phono/dj_phono",
2899
+ "uuid" : "18709e5f-6e2a-41e8-8043-1a5a93986bee"
2900
+ } ],
2901
+ "path" : "/en/products-revamp/dj_phono",
2902
+ "uuid" : "6c26ac57-e643-4277-ac76-4206bb0d79c8"
2903
+ }, {
2904
+ "properties" : {
2905
+ "title" : "Mixers & DSP",
2906
+ "nav_title" : "Mixers & DSP"
2907
+ },
2908
+ "children" : [ {
2909
+ "properties" : {
2910
+ "nav_hidden" : true,
2911
+ "title" : "Mixer Product Page"
2912
+ },
2913
+ "path" : "/en/products-revamp/mixers/mixer",
2914
+ "uuid" : "fffeb9b7-bfe8-4336-9c7c-24afad116243"
2915
+ } ],
2916
+ "path" : "/en/products-revamp/mixers",
2917
+ "uuid" : "baeb38cf-0b11-4282-b14d-cc0620ebec88"
2918
+ }, {
2919
+ "properties" : {
2920
+ "title" : "Accessories and Replacement Parts",
2921
+ "nav_title" : "Accessories"
2922
+ },
2923
+ "children" : [ {
2924
+ "properties" : {
2925
+ "title" : "Wireless Accessories and Replacement Parts",
2926
+ "nav_title" : "Wireless"
2927
+ },
2928
+ "path" : "/en/products-revamp/accessories/wireless_accessories",
2929
+ "uuid" : "cc8225b1-c0ed-42bd-a850-cee39a305e59"
2930
+ }, {
2931
+ "properties" : {
2932
+ "title" : "Accessories for In-Ear Personal Monitoring",
2933
+ "nav_title" : "In-Ear Personal Monitoring"
2934
+ },
2935
+ "path" : "/en/products-revamp/accessories/psm_and_earphones_accessories",
2936
+ "uuid" : "7f6f43c7-bfa5-4aac-a0f4-9bf0bdeda3ed"
2937
+ }, {
2938
+ "properties" : {
2939
+ "title" : "Earphones Accessories",
2940
+ "nav_title" : "Earphones"
2941
+ },
2942
+ "path" : "/en/products-revamp/accessories/earphones_accessories",
2943
+ "uuid" : "4005d539-425f-465b-bbfb-c37d431f293f"
2944
+ }, {
2945
+ "properties" : {
2946
+ "title" : "DJ & Phono Accesories and replacement parts",
2947
+ "nav_title" : "DJ & Phono"
2948
+ },
2949
+ "path" : "/en/products-revamp/accessories/dj_phono_accessories",
2950
+ "uuid" : "5c28a417-1fa3-4f24-a24f-3267a9568543"
2951
+ }, {
2952
+ "properties" : {
2953
+ "title" : "Mixers & DSP Accessories",
2954
+ "nav_title" : "Mixers & DSP"
2955
+ },
2956
+ "path" : "/en/products-revamp/accessories/mixers_dsp_accessories",
2957
+ "uuid" : "40fcf891-e358-4b8a-997f-3cb824b0f1d2"
2958
+ }, {
2959
+ "properties" : {
2960
+ "title" : "Headphones Accessories",
2961
+ "nav_title" : "Headphones"
2962
+ },
2963
+ "path" : "/en/products-revamp/accessories/headphones_accessories",
2964
+ "uuid" : "67655ba0-7a4e-4b03-a697-8e1c05818b53"
2965
+ }, {
2966
+ "properties" : {
2967
+ "title" : "Discussion System Accessories",
2968
+ "nav_title" : "Discussion Systems"
2969
+ },
2970
+ "path" : "/en/products-revamp/accessories/discussion_systems",
2971
+ "uuid" : "aa136a14-2744-404d-bf9b-b74dcfcd922e"
2972
+ }, {
2973
+ "properties" : {
2974
+ "title" : "Problem Solvers",
2975
+ "nav_title" : "Problem Solvers"
2976
+ },
2977
+ "path" : "/en/products-revamp/accessories/problem_solvers",
2978
+ "uuid" : "ae685d1f-2e4f-4d88-9873-e299871b75f5"
2979
+ }, {
2980
+ "properties" : {
2981
+ "nav_hidden" : true,
2982
+ "title" : "Accessory Product Page"
2983
+ },
2984
+ "path" : "/en/products-revamp/accessories/accessory",
2985
+ "uuid" : "5b2fcd6c-9118-4901-b8d1-6520226132db"
2986
+ }, {
2987
+ "properties" : {
2988
+ "title" : "Microphone Accessories and Replacement Parts",
2989
+ "nav_title" : "Microphone Accessories"
2990
+ },
2991
+ "path" : "/en/products-revamp/accessories/microphones_accessories",
2992
+ "uuid" : "0d5d5a5c-ca12-46c5-bc66-89787cab9bf6"
2993
+ } ],
2994
+ "path" : "/en/products-revamp/accessories",
2995
+ "uuid" : "262ff9b9-3b26-4487-97f4-1b80a284d068"
2996
+ }, {
2997
+ "properties" : {
2998
+ "title" : "New products from Shure",
2999
+ "nav_title" : "New Products"
3000
+ },
3001
+ "path" : "/en/products-revamp/new_products",
3002
+ "uuid" : "8eeaf7c0-e4ad-4270-bb0e-a62aee6d125c"
3003
+ }, {
3004
+ "properties" : {
3005
+ "title" : "Shure Discontinued Products",
3006
+ "nav_title" : "Discontinued"
3007
+ },
3008
+ "path" : "/en/products-revamp/discontinued-products",
3009
+ "uuid" : "72d45ad4-3760-4b6a-8c88-a31ca6aece25"
3010
+ }, {
3011
+ "properties" : {
3012
+ "nav_hidden" : true,
3013
+ "title" : "Product Comparison Base Page"
3014
+ },
3015
+ "path" : "/en/products-revamp/comparison",
3016
+ "uuid" : "6021fa15-54a7-45d3-b87a-3612fe74746c"
3017
+ }, {
3018
+ "properties" : {
3019
+ "nav_hidden" : true,
3020
+ "title" : "Notepad Base Page"
3021
+ },
3022
+ "path" : "/en/products-revamp/notepad",
3023
+ "uuid" : "2223c15a-848c-4157-84be-731c7ffaaaec"
3024
+ }, {
3025
+ "properties" : {
3026
+ "nav_hidden" : true
3027
+ },
3028
+ "path" : "/en/products-revamp/----------------",
3029
+ "uuid" : "abd4301b-384f-440c-9e28-d0cd1f98c45f"
3030
+ }, {
3031
+ "properties" : {
3032
+ "nav_hidden" : true,
3033
+ "title" : "Drum Microphone Sets"
3034
+ },
3035
+ "children" : [ {
3036
+ "properties" : {
3037
+ "nav_hidden" : true,
3038
+ "title" : "Drum Microphone Set Product Page"
3039
+ },
3040
+ "path" : "/en/products-revamp/drum_microphone_sets/drum_microphone_set",
3041
+ "uuid" : "5008e7c7-c8e8-4b07-8194-601f056f7071"
3042
+ } ],
3043
+ "path" : "/en/products-revamp/drum_microphone_sets",
3044
+ "uuid" : "e802592f-4161-4e1d-980f-992b1102ac94"
3045
+ }, {
3046
+ "properties" : {
3047
+ "nav_hidden" : true,
3048
+ "title" : "USB Microphone Sets"
3049
+ },
3050
+ "children" : [ {
3051
+ "properties" : {
3052
+ "nav_hidden" : true,
3053
+ "title" : "USB Microphone Set Product Page"
3054
+ },
3055
+ "path" : "/en/products-revamp/usb_microphone_sets/usb_microphone_set",
3056
+ "uuid" : "840dce3d-243f-4afb-8a71-4bdf1cf7ba65"
3057
+ } ],
3058
+ "path" : "/en/products-revamp/usb_microphone_sets",
3059
+ "uuid" : "3a6ba17b-536d-49b7-a482-822c3264cf77"
3060
+ }, {
3061
+ "properties" : {
3062
+ "nav_hidden" : true,
3063
+ "title" : "Discussion Systems"
3064
+ },
3065
+ "children" : [ {
3066
+ "properties" : {
3067
+ "nav_hidden" : true,
3068
+ "title" : "Microflex Product Page"
3069
+ },
3070
+ "path" : "/en/products-revamp/microflex/microflex",
3071
+ "uuid" : "5c9b63f7-8131-4ee9-af44-2285170ccecf"
3072
+ } ],
3073
+ "path" : "/en/products-revamp/microflex",
3074
+ "uuid" : "296d83d7-6093-45cc-8a6b-f8dcce04c962"
3075
+ }, {
3076
+ "properties" : {
3077
+ "nav_hidden" : true,
3078
+ "title" : "Headsets"
3079
+ },
3080
+ "children" : [ {
3081
+ "properties" : {
3082
+ "nav_hidden" : true,
3083
+ "title" : "Headset Product Page"
3084
+ },
3085
+ "path" : "/en/products-revamp/headsets/headset",
3086
+ "uuid" : "661a75f8-991a-4dc8-869a-4d44cac94fee"
3087
+ } ],
3088
+ "path" : "/en/products-revamp/headsets",
3089
+ "uuid" : "9eb70c18-fed0-4bac-9afc-ce1a95f5b2eb"
3090
+ }, {
3091
+ "properties" : {
3092
+ "nav_hidden" : true,
3093
+ "title" : "Microphone Capsules"
3094
+ },
3095
+ "children" : [ {
3096
+ "properties" : {
3097
+ "title" : "Capsule Product Page"
3098
+ },
3099
+ "path" : "/en/products-revamp/capsules/capsule",
3100
+ "uuid" : "0a1d0df6-bd6a-40d2-a134-dbabf01a474f"
3101
+ } ],
3102
+ "path" : "/en/products-revamp/capsules",
3103
+ "uuid" : "11088832-e2e4-4b15-9eff-58478a5ad5ff"
3104
+ } ],
3105
+ "path" : "/en/products-revamp",
3106
+ "uuid" : "d0dd1ecb-6344-4a31-8f32-b969eea1de30"
3107
+ } ]