{"info":{"_postman_id":"d15e0c4a-11dc-4521-8d9b-e322e5ffff92","name":"Cadenzabox docs","description":"<html><head></head><body><p><img src=\"https://cadenzabox.com/mailers/docs/blueprint-hero-small.png\" alt=\"\"></p>\n<p>The <a href=\"https://cadenzabox.com\">Cadenzabox</a> REST API is designed to be a predictable and intuitive interface for managing catalogues of music. If you have a suggestion for our docs or have found a bug, contact the team: <a href=\"mailto:support@cadenzabox.com\">support@cadenzabox.com</a></p>\n<blockquote>\n<p><strong>ℹ️ These docs are a work in progress. If there's something you need that isn't here, please check our</strong> <a href=\"https://cadenzabox.com/docs\"><strong>old docs</strong></a> <strong>or</strong> <a href=\"mailto:support@cadenzabox.com\"><strong>contact the team</strong></a><strong>. 🙏</strong></p>\n</blockquote>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"9230856","collectionId":"d15e0c4a-11dc-4521-8d9b-e322e5ffff92","publishedId":"T1LHGpe3","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"24365E","highlight":"28B9FD"},"publishDate":"2020-08-07T00:39:53.000Z"},"item":[{"name":"Auth + request basics","item":[{"name":"Authentication","event":[{"listen":"test","script":{"id":"527eafd9-5e6c-4ac2-83ee-08dd7fbe9074","exec":["var jsonData = pm.response.json()","pm.environment.set(\"accessTokenAdmin\", jsonData.accessToken)"],"type":"text/javascript","packages":{}}}],"id":"3998c147-e0c2-4eab-acfa-3c7ff668a6bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Origin","value":"{{origin}}","description":"<p>your domain (only needed for client-api), e.g. <a href=\"https://www.example.com\">https://www.example.com</a></p>\n","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"strategy","value":"local","type":"text"},{"key":"email","value":"{{email}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"{{hostAdmin}}/authentication","description":"<p>The Cadenzabox API implements <a href=\"https://jwt.io/introduction/\">JSON Web Tokens (JWT)</a> to allow users to log in to applications without exposing their credentials. The process involves an initial \"login\" request to obtain the token, then subsequent requests to the API which require authentication must supply the JWT as an <code>Authorization</code> HTTP header.</p>\n<h2 id=\"acquire-access-token\">Acquire access token</h2>\n<p>To acquire a JWT access token you must <code>POST</code> to the <code>/authentication</code> endpoint. We support <code>x-www-form-urlencoded</code> arguments or if you prefer, a JSON object of arguments if posting <code>raw</code>/<code>application/json</code>.</p>\n<h2 id=\"example-requests\">Example requests</h2>\n<p>The examples in the sidebar (n.b. the select menu top-right) show a Client API request using <code>x-www-form-urlencoded</code> and an Admin API request using <code>raw</code>/<code>application/json</code>. Both formatting are supported on both endpoints.</p>\n","urlObject":{"path":["authentication"],"host":["{{hostAdmin}}"],"query":[],"variable":[]}},"response":[{"id":"bd82a50e-1763-4046-bdf6-ec21cce14653","name":"Client API","originalRequest":{"method":"POST","header":[{"key":"Origin","value":"{{origin}}","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"strategy","value":"local","type":"text"},{"key":"email","value":"{{email}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"}]},"url":"{{host}}/authentication"},"_postman_previewlanguage":"","header":[{}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"accessToken\": \"eyJhbGc...qD7eUE\",\n    \"user\": {\n        \"_id\": \"555cfb530bf8dc1408702526\",\n        \"isApproved\": true,\n        \"roles\": [\n            \"admin\"\n        ],\n        \"permissions\": [\n            \"download\"\n        ],\n        \"cadenzaboxRoles\": [],\n        \"groupIds\": [\n            \"5ba0f0e25520801fd0e0f40d\"\n        ],\n        \"isVerified\": true,\n        \"newsletterSignup\": false,\n        \"licenceIds\": [],\n        \"firstName\": \"admin\",\n        \"lastName\": \"monitors\",\n        \"email\": \"support@example.com\",\n        \"company\": \"\",\n        \"profilePicture\": \"\",\n        \"orgSlug\": \"demo\",\n        \"createdAt\": \"2020-12-09T11:53:28.470Z\",\n        \"updatedAt\": \"2021-07-08T12:06:58.214Z\",\n        \"__v\": 0\n    },\n    \"authentication\": {\n        \"accessToken\": \"eyJhbGci.......r2i4hszdqD7eUE\",\n        \"payload\": {\n            \"iat\": 0670463516,\n            \"exp\": 1553416463,\n            \"aud\": \"https://yourdomain.com\",\n            \"iss\": \"feathers\",\n            \"sub\": \"2fd0bab08e001552580e40f\",\n            \"jti\": \"266d1fc6-1023-4fce-4a56-ffa353108bdc\"\n        }\n    },\n    \"org\": {\n        \"_id\": \"553255cfb52f8d0b014087c6\",\n        \"name\": \"Demo\",\n        \"slug\": \"demo\"\n    }\n}"},{"id":"be68ce7e-cc21-41ac-a658-679456ecbd88","name":"Admin API","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n \"strategy\": \"local\",\n \"email\": \"{{email}}\",\n \"password\": \"{{password}}\"\n}","options":{"raw":{"language":"json"}}},"url":"{{hostAdmin}}/authentication"},"_postman_previewlanguage":"","header":[{}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"accessToken\": \"eyJhbGciOiJI...m6yP00BbK8MuV4lhA\",\n    \"user\": {\n        \"_id\": \"6ed9c93218fec9d8251fdc7a\",\n        \"email\": \"support@example.com\",\n        \"orgSlug\": \"demo\",\n        \"isApproved\": true,\n        \"roles\": [\"admin\"],\n        \"permissions\": [\"download\"],\n        \"firstName\": \"Made Music\",\n        \"lastName\": \"Studio\",\n        \"company\": \"\",\n        \"telephone\": \"\",\n        \"usage\": \"\",\n        \"businessType\": \"\",\n        \"cadenzaboxRoles\": [],\n        \"groupIds\": [],\n        \"isVerified\": true,\n        \"profilePicture\": \"\",\n        \"jobTitle\": \"\",\n        \"address\": \"\",\n        \"userLanguage\": \"\",\n        \"country\": \"\",\n        \"postcode\": \"\",\n        \"newsletterSignup\": false,\n        \"clientId\": \"\",\n        \"licenceIds\": [],\n        \"planIds\": [],\n        \"approvedByDomain\": false,\n        \"taxNumber\": \"\",\n        \"createdAt\": \"2020-08-06T09:34:07.159Z\",\n        \"updatedAt\": \"2020-08-07T14:31:56.894Z\",\n        \"__v\": 0,\n        \"lastLogin\": \"2020-08-07T14:31:56.770Z\"\n    },\n    \"authentication\": {\n        \"accessToken\": \"eyJhb...uV4lhA\",\n        \"payload\": {\n            \"iat\": 1054577419,\n            \"exp\": 1054663819,\n            \"aud\": \"https://yourdomain.com\",\n            \"iss\": \"feathers\",\n            \"sub\": \"6893218f25....ed9cec9d7a\",\n            \"jti\": \"7c25fbc3-abe-45d3-123-486cd4f55721\"\n        }\n    },\n    \"org\": {\n        \"_id\": \"5d0b014087c655cfb532852f\",\n        \"name\": \"Demo\",\n        \"slug\": \"demo\"\n    }\n}"}],"_postman_id":"3998c147-e0c2-4eab-acfa-3c7ff668a6bb"},{"name":"Pagination + sort order","id":"e7363789-28fc-41bc-b5dc-b58f623a5c7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"disabled":false,"key":"Origin","value":"{{origin}}"},{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":"{{hostAdmin}}/tracks?$skip=250&$limit=50&$sort[code]=-1&$sort[updatedAt]=-1","description":"<p>Most endpoints support listing of multiple documents, pagination, and sorting.</p>\n<h2 id=\"pagination\">Pagination</h2>\n<p><code>$skip</code> denotes which item to start from (using a zero-based index). For example if you wanted page four and there were 10 items per page, you would “skip” over the first 30 items.</p>\n<p>Change the number of items returned with <code>$limit</code>.</p>\n<p>If you just want to count the total results for a query, and are not interested in the results themselves, <code>$limit</code> can be set to <code>0</code>.</p>\n<h2 id=\"sort\">Sort</h2>\n<p>Sorting can be by multiple props, passed in the order required to the <code>$sort</code> array.</p>\n<p>Each subsequent prop to sort by will sub-sort all cases where the first prop has a matching result (e.g. tracks with the same <code>code</code>, subsorted by <code>updatedAt</code>).</p>\n","urlObject":{"path":["tracks"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>optional, int — paginate through by this count</p>\n","type":"text/plain"},"key":"$skip","value":"250"},{"description":{"content":"<p>optional, int — count to return per page</p>\n","type":"text/plain"},"key":"$limit","value":"50"},{"description":{"content":"<p>1 = ascending, -1 = descending</p>\n","type":"text/plain"},"key":"$sort[code]","value":"-1"},{"description":{"content":"<p>example secondary sort order</p>\n","type":"text/plain"},"key":"$sort[updatedAt]","value":"-1"}],"variable":[]}},"response":[{"id":"f6a650b6-5ede-49e4-959c-ae1436aa6f7b","name":"Tracks","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":{"raw":"{{hostAdmin}}/tracks","host":["{{hostAdmin}}"],"path":["tracks"],"query":[{"key":"$skip","value":"250","description":"optional, int — paginate through by this count","disabled":true},{"key":"$limit","value":"50","type":"text","description":"optional, int — count to return per page","disabled":true},{"key":"isMain","value":"true","description":"optional, boolean — filter to main tracks only","disabled":true},{"key":"parentId","value":"{{parentId}}","type":"text","description":"optional, mongoId — tracks with a specific parent","disabled":true},{"key":"releaseId","value":"{{releaseId}}","type":"text","description":"optional, mongoId — tracks on a specific release","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Etag","value":"W/\"20d36-iQxO+QucBQKjWAU3JKye2MxJVtc\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Mon, 28 Feb 2022 17:19:03 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": [{}, {}, {}], // results appear in this array\n    \"total\": 72,\n    \"aggregations\": {\n        \"tags\": {\n            \"data\": [],\n            \"total\": 0\n        },\n        \"releases\": {\n            \"data\": [],\n            \"total\": 0\n        }\n    }\n}"}],"_postman_id":"e7363789-28fc-41bc-b5dc-b58f623a5c7c"}],"id":"c5e4c43b-f7b3-4df9-bbd8-2fed9df304e7","description":"<h2 id=\"choose-an-api\">Choose an API</h2>\n<p>Cadenzabox has two distinct APIs, with varying features.</p>\n<ul>\n<li><a href=\"https://api.cadenzabox.com\">api.cadenzabox.com</a></li>\n<li><a href=\"https://admin.api.cadenzabox.com\">admin.api.cadenzabox.com</a></li>\n</ul>\n<p>Both APIs also have a QA environment with a separate database, useful for testing.</p>\n<ul>\n<li><a href=\"https://api.qa.cadenzabox.com\">api.qa.cadenzabox.com</a></li>\n<li><a href=\"https://admin.api.qa.cadenzabox.com\">admin.api.qa.cadenzabox.com</a></li>\n</ul>\n<h2 id=\"websockets-api\">WebSockets API</h2>\n<p>We also support requests via WebSockets. Whilst this is currently in use for all of our frontend library instances, our WebSockets API is presently undocumented. Please email <code>support@cadenzabox.com</code> if you are interested in using this API.</p>\n","_postman_id":"c5e4c43b-f7b3-4df9-bbd8-2fed9df304e7"},{"name":"Tracks","item":[{"name":"Tracks","id":"3f2c2d3d-be01-4248-92d4-45d7662106b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tracks?mongo=true","urlObject":{"path":["tracks"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc</p>\n","type":"text/plain"},"key":"mongo","value":"true"},{"disabled":true,"description":{"content":"<p>optional, int — paginate through by this count</p>\n","type":"text/plain"},"key":"$skip","value":"250"},{"disabled":true,"description":{"content":"<p>optional, int — count to return per page</p>\n","type":"text/plain"},"key":"$limit","value":"50"},{"disabled":true,"description":{"content":"<p>optional, boolean — filter to main tracks only</p>\n","type":"text/plain"},"key":"isMain","value":"true"},{"disabled":true,"description":{"content":"<p>optional, mongoId — tracks with a specific parent</p>\n","type":"text/plain"},"key":"parentId","value":"{{parentId}}"},{"disabled":true,"description":{"content":"<p>optional, mongoId — tracks on a specific release</p>\n","type":"text/plain"},"key":"releaseId","value":"{{releaseId}}"},{"disabled":true,"description":{"content":"<p>Example filter - updated after a specified date</p>\n","type":"text/plain"},"key":"updatedAt[$gte]","value":"2025-06-01"},{"disabled":true,"description":{"content":"<p>Example filter - created after date and time</p>\n","type":"text/plain"},"key":"createdAt[$gte]","value":"2025-06-05T17:00:00.000Z"},{"disabled":true,"description":{"content":"<p>An array of fields to select for inclusion in track data</p>\n","type":"text/plain"},"key":"$select[]","value":"releaseId"},{"disabled":true,"description":{"content":"<p>Continuing the selection array for multiple fields</p>\n","type":"text/plain"},"key":"$select[]","value":"composerIds"},{"disabled":true,"description":{"content":"<p>Note, related ids (eg composerIds) must appear in selection to also populate related documents (eg composers)</p>\n","type":"text/plain"},"key":"$select[]","value":"composers"}],"variable":[]}},"response":[{"id":"5f624ff0-175f-434e-bf32-ff86c4a59b93","name":"Tracks","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":{"raw":"{{hostAdmin}}/tracks","host":["{{hostAdmin}}"],"path":["tracks"],"query":[{"key":"$skip","value":"250","description":"optional, int — paginate through by this count","disabled":true},{"key":"$limit","value":"50","type":"text","description":"optional, int — count to return per page","disabled":true},{"key":"isMain","value":"true","description":"optional, boolean — filter to main tracks only","disabled":true},{"key":"parentId","value":"{{parentId}}","type":"text","description":"optional, mongoId — tracks with a specific parent","disabled":true},{"key":"releaseId","value":"{{releaseId}}","type":"text","description":"optional, mongoId — tracks on a specific release","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Etag","value":"W/\"20d36-iQxO+QucBQKjWAU3JKye2MxJVtc\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Mon, 28 Feb 2022 17:19:03 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"{\n    \"data\": [{}, {}, {}], // objects are tracks, see individual track definition below\n    \"total\": 72,\n    \"aggregations\": {\n        \"tags\": {\n            \"data\": [],\n            \"total\": 0\n        },\n        \"releases\": {\n            \"data\": [],\n            \"total\": 0\n        }\n    }\n}"}],"_postman_id":"3f2c2d3d-be01-4248-92d4-45d7662106b0"},{"name":"Tracks within date range (from mongo)","id":"3e17dafe-183d-4b3a-bf2b-cd1ae2acf127","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tracks?mongo=true&updatedAt[$gte]=2024-06-01&updatedAt[$lte]=2025-06-05T17:00:00.000Z","urlObject":{"path":["tracks"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc</p>\n","type":"text/plain"},"key":"mongo","value":"true"},{"disabled":true,"description":{"content":"<p>optional, int — paginate through by this count</p>\n","type":"text/plain"},"key":"$skip","value":"250"},{"disabled":true,"description":{"content":"<p>optional, int — count to return per page</p>\n","type":"text/plain"},"key":"$limit","value":"50"},{"description":{"content":"<p>Example filter - updated after a specified date</p>\n","type":"text/plain"},"key":"updatedAt[$gte]","value":"2024-06-01"},{"description":{"content":"<p>Example filter - created after date and time</p>\n","type":"text/plain"},"key":"updatedAt[$lte]","value":"2025-06-05T17:00:00.000Z"}],"variable":[]}},"response":[{"id":"fdab33cb-5ba3-45d9-a6be-44475eb0a817","name":"Tracks within date range","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":{"raw":"{{hostAdmin}}/tracks?mongo=true&updatedAt[$gte]=2024-06-01&updatedAt[$lte]=2025-06-05T17:00:00.000Z","host":["{{hostAdmin}}"],"path":["tracks"],"query":[{"key":"mongo","value":"true","description":"Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc"},{"key":"$skip","value":"250","description":"optional, int — paginate through by this count","disabled":true},{"key":"$limit","value":"50","description":"optional, int — count to return per page","type":"text","disabled":true},{"key":"isMain","value":"true","description":"optional, boolean — filter to main tracks only","disabled":true},{"key":"parentId","value":"{{parentId}}","description":"optional, mongoId — tracks with a specific parent","type":"text","disabled":true},{"key":"releaseId","value":"{{releaseId}}","description":"optional, mongoId — tracks on a specific release","type":"text","disabled":true},{"key":"updatedAt[$gte]","value":"2024-06-01","description":"Example filter - updated after a specified date","type":"text"},{"key":"updatedAt[$lte]","value":"2025-06-05T17:00:00.000Z","description":"Example filter - created after date and time","type":"text"},{"key":"updatedAt[$lt]","value":"releaseId","description":"An array of fields to select for inclusion in track data","type":"text","disabled":true},{"key":"$select[]","value":"composerIds","description":"Continuing the selection array for multiple fields","type":"text","disabled":true},{"key":"$select[]","value":"composers","description":"Note, related ids (eg composerIds) must appear in selection to also populate related documents (eg composers)","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Aug 2025 14:53:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=3%2B69m0pV2yWBGbLfIp63hjSC%2F2ROrUQzGhyU1zlXEt45QUTC6nUZu2NgHhD51kDSUOu%2Ff1izLVW0klLRbLLNj%2Bu6SNpk7zfHGk2CQKJh3NhpJdECvw%3D%3D\"}]}"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"216d8-RQ+JxOW9x2DKhtxHZ1qfsGa6x/I\""},{"key":"Rndr-Id","value":"e9601f09-48bb-4a92"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Render-Origin-Server","value":"Render"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"CF-RAY","value":"96e90b79ead5ef25-LHR"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 160,\n    \"limit\": 10,\n    \"skip\": 0,\n    \"data\": [\n        {\n            \"_id\": \"64512567ecceb8e76c1553d8\",\n            \"slug\": \"vsb001-1v1\",\n            \"longSlug\": \"vsb001-1-bespoke-element-1-alternate-version-1\",\n            \"shortSlug\": \"vsb001-1\",\n            \"code\": \"\",\n            \"title\": \"Bespoke element 1\",\n            \"orgSlug\": \"demo\",\n            \"versionTitle\": \"Alternate version 1\",\n            \"description\": \"\",\n            \"isPublished\": false,\n            \"isMain\": false,\n            \"trackNumber\": 1,\n            \"versionNumber\": 1,\n            \"catalogueNumber\": \"\",\n            \"releaseCode\": \"vsb001\",\n            \"bpm\": 0,\n            \"key\": \"\",\n            \"state\": \"queued\",\n            \"iswc\": \"\",\n            \"isrc\": \"\",\n            \"tunecode\": \"\",\n            \"gemacode\": \"\",\n            \"lyrics\": \"\",\n            \"waveformData\": [],\n            \"releaseId\": \"645124e3ecceb8e76c1550b1\",\n            \"parentId\": \"64512500ecceb8e76c155134\",\n            \"tagIds\": [],\n            \"tags\": [\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Mood→Courageous\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Courageous\"\n                },\n                {\n                    \"id\": \"Instrumentation→Electric Organ\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Electric Organ\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                }\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\"\n            ],\n            \"composerIds\": [],\n            \"searchMetadata\": \"\",\n            \"aiState\": \"initial\",\n            \"deliveries\": {\n                \"soundmouse\": {\n                    \"metadata\": {\n                        \"state\": \"initial\",\n                        \"sent\": false\n                    },\n                    \"audio\": {\n                        \"state\": \"initial\",\n                        \"sent\": false,\n                        \"receiptConfirmed\": false\n                    },\n                    \"state\": \"initial\"\n                }\n            },\n            \"createdAt\": \"2023-05-02T14:59:51.009Z\",\n            \"updatedAt\": \"2024-11-26T12:19:32.827Z\",\n            \"__v\": 0,\n            \"siblingCount\": 1,\n            \"composers\": [],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {}\n        },\n        {\n            \"_id\": \"5f3c51ce801b650015640588\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -6,\n                5,\n                -32,\n                21,\n                -62,\n                48,\n                -77,\n                52,\n                -84,\n                66,\n                -97,\n                79,\n                -89,\n                69,\n                -94,\n                65,\n                -99,\n                87,\n                -99,\n                81,\n                -85,\n                61,\n                -94,\n                69,\n                -99,\n                84,\n                -82,\n                75,\n                -80,\n                82,\n                -83,\n                96,\n                -79,\n                84,\n                -79,\n                81,\n                -89,\n                84,\n                -101,\n                97,\n                -86,\n                87,\n                -85,\n                115,\n                -97,\n                94,\n                -77,\n                83,\n                -79,\n                93,\n                -87,\n                91,\n                -85,\n                85,\n                -71,\n                90,\n                -60,\n                97,\n                -68,\n                90,\n                -71,\n                97,\n                -53,\n                91,\n                -68,\n                91,\n                -57,\n                94,\n                -54,\n                90,\n                -60,\n                69,\n                -71,\n                86,\n                -71,\n                69,\n                -72,\n                71,\n                -91,\n                70,\n                -83,\n                76,\n                -83,\n                72,\n                -84,\n                78,\n                -77,\n                68,\n                -78,\n                75,\n                -88,\n                74,\n                -88,\n                69,\n                -98,\n                65,\n                -85,\n                68,\n                -87,\n                78,\n                -89,\n                84,\n                -85,\n                73,\n                -85,\n                87,\n                -97,\n                88,\n                -101,\n                72,\n                -84,\n                82,\n                -82,\n                86,\n                -85,\n                95,\n                -81,\n                95,\n                -74,\n                88,\n                -77,\n                95,\n                -75,\n                91,\n                -69,\n                112,\n                -81,\n                111,\n                -79,\n                82,\n                -74,\n                100,\n                -68,\n                109,\n                -76,\n                98,\n                -66,\n                95,\n                -89,\n                116,\n                -83,\n                112,\n                -80,\n                93,\n                -78,\n                80,\n                -97,\n                93,\n                -104,\n                89,\n                -99,\n                67,\n                -97,\n                66,\n                -96,\n                78,\n                -98,\n                71,\n                -89,\n                70,\n                -102,\n                78,\n                -93,\n                77,\n                -93,\n                98,\n                -100,\n                101,\n                -97,\n                97,\n                -87,\n                101,\n                -104,\n                118,\n                -81,\n                99,\n                -82,\n                106,\n                -81,\n                115,\n                -77,\n                107,\n                -80,\n                114,\n                -72,\n                102,\n                -105,\n                122,\n                -91,\n                124,\n                -80,\n                104,\n                -92,\n                98,\n                -87,\n                89,\n                -76,\n                96,\n                -77,\n                107,\n                -81,\n                104,\n                -73,\n                91,\n                -72,\n                82,\n                -85,\n                84,\n                -79,\n                79,\n                -87,\n                77,\n                -90,\n                74,\n                -101,\n                85,\n                -98,\n                82,\n                -100,\n                74,\n                -88,\n                73,\n                -105,\n                76,\n                -102,\n                71,\n                -112,\n                66,\n                -96,\n                93,\n                -98,\n                86,\n                -115,\n                85,\n                -102,\n                83,\n                -106,\n                97,\n                -95,\n                91,\n                -93,\n                97,\n                -104,\n                102,\n                -94,\n                103,\n                -102,\n                106,\n                -103,\n                105,\n                -84,\n                111,\n                -84,\n                112,\n                -87,\n                114,\n                -85,\n                102,\n                -73,\n                107,\n                -81,\n                100,\n                -93,\n                103,\n                -75,\n                125,\n                -82,\n                112,\n                -64,\n                117,\n                -64,\n                108,\n                -77,\n                97,\n                -73,\n                91,\n                -77,\n                98,\n                -86,\n                81,\n                -76,\n                75,\n                -83,\n                82,\n                -90,\n                73,\n                -91,\n                76,\n                -81,\n                62,\n                -79,\n                72,\n                -85,\n                58,\n                -72,\n                63,\n                -84,\n                84,\n                -85,\n                57,\n                -83,\n                68,\n                -89,\n                64,\n                -88,\n                59,\n                -92,\n                65,\n                -80,\n                77,\n                -86,\n                66,\n                -89,\n                69,\n                -81,\n                81,\n                -84,\n                81,\n                -85,\n                69,\n                -80,\n                75,\n                -81,\n                87,\n                -79,\n                79,\n                -77,\n                81,\n                -72,\n                86,\n                -86,\n                82,\n                -86,\n                91,\n                -75,\n                83,\n                -72,\n                87,\n                -73,\n                89,\n                -70,\n                93,\n                -65,\n                106,\n                -66,\n                94,\n                -63,\n                95,\n                -62,\n                91,\n                -64,\n                80,\n                -51,\n                78,\n                -53,\n                84,\n                -71,\n                74,\n                -65,\n                79,\n                -81,\n                75,\n                -69,\n                82,\n                -72,\n                71,\n                -78,\n                61,\n                -79,\n                62,\n                -72,\n                75,\n                -88,\n                60,\n                -95,\n                62,\n                -87,\n                58,\n                -89,\n                66,\n                -87,\n                55,\n                -86,\n                63,\n                -88,\n                66,\n                -97,\n                62,\n                -91,\n                66,\n                -95,\n                68,\n                -87,\n                74,\n                -86,\n                72,\n                -83,\n                82,\n                -85,\n                93,\n                -88,\n                78,\n                -71,\n                80,\n                -79,\n                84,\n                -77,\n                83,\n                -82,\n                86,\n                -66,\n                91,\n                -67,\n                78,\n                -68,\n                79,\n                -68,\n                93,\n                -67,\n                99,\n                -65,\n                90,\n                -63,\n                81,\n                -58,\n                88,\n                -69,\n                89,\n                -56,\n                84,\n                -57,\n                92,\n                -57,\n                82,\n                -73,\n                86,\n                -77,\n                72,\n                -84,\n                71,\n                -85,\n                73,\n                -89,\n                84,\n                -109,\n                72,\n                -97,\n                79,\n                -90,\n                75,\n                -86,\n                77,\n                -70,\n                82,\n                -86,\n                95,\n                -79,\n                92,\n                -86,\n                100,\n                -86,\n                108,\n                -79,\n                111,\n                -72,\n                103,\n                -71,\n                105,\n                -79,\n                118,\n                -78,\n                111,\n                -74,\n                99,\n                -78,\n                99,\n                -79,\n                104,\n                -84,\n                88,\n                -87,\n                98,\n                -78,\n                103,\n                -76,\n                95,\n                -87,\n                89,\n                -93,\n                84,\n                -88,\n                92,\n                -84,\n                91,\n                -89,\n                81,\n                -84,\n                88,\n                -81,\n                74,\n                -89,\n                67,\n                -84,\n                68,\n                -95,\n                86,\n                -85,\n                83,\n                -79,\n                82,\n                -107,\n                75,\n                -113,\n                94,\n                -112,\n                85,\n                -103,\n                83,\n                -112,\n                86,\n                -102,\n                81,\n                -98,\n                100,\n                -108,\n                88,\n                -98,\n                90,\n                -98,\n                107,\n                -86,\n                98,\n                -92,\n                105,\n                -96,\n                96,\n                -94,\n                115,\n                -104,\n                110,\n                -95,\n                110,\n                -94,\n                106,\n                -85,\n                119,\n                -86,\n                114,\n                -74,\n                112,\n                -78,\n                112,\n                -78,\n                115,\n                -73,\n                107,\n                -87,\n                109,\n                -80,\n                114,\n                -82,\n                104,\n                -89,\n                114,\n                -86,\n                92,\n                -78,\n                89,\n                -83,\n                88,\n                -94,\n                85,\n                -106,\n                81,\n                -114,\n                87,\n                -94,\n                73,\n                -100,\n                73,\n                -102,\n                82,\n                -106,\n                86,\n                -98,\n                75,\n                -94,\n                77,\n                -89,\n                70,\n                -91,\n                79,\n                -97,\n                76,\n                -82,\n                79,\n                -89,\n                71,\n                -84,\n                70,\n                -82,\n                62,\n                -78,\n                66,\n                -77,\n                67,\n                -53,\n                57,\n                -42,\n                44,\n                -32,\n                42,\n                -33,\n                28,\n                -19,\n                23,\n                -13,\n                18,\n                -9,\n                9,\n                -4,\n                6,\n                -1,\n                2,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7285\",\n                \"5ed7e02d2f47de0014963aa2\",\n                \"5e3c529994532a0014a05a4d\",\n                \"5ec65a19cd35e20014b8d187\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b19\",\n                \"5e3c529b94532a0014a05b4f\",\n                \"5f3c51ce801b65001564056c\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5dd3d83dae2b950014ef2355\",\n                \"5ed7e0202f47de00149638e2\",\n                \"5ec65a1acd35e20014b8d1cb\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5ec65a19cd35e20014b8d173\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5ec65a19cd35e20014b8d19b\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Dying Light\",\n            \"slug\": \"wpm090-20\",\n            \"longSlug\": \"wpm090-20-dying-light-30s\",\n            \"parentId\": \"5f3c51ce801b650015640581\",\n            \"originalFilename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900279\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 20,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Dying Light\",\n                \"TRACK: Display Title\": \"Dying Light\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n                \"TRACK: Number\": \"020\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"010\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"459d6b02c4bd13811d297656266d5c05d8db021b\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900279\",\n                \"_tags\": [\n                    \"synth\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium-fast\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-20\",\n            \"createdAt\": \"2020-08-18T22:10:22.880Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Emotional\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotional\"\n                },\n                {\n                    \"id\": \"Mood→Emotive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotive\"\n                },\n                {\n                    \"id\": \"Keywords→Tender\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Tender\"\n                },\n                {\n                    \"id\": \"Mood→Sensitive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sensitive\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Sentimental\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sentimental\"\n                },\n                {\n                    \"id\": \"Keywords→Nostalgic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Nostalgic\"\n                },\n                {\n                    \"id\": \"Mood→Touching\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Touching\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Sad\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sad\"\n                },\n                {\n                    \"id\": \"Keywords→melancholic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"melancholic\"\n                },\n                {\n                    \"id\": \"Mood→Sombre\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sombre\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Family\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Family\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Nature\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Nature\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -7,\n                3,\n                -22,\n                17,\n                -48,\n                34,\n                -65,\n                44,\n                -83,\n                74,\n                -94,\n                71,\n                -86,\n                94,\n                -80,\n                86,\n                -88,\n                99,\n                -92,\n                77,\n                -88,\n                79,\n                -91,\n                95,\n                -78,\n                109,\n                -76,\n                116,\n                -64,\n                102,\n                -70,\n                93,\n                -87,\n                89,\n                -82,\n                83,\n                -70,\n                79,\n                -105,\n                87,\n                -95,\n                79,\n                -99,\n                84,\n                -98,\n                81,\n                -103,\n                63,\n                -107,\n                98,\n                -113,\n                75,\n                -98,\n                73,\n                -89,\n                77,\n                -78,\n                80,\n                -81,\n                100,\n                -71,\n                112,\n                -66,\n                111,\n                -82,\n                98,\n                -89,\n                105,\n                -70,\n                118,\n                -95,\n                102,\n                -103,\n                100,\n                -86,\n                99,\n                -95,\n                100,\n                -87,\n                82,\n                -97,\n                74,\n                -105,\n                81,\n                -110,\n                72,\n                -107,\n                80,\n                -93,\n                77,\n                -91,\n                85,\n                -92,\n                88,\n                -110,\n                85,\n                -102,\n                78,\n                -91,\n                83,\n                -78,\n                87,\n                -95,\n                92,\n                -81,\n                79,\n                -70,\n                88,\n                -73,\n                84,\n                -72,\n                87,\n                -70,\n                97,\n                -73,\n                98,\n                -70,\n                81,\n                -81,\n                96,\n                -94,\n                94,\n                -87,\n                102,\n                -78,\n                91,\n                -88,\n                80,\n                -83,\n                107,\n                -93,\n                98,\n                -102,\n                93,\n                -88,\n                93,\n                -69,\n                94,\n                -76,\n                113,\n                -93,\n                126,\n                -71,\n                97,\n                -100,\n                107,\n                -110,\n                81,\n                -102,\n                89,\n                -92,\n                90,\n                -75,\n                102,\n                -81,\n                94,\n                -83,\n                88,\n                -68,\n                123,\n                -71,\n                112,\n                -101,\n                95,\n                -101,\n                87,\n                -95,\n                96,\n                -95,\n                113,\n                -102,\n                88,\n                -95,\n                91,\n                -105,\n                123,\n                -97,\n                104,\n                -101,\n                88,\n                -102,\n                75,\n                -94,\n                83,\n                -79,\n                97,\n                -98,\n                97,\n                -71,\n                89,\n                -79,\n                78,\n                -124,\n                76,\n                -111,\n                99,\n                -70,\n                93,\n                -65,\n                105,\n                -79,\n                95,\n                -83,\n                98,\n                -76,\n                116,\n                -97,\n                104,\n                -109,\n                93,\n                -109,\n                87,\n                -79,\n                91,\n                -91,\n                70,\n                -76,\n                99,\n                -78,\n                117,\n                -78,\n                121,\n                -95,\n                112,\n                -96,\n                90,\n                -104,\n                88,\n                -101,\n                82,\n                -87,\n                75,\n                -70,\n                82,\n                -64,\n                88,\n                -90,\n                61,\n                -87,\n                68,\n                -92,\n                87,\n                -90,\n                91,\n                -76,\n                100,\n                -83,\n                98,\n                -80,\n                107,\n                -81,\n                119,\n                -75,\n                95,\n                -80,\n                83,\n                -94,\n                84,\n                -81,\n                87,\n                -76,\n                85,\n                -70,\n                105,\n                -81,\n                111,\n                -77,\n                102,\n                -63,\n                105,\n                -85,\n                69,\n                -96,\n                75,\n                -100,\n                80,\n                -82,\n                81,\n                -84,\n                76,\n                -77,\n                67,\n                -84,\n                74,\n                -99,\n                79,\n                -104,\n                88,\n                -95,\n                83,\n                -83,\n                100,\n                -75,\n                105,\n                -65,\n                101,\n                -76,\n                84,\n                -82,\n                86,\n                -78,\n                91,\n                -76,\n                103,\n                -71,\n                98,\n                -76,\n                106,\n                -70,\n                99,\n                -73,\n                99,\n                -66,\n                84,\n                -68,\n                100,\n                -58,\n                98,\n                -76,\n                74,\n                -97,\n                74,\n                -90,\n                80,\n                -91,\n                86,\n                -92,\n                74,\n                -108,\n                73,\n                -102,\n                70,\n                -107,\n                71,\n                -100,\n                75,\n                -93,\n                79,\n                -74,\n                79,\n                -87,\n                94,\n                -80,\n                100,\n                -61,\n                118,\n                -59,\n                115,\n                -64,\n                110,\n                -71,\n                102,\n                -59,\n                78,\n                -61,\n                72,\n                -69,\n                73,\n                -80,\n                90,\n                -87,\n                87,\n                -106,\n                87,\n                -76,\n                86,\n                -66,\n                113,\n                -77,\n                102,\n                -90,\n                90,\n                -72,\n                96,\n                -86,\n                89,\n                -82,\n                77,\n                -85,\n                79,\n                -83,\n                79,\n                -69,\n                92,\n                -68,\n                92,\n                -80,\n                86,\n                -87,\n                102,\n                -90,\n                87,\n                -81,\n                87,\n                -72,\n                92,\n                -68,\n                89,\n                -70,\n                105,\n                -97,\n                103,\n                -88,\n                92,\n                -95,\n                83,\n                -77,\n                74,\n                -95,\n                86,\n                -79,\n                82,\n                -89,\n                79,\n                -97,\n                88,\n                -70,\n                96,\n                -72,\n                94,\n                -83,\n                92,\n                -92,\n                98,\n                -77,\n                98,\n                -81,\n                117,\n                -67,\n                108,\n                -78,\n                102,\n                -98,\n                93,\n                -91,\n                105,\n                -86,\n                82,\n                -97,\n                72,\n                -91,\n                68,\n                -103,\n                65,\n                -108,\n                75,\n                -84,\n                65,\n                -79,\n                87,\n                -74,\n                85,\n                -68,\n                94,\n                -69,\n                91,\n                -89,\n                91,\n                -71,\n                78,\n                -69,\n                95,\n                -75,\n                92,\n                -78,\n                84,\n                -89,\n                89,\n                -75,\n                88,\n                -63,\n                102,\n                -87,\n                79,\n                -95,\n                75,\n                -87,\n                87,\n                -90,\n                84,\n                -95,\n                96,\n                -85,\n                82,\n                -73,\n                76,\n                -79,\n                83,\n                -75,\n                79,\n                -85,\n                88,\n                -83,\n                91,\n                -60,\n                114,\n                -75,\n                101,\n                -75,\n                100,\n                -71,\n                99,\n                -69,\n                112,\n                -97,\n                113,\n                -89,\n                84,\n                -89,\n                85,\n                -99,\n                76,\n                -87,\n                95,\n                -89,\n                74,\n                -71,\n                82,\n                -81,\n                78,\n                -69,\n                78,\n                -97,\n                72,\n                -95,\n                78,\n                -85,\n                110,\n                -85,\n                109,\n                -81,\n                94,\n                -101,\n                93,\n                -108,\n                80,\n                -94,\n                90,\n                -89,\n                107,\n                -82,\n                123,\n                -68,\n                111,\n                -82,\n                104,\n                -86,\n                80,\n                -92,\n                90,\n                -100,\n                80,\n                -107,\n                68,\n                -87,\n                70,\n                -95,\n                90,\n                -79,\n                102,\n                -79,\n                85,\n                -100,\n                82,\n                -98,\n                95,\n                -94,\n                84,\n                -90,\n                77,\n                -78,\n                102,\n                -78,\n                108,\n                -79,\n                89,\n                -88,\n                75,\n                -90,\n                81,\n                -86,\n                111,\n                -74,\n                119,\n                -83,\n                117,\n                -88,\n                117,\n                -102,\n                99,\n                -85,\n                83,\n                -79,\n                69,\n                -73,\n                67,\n                -74,\n                72,\n                -61,\n                75,\n                -68,\n                58,\n                -58,\n                59,\n                -61,\n                49,\n                -57,\n                43,\n                -59,\n                43,\n                -48,\n                33,\n                -39,\n                26,\n                -27,\n                16,\n                -13,\n                15,\n                -9,\n                7,\n                -3,\n                4,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec6598ecd35e20014b8d0ef\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Contemplation\",\n            \"slug\": \"wpm090-13\",\n            \"longSlug\": \"wpm090-13-contemplation-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057f\",\n            \"originalFilename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900272\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 113,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Contemplation\",\n                \"TRACK: Display Title\": \"Contemplation\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"003\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"113\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"c5ea64ecb0180b68e0bf1f60ccedae2bd9ef972d\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900272\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-13\",\n            \"createdAt\": \"2020-08-18T22:10:22.909Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Mood→Edgy\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Edgy\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -4,\n                3,\n                -15,\n                17,\n                -36,\n                41,\n                -51,\n                70,\n                -64,\n                81,\n                -78,\n                90,\n                -88,\n                95,\n                -90,\n                105,\n                -95,\n                86,\n                -96,\n                101,\n                -93,\n                98,\n                -91,\n                86,\n                -80,\n                82,\n                -80,\n                100,\n                -73,\n                100,\n                -72,\n                91,\n                -75,\n                90,\n                -83,\n                94,\n                -89,\n                90,\n                -81,\n                110,\n                -87,\n                106,\n                -92,\n                103,\n                -94,\n                98,\n                -92,\n                97,\n                -82,\n                99,\n                -73,\n                84,\n                -76,\n                91,\n                -66,\n                87,\n                -69,\n                69,\n                -71,\n                75,\n                -62,\n                76,\n                -73,\n                81,\n                -87,\n                97,\n                -92,\n                104,\n                -90,\n                95,\n                -94,\n                98,\n                -87,\n                89,\n                -76,\n                85,\n                -67,\n                77,\n                -67,\n                86,\n                -67,\n                84,\n                -70,\n                84,\n                -68,\n                82,\n                -75,\n                80,\n                -68,\n                64,\n                -72,\n                69,\n                -83,\n                94,\n                -88,\n                85,\n                -75,\n                75,\n                -84,\n                73,\n                -94,\n                81,\n                -76,\n                82,\n                -74,\n                90,\n                -65,\n                98,\n                -61,\n                93,\n                -64,\n                95,\n                -69,\n                93,\n                -88,\n                93,\n                -83,\n                106,\n                -91,\n                104,\n                -80,\n                113,\n                -96,\n                122,\n                -87,\n                94,\n                -83,\n                90,\n                -71,\n                97,\n                -79,\n                96,\n                -63,\n                85,\n                -63,\n                87,\n                -77,\n                78,\n                -82,\n                99,\n                -83,\n                97,\n                -73,\n                97,\n                -97,\n                80,\n                -91,\n                81,\n                -79,\n                90,\n                -86,\n                83,\n                -89,\n                76,\n                -92,\n                79,\n                -87,\n                76,\n                -80,\n                72,\n                -59,\n                77,\n                -86,\n                93,\n                -93,\n                74,\n                -75,\n                81,\n                -78,\n                75,\n                -91,\n                77,\n                -81,\n                80,\n                -85,\n                105,\n                -82,\n                84,\n                -86,\n                82,\n                -76,\n                94,\n                -72,\n                93,\n                -66,\n                84,\n                -70,\n                104,\n                -67,\n                85,\n                -72,\n                78,\n                -80,\n                96,\n                -78,\n                86,\n                -84,\n                79,\n                -88,\n                100,\n                -89,\n                97,\n                -96,\n                88,\n                -91,\n                98,\n                -77,\n                97,\n                -79,\n                102,\n                -69,\n                104,\n                -71,\n                91,\n                -70,\n                91,\n                -79,\n                96,\n                -90,\n                96,\n                -79,\n                87,\n                -96,\n                97,\n                -94,\n                98,\n                -82,\n                99,\n                -103,\n                94,\n                -93,\n                98,\n                -90,\n                86,\n                -105,\n                80,\n                -89,\n                86,\n                -80,\n                70,\n                -62,\n                72,\n                -68,\n                75,\n                -95,\n                71,\n                -92,\n                78,\n                -96,\n                91,\n                -104,\n                93,\n                -87,\n                81,\n                -79,\n                68,\n                -74,\n                74,\n                -76,\n                76,\n                -73,\n                75,\n                -80,\n                72,\n                -63,\n                84,\n                -68,\n                85,\n                -71,\n                84,\n                -68,\n                83,\n                -77,\n                79,\n                -79,\n                70,\n                -83,\n                84,\n                -84,\n                90,\n                -76,\n                76,\n                -75,\n                83,\n                -73,\n                82,\n                -66,\n                80,\n                -67,\n                102,\n                -77,\n                95,\n                -67,\n                107,\n                -75,\n                110,\n                -72,\n                99,\n                -80,\n                112,\n                -91,\n                96,\n                -100,\n                89,\n                -89,\n                93,\n                -98,\n                89,\n                -88,\n                79,\n                -73,\n                99,\n                -75,\n                88,\n                -66,\n                80,\n                -66,\n                84,\n                -74,\n                76,\n                -73,\n                86,\n                -96,\n                80,\n                -81,\n                77,\n                -93,\n                88,\n                -99,\n                76,\n                -106,\n                87,\n                -88,\n                89,\n                -82,\n                88,\n                -77,\n                91,\n                -78,\n                73,\n                -79,\n                83,\n                -77,\n                75,\n                -83,\n                83,\n                -74,\n                88,\n                -79,\n                90,\n                -79,\n                75,\n                -92,\n                74,\n                -86,\n                81,\n                -89,\n                83,\n                -83,\n                71,\n                -88,\n                74,\n                -79,\n                74,\n                -88,\n                87,\n                -86,\n                76,\n                -82,\n                80,\n                -71,\n                82,\n                -86,\n                88,\n                -84,\n                96,\n                -79,\n                83,\n                -73,\n                78,\n                -76,\n                74,\n                -84,\n                75,\n                -94,\n                76,\n                -76,\n                70,\n                -72,\n                85,\n                -82,\n                92,\n                -72,\n                91,\n                -88,\n                90,\n                -75,\n                70,\n                -86,\n                88,\n                -82,\n                87,\n                -95,\n                92,\n                -85,\n                95,\n                -94,\n                88,\n                -96,\n                90,\n                -95,\n                102,\n                -80,\n                88,\n                -73,\n                85,\n                -75,\n                76,\n                -76,\n                72,\n                -75,\n                83,\n                -75,\n                72,\n                -78,\n                81,\n                -81,\n                77,\n                -81,\n                87,\n                -82,\n                90,\n                -96,\n                91,\n                -94,\n                91,\n                -90,\n                85,\n                -81,\n                89,\n                -74,\n                97,\n                -75,\n                85,\n                -86,\n                91,\n                -71,\n                82,\n                -69,\n                75,\n                -84,\n                83,\n                -100,\n                76,\n                -73,\n                76,\n                -81,\n                96,\n                -77,\n                86,\n                -77,\n                101,\n                -80,\n                96,\n                -80,\n                85,\n                -75,\n                83,\n                -83,\n                77,\n                -70,\n                68,\n                -71,\n                66,\n                -66,\n                71,\n                -82,\n                70,\n                -80,\n                73,\n                -91,\n                62,\n                -92,\n                74,\n                -77,\n                85,\n                -85,\n                90,\n                -80,\n                82,\n                -77,\n                78,\n                -81,\n                69,\n                -73,\n                100,\n                -66,\n                90,\n                -79,\n                69,\n                -78,\n                72,\n                -70,\n                78,\n                -65,\n                67,\n                -70,\n                73,\n                -70,\n                79,\n                -76,\n                77,\n                -85,\n                82,\n                -84,\n                78,\n                -70,\n                91,\n                -87,\n                96,\n                -70,\n                70,\n                -69,\n                64,\n                -84,\n                75,\n                -84,\n                82,\n                -69,\n                66,\n                -69,\n                68,\n                -77,\n                77,\n                -72,\n                73,\n                -80,\n                72,\n                -80,\n                88,\n                -81,\n                90,\n                -96,\n                81,\n                -68,\n                73,\n                -67,\n                98,\n                -67,\n                79,\n                -69,\n                84,\n                -70,\n                85,\n                -76,\n                81,\n                -74,\n                113,\n                -81,\n                89,\n                -69,\n                88,\n                -76,\n                98,\n                -88,\n                97,\n                -78,\n                90,\n                -76,\n                95,\n                -82,\n                67,\n                -69,\n                65,\n                -69,\n                82,\n                -69,\n                99,\n                -76,\n                97,\n                -64,\n                80,\n                -74,\n                77,\n                -72,\n                73,\n                -70,\n                79,\n                -80,\n                100,\n                -78,\n                99,\n                -75,\n                86,\n                -67,\n                76,\n                -68,\n                75,\n                -58,\n                70,\n                -63,\n                69,\n                -55,\n                62,\n                -57,\n                52,\n                -38,\n                43,\n                -37,\n                41,\n                -24,\n                32,\n                -22,\n                28,\n                -17,\n                21,\n                -11,\n                17,\n                -8,\n                10,\n                -4,\n                5,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed7e01f2f47de00149638c7\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Aurora\",\n            \"slug\": \"wpm090-18\",\n            \"longSlug\": \"wpm090-18-aurora-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057d\",\n            \"originalFilename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900277\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 18,\n            \"versionNumber\": 0,\n            \"bpm\": 110,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Aurora\",\n                \"TRACK: Display Title\": \"Aurora\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n                \"TRACK: Number\": \"018\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"008\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"110\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"507f9335ac49763a86f27b653a0902cae380ccdb\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900277\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-18\",\n            \"createdAt\": \"2020-08-18T22:10:22.924Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Corporate\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Corporate\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b650015640599\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -120,\n                125,\n                -121,\n                127,\n                -68,\n                93,\n                -61,\n                59,\n                -51,\n                42,\n                -117,\n                125,\n                -106,\n                126,\n                -76,\n                84,\n                -62,\n                56,\n                -52,\n                58,\n                -60,\n                63,\n                -113,\n                127,\n                -97,\n                122,\n                -82,\n                71,\n                -107,\n                126,\n                -113,\n                123,\n                -99,\n                123,\n                -117,\n                110,\n                -119,\n                107,\n                -73,\n                69,\n                -59,\n                54,\n                -76,\n                72,\n                -128,\n                114,\n                -122,\n                124,\n                -98,\n                93,\n                -82,\n                74,\n                -52,\n                46,\n                -50,\n                68,\n                -117,\n                127,\n                -111,\n                121,\n                -60,\n                82,\n                -57,\n                61,\n                -55,\n                59,\n                -111,\n                125,\n                -116,\n                111,\n                -108,\n                108,\n                -101,\n                123,\n                -123,\n                123,\n                -106,\n                84,\n                -123,\n                123,\n                -126,\n                120,\n                -75,\n                91,\n                -60,\n                63,\n                -103,\n                93,\n                -110,\n                121,\n                -125,\n                119,\n                -102,\n                127,\n                -94,\n                88,\n                -116,\n                105,\n                -94,\n                127,\n                -121,\n                126,\n                -126,\n                119,\n                -102,\n                86,\n                -81,\n                67,\n                -73,\n                89,\n                -86,\n                80,\n                -116,\n                126,\n                -104,\n                123,\n                -104,\n                111,\n                -121,\n                122,\n                -90,\n                127,\n                -71,\n                91,\n                -110,\n                125,\n                -116,\n                125,\n                -106,\n                111,\n                -85,\n                83,\n                -113,\n                99,\n                -119,\n                123,\n                -112,\n                123,\n                -106,\n                91,\n                -93,\n                116,\n                -111,\n                125,\n                -97,\n                84,\n                -124,\n                123,\n                -110,\n                124,\n                -76,\n                94,\n                -74,\n                80,\n                -83,\n                74,\n                -76,\n                89,\n                -123,\n                126,\n                -115,\n                126,\n                -119,\n                127,\n                -120,\n                125,\n                -93,\n                109,\n                -114,\n                124,\n                -108,\n                124,\n                -87,\n                73,\n                -110,\n                71,\n                -108,\n                90,\n                -83,\n                94,\n                -116,\n                121,\n                -124,\n                127,\n                -106,\n                88,\n                -108,\n                124,\n                -102,\n                127,\n                -87,\n                104,\n                -110,\n                127,\n                -117,\n                124,\n                -69,\n                83,\n                -73,\n                107,\n                -95,\n                90,\n                -109,\n                117,\n                -106,\n                126,\n                -91,\n                99,\n                -113,\n                127,\n                -108,\n                127,\n                -80,\n                84,\n                -121,\n                125,\n                -116,\n                125,\n                -78,\n                73,\n                -90,\n                96,\n                -115,\n                97,\n                -117,\n                117,\n                -118,\n                111,\n                -120,\n                123,\n                -122,\n                123,\n                -121,\n                126,\n                -86,\n                75,\n                -111,\n                127,\n                -114,\n                126,\n                -85,\n                79,\n                -92,\n                94,\n                -87,\n                88,\n                -92,\n                87,\n                -128,\n                122,\n                -108,\n                127,\n                -97,\n                116,\n                -116,\n                123,\n                -103,\n                127,\n                -112,\n                127,\n                -105,\n                119,\n                -95,\n                90,\n                -94,\n                70,\n                -84,\n                73,\n                -112,\n                85,\n                -128,\n                127,\n                -127,\n                126,\n                -111,\n                124,\n                -114,\n                126,\n                -117,\n                110,\n                -111,\n                115,\n                -125,\n                125,\n                -114,\n                110,\n                -102,\n                127,\n                -117,\n                126,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -96,\n                124,\n                -124,\n                126,\n                -91,\n                119,\n                -108,\n                101,\n                -111,\n                127,\n                -115,\n                124,\n                -124,\n                126,\n                -117,\n                127,\n                -90,\n                109,\n                -78,\n                89,\n                -128,\n                127,\n                -118,\n                109,\n                -109,\n                125,\n                -103,\n                103,\n                -124,\n                97,\n                -102,\n                126,\n                -127,\n                127,\n                -118,\n                127,\n                -112,\n                125,\n                -91,\n                106,\n                -88,\n                95,\n                -125,\n                127,\n                -118,\n                125,\n                -97,\n                126,\n                -123,\n                127,\n                -75,\n                86,\n                -101,\n                72,\n                -124,\n                127,\n                -124,\n                104,\n                -119,\n                127,\n                -116,\n                125,\n                -121,\n                126,\n                -126,\n                127,\n                -124,\n                125,\n                -101,\n                119,\n                -121,\n                121,\n                -100,\n                127,\n                -93,\n                87,\n                -118,\n                117,\n                -117,\n                127,\n                -98,\n                111,\n                -94,\n                97,\n                -90,\n                91,\n                -112,\n                99,\n                -113,\n                127,\n                -114,\n                109,\n                -125,\n                112,\n                -103,\n                127,\n                -86,\n                83,\n                -109,\n                127,\n                -110,\n                124,\n                -93,\n                103,\n                -86,\n                96,\n                -105,\n                101,\n                -101,\n                100,\n                -125,\n                125,\n                -111,\n                126,\n                -99,\n                118,\n                -123,\n                122,\n                -121,\n                121,\n                -119,\n                123,\n                -123,\n                122,\n                -110,\n                127,\n                -100,\n                102,\n                -99,\n                89,\n                -91,\n                106,\n                -123,\n                125,\n                -118,\n                126,\n                -91,\n                109,\n                -121,\n                126,\n                -125,\n                125,\n                -66,\n                88,\n                -105,\n                126,\n                -106,\n                127,\n                -86,\n                73,\n                -103,\n                99,\n                -100,\n                94,\n                -123,\n                127,\n                -127,\n                125,\n                -102,\n                125,\n                -110,\n                123,\n                -103,\n                126,\n                -108,\n                102,\n                -124,\n                124,\n                -122,\n                127,\n                -97,\n                93,\n                -108,\n                119,\n                -101,\n                116,\n                -98,\n                91,\n                -122,\n                122,\n                -123,\n                125,\n                -99,\n                114,\n                -112,\n                126,\n                -100,\n                127,\n                -124,\n                125,\n                -123,\n                127,\n                -95,\n                105,\n                -117,\n                106,\n                -88,\n                101,\n                -106,\n                113,\n                -126,\n                126,\n                -111,\n                126,\n                -113,\n                102,\n                -120,\n                110,\n                -114,\n                117,\n                -97,\n                96,\n                -115,\n                127,\n                -121,\n                123,\n                -98,\n                97,\n                -90,\n                103,\n                -104,\n                98,\n                -122,\n                127,\n                -119,\n                124,\n                -100,\n                114,\n                -117,\n                119,\n                -115,\n                127,\n                -104,\n                122,\n                -124,\n                124,\n                -124,\n                126,\n                -100,\n                85,\n                -109,\n                99,\n                -115,\n                120,\n                -126,\n                127,\n                -128,\n                127,\n                -110,\n                122,\n                -125,\n                127,\n                -103,\n                123,\n                -93,\n                104,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                119,\n                -126,\n                123,\n                -106,\n                120,\n                -104,\n                104,\n                -124,\n                123,\n                -125,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -99,\n                97,\n                -97,\n                90,\n                -117,\n                127,\n                -115,\n                104,\n                -127,\n                127,\n                -126,\n                125,\n                -100,\n                108,\n                -65,\n                76,\n                -50,\n                49,\n                -35,\n                43,\n                -26,\n                19,\n                -12,\n                14,\n                -9,\n                11,\n                -6,\n                7,\n                -4,\n                3,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"An Invasion\",\n            \"slug\": \"wpm091-1\",\n            \"longSlug\": \"wpm091-1-an-invasion-main\",\n            \"originalFilename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900280\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 1,\n            \"versionNumber\": 0,\n            \"bpm\": 100,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"An Invasion\",\n                \"TRACK: Display Title\": \"An Invasion\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n                \"TRACK: Number\": \"001\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"132\",\n                \"TRACK: BPM\": \"100\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"98fc8e98508c2356dc7a5f46d607c710154b6151\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900280\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-1\",\n            \"createdAt\": \"2020-08-18T22:17:59.125Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:12\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 132000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                0,\n                0,\n                0,\n                0,\n                -8,\n                9,\n                -8,\n                8,\n                -6,\n                6,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -2,\n                1,\n                -4,\n                4,\n                -6,\n                5,\n                -11,\n                10,\n                -13,\n                11,\n                -8,\n                9,\n                -6,\n                7,\n                -5,\n                6,\n                -5,\n                5,\n                -5,\n                6,\n                -5,\n                6,\n                -7,\n                7,\n                -7,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -4,\n                6,\n                -5,\n                4,\n                -6,\n                6,\n                -6,\n                7,\n                -7,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                5,\n                -5,\n                4,\n                -10,\n                10,\n                -104,\n                126,\n                -93,\n                90,\n                -112,\n                109,\n                -102,\n                90,\n                -51,\n                45,\n                -25,\n                25,\n                -17,\n                16,\n                -9,\n                9,\n                -16,\n                15,\n                -76,\n                101,\n                -116,\n                125,\n                -120,\n                127,\n                -90,\n                92,\n                -65,\n                72,\n                -47,\n                47,\n                -18,\n                18,\n                -11,\n                9,\n                -6,\n                6,\n                -7,\n                7,\n                -102,\n                126,\n                -80,\n                86,\n                -110,\n                125,\n                -114,\n                110,\n                -62,\n                77,\n                -43,\n                44,\n                -21,\n                19,\n                -22,\n                19,\n                -20,\n                18,\n                -38,\n                36,\n                -89,\n                94,\n                -93,\n                116,\n                -106,\n                127,\n                -84,\n                98,\n                -58,\n                58,\n                -38,\n                41,\n                -28,\n                30,\n                -21,\n                22,\n                -19,\n                25,\n                -24,\n                24,\n                -16,\n                19,\n                -19,\n                18,\n                -20,\n                21,\n                -22,\n                22,\n                -24,\n                22,\n                -17,\n                17,\n                -20,\n                21,\n                -19,\n                19,\n                -16,\n                16,\n                -20,\n                19,\n                -19,\n                20,\n                -19,\n                21,\n                -24,\n                22,\n                -17,\n                16,\n                -16,\n                15,\n                -21,\n                15,\n                -20,\n                20,\n                -17,\n                17,\n                -17,\n                21,\n                -19,\n                18,\n                -18,\n                17,\n                -20,\n                18,\n                -19,\n                17,\n                -19,\n                23,\n                -27,\n                23,\n                -20,\n                20,\n                -18,\n                19,\n                -24,\n                17,\n                -23,\n                22,\n                -16,\n                17,\n                -23,\n                23,\n                -24,\n                26,\n                -23,\n                26,\n                -25,\n                24,\n                -24,\n                20,\n                -21,\n                22,\n                -20,\n                18,\n                -23,\n                25,\n                -16,\n                18,\n                -23,\n                20,\n                -20,\n                20,\n                -24,\n                21,\n                -24,\n                23,\n                -23,\n                26,\n                -20,\n                22,\n                -19,\n                19,\n                -19,\n                18,\n                -21,\n                21,\n                -21,\n                21,\n                -23,\n                25,\n                -17,\n                17,\n                -17,\n                17,\n                -22,\n                21,\n                -24,\n                22,\n                -21,\n                20,\n                -18,\n                19,\n                -20,\n                20,\n                -17,\n                19,\n                -21,\n                24,\n                -20,\n                20,\n                -24,\n                25,\n                -24,\n                26,\n                -22,\n                21,\n                -19,\n                19,\n                -17,\n                21,\n                -23,\n                19,\n                -23,\n                27,\n                -18,\n                17,\n                -21,\n                24,\n                -21,\n                20,\n                -19,\n                18,\n                -24,\n                19,\n                -23,\n                20,\n                -27,\n                28,\n                -31,\n                33,\n                -37,\n                34,\n                -59,\n                43,\n                -58,\n                54,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -115,\n                118,\n                -109,\n                120,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                124,\n                -128,\n                126,\n                -121,\n                127,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                127,\n                -124,\n                127,\n                -122,\n                125,\n                -128,\n                126,\n                -127,\n                125,\n                -125,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -124,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -124,\n                118,\n                -124,\n                123,\n                -127,\n                126,\n                -126,\n                110,\n                -109,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -120,\n                119,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -126,\n                127,\n                -126,\n                111,\n                -128,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -120,\n                126,\n                -122,\n                120,\n                -123,\n                123,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -116,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                119,\n                -120,\n                127,\n                -118,\n                119,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                124,\n                -105,\n                119,\n                -128,\n                127,\n                -125,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -126,\n                127,\n                -124,\n                125,\n                -124,\n                125,\n                -116,\n                124,\n                -124,\n                127,\n                -127,\n                124,\n                -127,\n                127,\n                -122,\n                115,\n                -96,\n                103,\n                -122,\n                123,\n                -104,\n                95,\n                -124,\n                119,\n                -93,\n                79,\n                -83,\n                108,\n                -121,\n                104,\n                -93,\n                98,\n                -106,\n                97,\n                -60,\n                65,\n                -89,\n                86,\n                -56,\n                55,\n                -59,\n                52,\n                -68,\n                73,\n                -69,\n                56,\n                -81,\n                81,\n                -88,\n                87,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                123,\n                -119,\n                127,\n                -121,\n                126,\n                -127,\n                125,\n                -127,\n                127,\n                -119,\n                126,\n                -115,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -126,\n                123,\n                -122,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -123,\n                125,\n                -126,\n                124,\n                -126,\n                124,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                122,\n                -125,\n                127,\n                -119,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                124,\n                -127,\n                116,\n                -123,\n                125,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                118,\n                -127,\n                126,\n                -112,\n                126,\n                -125,\n                127,\n                -126,\n                119,\n                -119,\n                121,\n                -122,\n                120,\n                -127,\n                112,\n                -128,\n                127,\n                -126,\n                127,\n                -114,\n                125,\n                -117,\n                124,\n                -104,\n                118,\n                -126,\n                127,\n                -125,\n                111,\n                -117,\n                109,\n                -109,\n                104,\n                -89,\n                102,\n                -128,\n                126,\n                -121,\n                122,\n                -128,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -96,\n                104,\n                -81,\n                72,\n                -39,\n                58,\n                -21,\n                23,\n                -18,\n                12,\n                -4,\n                5,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640570\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"A Violent End\",\n            \"slug\": \"wpm091-13\",\n            \"longSlug\": \"wpm091-13-a-violent-end-main\",\n            \"originalFilename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900292\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 80,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"A Violent End\",\n                \"TRACK: Display Title\": \"A Violent End\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"80\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"99a7dd89e954e163eee49516525a559c75da3904\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900292\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-13\",\n            \"createdAt\": \"2020-08-18T22:17:59.132Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Halloween\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Halloween\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059b\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                116,\n                -113,\n                103,\n                -126,\n                126,\n                -122,\n                123,\n                -120,\n                126,\n                -94,\n                98,\n                -114,\n                123,\n                -115,\n                110,\n                -123,\n                127,\n                -126,\n                127,\n                -105,\n                98,\n                -117,\n                105,\n                -127,\n                124,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                116,\n                -123,\n                122,\n                -128,\n                127,\n                -122,\n                125,\n                -126,\n                126,\n                -107,\n                114,\n                -103,\n                111,\n                -127,\n                125,\n                -120,\n                126,\n                -120,\n                125,\n                -101,\n                112,\n                -119,\n                118,\n                -118,\n                107,\n                -119,\n                126,\n                -127,\n                127,\n                -96,\n                91,\n                -119,\n                123,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                125,\n                -123,\n                117,\n                -126,\n                127,\n                -107,\n                92,\n                -126,\n                123,\n                -126,\n                126,\n                -102,\n                102,\n                -126,\n                126,\n                -106,\n                110,\n                -127,\n                126,\n                -118,\n                124,\n                -105,\n                110,\n                -119,\n                122,\n                -122,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -101,\n                97,\n                -126,\n                124,\n                -128,\n                124,\n                -116,\n                97,\n                -127,\n                125,\n                -127,\n                120,\n                -126,\n                127,\n                -125,\n                124,\n                -91,\n                114,\n                -128,\n                127,\n                -128,\n                121,\n                -126,\n                126,\n                -126,\n                127,\n                -123,\n                120,\n                -127,\n                126,\n                -115,\n                126,\n                -118,\n                112,\n                -128,\n                126,\n                -125,\n                126,\n                -106,\n                126,\n                -119,\n                125,\n                -125,\n                126,\n                -128,\n                126,\n                -126,\n                124,\n                -127,\n                127,\n                -118,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -125,\n                125,\n                -121,\n                123,\n                -124,\n                114,\n                -126,\n                120,\n                -127,\n                127,\n                -128,\n                126,\n                -115,\n                126,\n                -126,\n                118,\n                -126,\n                124,\n                -124,\n                127,\n                -125,\n                127,\n                -127,\n                121,\n                -127,\n                120,\n                -125,\n                124,\n                -127,\n                125,\n                -123,\n                126,\n                -122,\n                126,\n                -128,\n                124,\n                -120,\n                123,\n                -127,\n                127,\n                -127,\n                127,\n                -117,\n                116,\n                -127,\n                125,\n                -126,\n                118,\n                -127,\n                126,\n                -125,\n                125,\n                -112,\n                124,\n                -121,\n                115,\n                -125,\n                124,\n                -117,\n                126,\n                -126,\n                127,\n                -110,\n                108,\n                -127,\n                126,\n                -125,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                121,\n                -126,\n                120,\n                -125,\n                126,\n                -109,\n                125,\n                -128,\n                127,\n                -100,\n                101,\n                -79,\n                85,\n                -71,\n                76,\n                -40,\n                42,\n                -89,\n                83,\n                -28,\n                27,\n                -33,\n                41,\n                -66,\n                64,\n                -54,\n                76,\n                -67,\n                68,\n                -29,\n                28,\n                -36,\n                28,\n                -91,\n                91,\n                -54,\n                61,\n                -74,\n                64,\n                -20,\n                19,\n                -56,\n                55,\n                -61,\n                66,\n                -121,\n                126,\n                -88,\n                87,\n                -96,\n                117,\n                -84,\n                88,\n                -103,\n                98,\n                -100,\n                105,\n                -113,\n                105,\n                -78,\n                63,\n                -100,\n                114,\n                -86,\n                103,\n                -90,\n                127,\n                -119,\n                107,\n                -61,\n                57,\n                -103,\n                119,\n                -109,\n                119,\n                -89,\n                103,\n                -93,\n                96,\n                -63,\n                85,\n                -90,\n                115,\n                -100,\n                124,\n                -124,\n                127,\n                -104,\n                120,\n                -93,\n                94,\n                -109,\n                124,\n                -118,\n                125,\n                -102,\n                97,\n                -95,\n                104,\n                -91,\n                97,\n                -96,\n                118,\n                -112,\n                124,\n                -106,\n                126,\n                -124,\n                125,\n                -93,\n                86,\n                -106,\n                123,\n                -80,\n                90,\n                -105,\n                113,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -120,\n                116,\n                -126,\n                127,\n                -126,\n                123,\n                -107,\n                125,\n                -107,\n                123,\n                -126,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                125,\n                -123,\n                125,\n                -120,\n                97,\n                -127,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                123,\n                -113,\n                125,\n                -125,\n                119,\n                -128,\n                125,\n                -126,\n                125,\n                -122,\n                127,\n                -116,\n                119,\n                -125,\n                125,\n                -124,\n                127,\n                -126,\n                127,\n                -123,\n                126,\n                -122,\n                119,\n                -121,\n                127,\n                -124,\n                126,\n                -127,\n                122,\n                -110,\n                107,\n                -118,\n                116,\n                -120,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -125,\n                111,\n                -124,\n                127,\n                -127,\n                121,\n                -123,\n                127,\n                -128,\n                127,\n                -106,\n                90,\n                -128,\n                119,\n                -112,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -116,\n                116,\n                -122,\n                125,\n                -127,\n                122,\n                -127,\n                127,\n                -128,\n                122,\n                -120,\n                104,\n                -125,\n                125,\n                -127,\n                120,\n                -127,\n                125,\n                -126,\n                114,\n                -126,\n                123,\n                -125,\n                122,\n                -111,\n                127,\n                -126,\n                126,\n                -123,\n                125,\n                -111,\n                122,\n                -124,\n                120,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -123,\n                107,\n                -127,\n                126,\n                -125,\n                127,\n                -124,\n                124,\n                -123,\n                124,\n                -124,\n                97,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                122,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -128,\n                117,\n                -123,\n                127,\n                -117,\n                117,\n                -114,\n                123,\n                -127,\n                127,\n                -128,\n                121,\n                -113,\n                120,\n                -124,\n                117,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -114,\n                114,\n                -124,\n                123,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -110,\n                95,\n                -123,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -124,\n                126,\n                -120,\n                125,\n                -126,\n                125,\n                -123,\n                127,\n                -124,\n                124,\n                -124,\n                112,\n                -108,\n                124,\n                -126,\n                123,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -100,\n                98,\n                -91,\n                88,\n                -60,\n                62,\n                -44,\n                44,\n                -29,\n                24,\n                -19,\n                18,\n                -11,\n                11,\n                -9,\n                11,\n                -5,\n                5,\n                -3,\n                4,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Gathering Hoard\",\n            \"slug\": \"wpm091-25\",\n            \"longSlug\": \"wpm091-25-the-gathering-hoard-main\",\n            \"originalFilename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900304\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 25,\n            \"versionNumber\": 0,\n            \"bpm\": 85,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Gathering Hoard\",\n                \"TRACK: Display Title\": \"The Gathering Hoard\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n                \"TRACK: Number\": \"025\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"179\",\n                \"TRACK: BPM\": \"85\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"46addaa4a408f1e0e121690aa093e48dac864e40\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900304\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-25\",\n            \"createdAt\": \"2020-08-18T22:17:59.138Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:59\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 179000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -127,\n                127,\n                -106,\n                120,\n                -114,\n                88,\n                -79,\n                103,\n                -78,\n                85,\n                -115,\n                127,\n                -126,\n                125,\n                -111,\n                124,\n                -95,\n                107,\n                -82,\n                103,\n                -102,\n                102,\n                -127,\n                127,\n                -115,\n                126,\n                -97,\n                94,\n                -81,\n                93,\n                -93,\n                94,\n                -98,\n                110,\n                -124,\n                127,\n                -113,\n                117,\n                -100,\n                121,\n                -81,\n                90,\n                -100,\n                125,\n                -126,\n                125,\n                -125,\n                124,\n                -111,\n                108,\n                -75,\n                105,\n                -76,\n                76,\n                -106,\n                102,\n                -127,\n                126,\n                -104,\n                122,\n                -106,\n                102,\n                -96,\n                101,\n                -90,\n                96,\n                -125,\n                127,\n                -127,\n                125,\n                -99,\n                103,\n                -91,\n                96,\n                -64,\n                82,\n                -88,\n                106,\n                -127,\n                127,\n                -116,\n                117,\n                -113,\n                104,\n                -87,\n                94,\n                -102,\n                125,\n                -125,\n                123,\n                -126,\n                114,\n                -114,\n                117,\n                -121,\n                105,\n                -86,\n                90,\n                -99,\n                108,\n                -126,\n                127,\n                -119,\n                119,\n                -114,\n                126,\n                -111,\n                93,\n                -114,\n                125,\n                -125,\n                127,\n                -124,\n                110,\n                -120,\n                127,\n                -123,\n                108,\n                -93,\n                112,\n                -88,\n                100,\n                -128,\n                127,\n                -121,\n                118,\n                -127,\n                121,\n                -107,\n                116,\n                -103,\n                124,\n                -127,\n                126,\n                -122,\n                121,\n                -125,\n                108,\n                -113,\n                108,\n                -100,\n                120,\n                -99,\n                99,\n                -125,\n                124,\n                -127,\n                125,\n                -115,\n                125,\n                -112,\n                118,\n                -115,\n                124,\n                -111,\n                117,\n                -126,\n                124,\n                -126,\n                122,\n                -120,\n                107,\n                -99,\n                115,\n                -109,\n                100,\n                -119,\n                119,\n                -127,\n                127,\n                -110,\n                123,\n                -120,\n                123,\n                -103,\n                124,\n                -122,\n                122,\n                -126,\n                127,\n                -123,\n                125,\n                -116,\n                109,\n                -105,\n                119,\n                -113,\n                108,\n                -118,\n                118,\n                -127,\n                125,\n                -125,\n                121,\n                -120,\n                124,\n                -105,\n                122,\n                -113,\n                115,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -99,\n                121,\n                -111,\n                97,\n                -115,\n                120,\n                -128,\n                127,\n                -121,\n                124,\n                -126,\n                127,\n                -118,\n                118,\n                -123,\n                115,\n                -121,\n                127,\n                -125,\n                127,\n                -127,\n                126,\n                -117,\n                112,\n                -108,\n                96,\n                -118,\n                115,\n                -128,\n                127,\n                -118,\n                126,\n                -124,\n                124,\n                -96,\n                90,\n                -114,\n                123,\n                -127,\n                126,\n                -124,\n                117,\n                -112,\n                126,\n                -121,\n                106,\n                -112,\n                119,\n                -114,\n                112,\n                -123,\n                125,\n                -123,\n                125,\n                -124,\n                126,\n                -103,\n                108,\n                -117,\n                125,\n                -127,\n                127,\n                -126,\n                125,\n                -111,\n                113,\n                -101,\n                93,\n                -92,\n                96,\n                -83,\n                96,\n                -78,\n                76,\n                -100,\n                109,\n                -101,\n                72,\n                -57,\n                61,\n                -97,\n                60,\n                -60,\n                62,\n                -126,\n                127,\n                -105,\n                105,\n                -102,\n                94,\n                -69,\n                89,\n                -73,\n                68,\n                -61,\n                80,\n                -73,\n                100,\n                -66,\n                54,\n                -56,\n                72,\n                -91,\n                79,\n                -92,\n                86,\n                -126,\n                127,\n                -113,\n                93,\n                -102,\n                109,\n                -81,\n                95,\n                -68,\n                96,\n                -87,\n                76,\n                -92,\n                76,\n                -80,\n                80,\n                -62,\n                57,\n                -110,\n                71,\n                -78,\n                81,\n                -126,\n                127,\n                -86,\n                92,\n                -80,\n                75,\n                -88,\n                70,\n                -74,\n                100,\n                -64,\n                67,\n                -63,\n                66,\n                -66,\n                89,\n                -71,\n                69,\n                -92,\n                72,\n                -62,\n                60,\n                -127,\n                127,\n                -123,\n                116,\n                -87,\n                87,\n                -116,\n                98,\n                -76,\n                88,\n                -90,\n                97,\n                -66,\n                78,\n                -86,\n                96,\n                -104,\n                113,\n                -93,\n                69,\n                -62,\n                68,\n                -128,\n                127,\n                -103,\n                109,\n                -101,\n                92,\n                -125,\n                100,\n                -71,\n                88,\n                -80,\n                89,\n                -64,\n                85,\n                -76,\n                94,\n                -84,\n                75,\n                -112,\n                94,\n                -96,\n                86,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -119,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -120,\n                127,\n                -128,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -121,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -116,\n                127,\n                -119,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -117,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                124,\n                -126,\n                127,\n                -121,\n                126,\n                -123,\n                127,\n                -127,\n                124,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                123,\n                -105,\n                120,\n                -123,\n                126,\n                -100,\n                118,\n                -119,\n                117,\n                -127,\n                126,\n                -120,\n                122,\n                -98,\n                94,\n                -81,\n                90,\n                -55,\n                55,\n                -51,\n                47,\n                -51,\n                44,\n                -63,\n                59,\n                -88,\n                85,\n                -84,\n                80,\n                -84,\n                68,\n                -65,\n                70,\n                -63,\n                75,\n                -79,\n                67,\n                -80,\n                73,\n                -80,\n                56,\n                -48,\n                47,\n                -48,\n                52,\n                -38,\n                37,\n                -35,\n                35,\n                -30,\n                30,\n                -33,\n                32,\n                -21,\n                20,\n                -15,\n                15,\n                -9,\n                10,\n                -8,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Hunt\",\n            \"slug\": \"wpm091-4\",\n            \"longSlug\": \"wpm091-4-the-hunt-main\",\n            \"originalFilename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900283\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 4,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Hunt\",\n                \"TRACK: Display Title\": \"The Hunt\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n                \"TRACK: Number\": \"004\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"199\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"8a55db4b2567868ab8b08d39941c7d62951bbc98\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900283\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-4\",\n            \"createdAt\": \"2020-08-18T22:17:59.151Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:19\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 199000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059d\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -46,\n                48,\n                -72,\n                57,\n                -60,\n                49,\n                -48,\n                45,\n                -68,\n                60,\n                -71,\n                55,\n                -47,\n                51,\n                -56,\n                50,\n                -52,\n                48,\n                -55,\n                73,\n                -58,\n                66,\n                -68,\n                50,\n                -68,\n                56,\n                -127,\n                127,\n                -118,\n                124,\n                -126,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -124,\n                125,\n                -119,\n                127,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                126,\n                -123,\n                127,\n                -119,\n                120,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -122,\n                127,\n                -128,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                126,\n                -119,\n                106,\n                -128,\n                127,\n                -123,\n                127,\n                -126,\n                127,\n                -126,\n                126,\n                -126,\n                126,\n                -125,\n                125,\n                -106,\n                121,\n                -128,\n                127,\n                -128,\n                127,\n                -122,\n                125,\n                -124,\n                127,\n                -127,\n                123,\n                -127,\n                121,\n                -127,\n                127,\n                -125,\n                125,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                123,\n                -124,\n                127,\n                -128,\n                127,\n                -119,\n                125,\n                -122,\n                127,\n                -123,\n                120,\n                -113,\n                124,\n                -128,\n                127,\n                -110,\n                123,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -122,\n                125,\n                -114,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                127,\n                -117,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -125,\n                119,\n                -127,\n                125,\n                -127,\n                127,\n                -127,\n                125,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -111,\n                124,\n                -127,\n                127,\n                -125,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -126,\n                127,\n                -127,\n                125,\n                -115,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -128,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                124,\n                -125,\n                126,\n                -125,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -110,\n                125,\n                -128,\n                126,\n                -127,\n                127,\n                -127,\n                125,\n                -126,\n                127,\n                -126,\n                123,\n                -128,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -122,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -124,\n                122,\n                -128,\n                127,\n                -126,\n                125,\n                -104,\n                127,\n                -128,\n                127,\n                -124,\n                111,\n                -76,\n                85,\n                -50,\n                56,\n                -37,\n                31,\n                -25,\n                21,\n                -17,\n                19,\n                -17,\n                17,\n                -16,\n                16,\n                -12,\n                13,\n                -9,\n                10,\n                -14,\n                12,\n                -12,\n                11,\n                -11,\n                13,\n                -8,\n                8,\n                -10,\n                8,\n                -7,\n                8,\n                -9,\n                8,\n                -12,\n                9,\n                -13,\n                13,\n                -16,\n                15,\n                -20,\n                22,\n                -21,\n                21,\n                -20,\n                20,\n                -17,\n                18,\n                -18,\n                18,\n                -73,\n                75,\n                -72,\n                59,\n                -61,\n                60,\n                -67,\n                112,\n                -66,\n                77,\n                -65,\n                70,\n                -50,\n                47,\n                -78,\n                73,\n                -87,\n                77,\n                -58,\n                58,\n                -102,\n                104,\n                -68,\n                74,\n                -64,\n                60,\n                -52,\n                49,\n                -81,\n                87,\n                -55,\n                56,\n                -49,\n                57,\n                -21,\n                22,\n                -15,\n                15,\n                -8,\n                9,\n                -11,\n                10,\n                -11,\n                13,\n                -11,\n                10,\n                -8,\n                8,\n                -9,\n                13,\n                -11,\n                12,\n                -12,\n                12,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                126,\n                -125,\n                125,\n                -123,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -125,\n                124,\n                -126,\n                126,\n                -126,\n                126,\n                -123,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -118,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                121,\n                -127,\n                127,\n                -123,\n                127,\n                -127,\n                127,\n                -120,\n                126,\n                -126,\n                127,\n                -115,\n                125,\n                -100,\n                98,\n                -128,\n                127,\n                -125,\n                117,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                124,\n                -124,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -124,\n                126,\n                -127,\n                126,\n                -122,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -128,\n                127,\n                -119,\n                127,\n                -100,\n                115,\n                -128,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -123,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                122,\n                -127,\n                127,\n                -126,\n                125,\n                -127,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                125,\n                -120,\n                125,\n                -121,\n                125,\n                -116,\n                127,\n                -121,\n                127,\n                -127,\n                127,\n                -107,\n                107,\n                -120,\n                98,\n                -102,\n                106,\n                -108,\n                95,\n                -79,\n                73,\n                -126,\n                126,\n                -117,\n                110,\n                -103,\n                100,\n                -100,\n                101,\n                -91,\n                93,\n                -111,\n                99,\n                -99,\n                103,\n                -126,\n                126,\n                -100,\n                107,\n                -95,\n                110,\n                -52,\n                67,\n                -48,\n                49,\n                -45,\n                41,\n                -34,\n                37,\n                -31,\n                31,\n                -23,\n                19,\n                -19,\n                16,\n                -12,\n                14,\n                -11,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -3,\n                3,\n                -2,\n                2,\n                -1,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Battleground\",\n            \"slug\": \"wpm091-10\",\n            \"longSlug\": \"wpm091-10-battleground-main\",\n            \"originalFilename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900289\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 10,\n            \"versionNumber\": 0,\n            \"bpm\": 119,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Battleground\",\n                \"TRACK: Display Title\": \"Battleground\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n                \"TRACK: Number\": \"010\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"119\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"04355e38594b78825f8ca834214c558c7c4af9ef\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900289\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-10\",\n            \"createdAt\": \"2020-08-18T22:17:59.157Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059e\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                127,\n                -101,\n                109,\n                -123,\n                124,\n                -113,\n                106,\n                -96,\n                109,\n                -127,\n                125,\n                -95,\n                108,\n                -99,\n                114,\n                -98,\n                108,\n                -95,\n                110,\n                -126,\n                126,\n                -90,\n                112,\n                -103,\n                102,\n                -114,\n                115,\n                -106,\n                110,\n                -126,\n                124,\n                -94,\n                109,\n                -109,\n                103,\n                -99,\n                114,\n                -97,\n                109,\n                -127,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -108,\n                114,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -79,\n                94,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -96,\n                90,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -84,\n                103,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -104,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -96,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                125,\n                -126,\n                127,\n                -90,\n                119,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -87,\n                96,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -84,\n                105,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                106,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                125,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                122,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -113,\n                110,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                125,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -117,\n                126,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                123,\n                -125,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -90,\n                96,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                126,\n                -86,\n                101,\n                -127,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -121,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -116,\n                119,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                116,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -102,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -103,\n                125,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -84,\n                110,\n                -128,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -91,\n                101,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -121,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -99,\n                118,\n                -116,\n                102,\n                -121,\n                122,\n                -118,\n                121,\n                -127,\n                124,\n                -126,\n                114,\n                -101,\n                114,\n                -115,\n                110,\n                -112,\n                118,\n                -103,\n                110,\n                -127,\n                127,\n                -126,\n                125,\n                -126,\n                126,\n                -128,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -122,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -126,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                117,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                116,\n                -125,\n                125,\n                -125,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -101,\n                122,\n                -127,\n                125,\n                -113,\n                126,\n                -117,\n                119,\n                -127,\n                127,\n                -124,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -107,\n                105,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -122,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -121,\n                123,\n                -126,\n                126,\n                -124,\n                119,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                121,\n                -128,\n                127,\n                -125,\n                107,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -128,\n                127,\n                -106,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -102,\n                125,\n                -127,\n                125,\n                -127,\n                126,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -125,\n                125,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                106,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -112,\n                126,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                127,\n                -116,\n                124,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                126,\n                -36,\n                40,\n                -21,\n                22,\n                -10,\n                10,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                4,\n                -4,\n                3,\n                -4,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                0,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5f3c51ce801b65001564056f\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Ultramarine\",\n            \"slug\": \"wpm091-16\",\n            \"longSlug\": \"wpm091-16-ultramarine-main\",\n            \"originalFilename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900295\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 16,\n            \"versionNumber\": 0,\n            \"bpm\": 71,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Ultramarine\",\n                \"TRACK: Display Title\": \"Ultramarine\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n                \"TRACK: Number\": \"016\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"206\",\n                \"TRACK: BPM\": \"71\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums, Electronic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense, Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"a45cbb14fd4e039b9aaa51f25e470bc22b93f193\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900295\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"electronic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-16\",\n            \"createdAt\": \"2020-08-18T22:17:59.163Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:26\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Electronic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Electronic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 206000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"3e17dafe-183d-4b3a-bf2b-cd1ae2acf127"},{"name":"Tracks filtered by tags (from mongo)","id":"0e836544-6ee2-4650-8bbe-867764cd8c12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tracks?mongo=true&tags[]=Genre→Action&tags[]=Instrumentation→Synth","description":"<p>This will perform an OR search for any tracks containing either tags listed</p>\n","urlObject":{"path":["tracks"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc</p>\n","type":"text/plain"},"key":"mongo","value":"true"},{"disabled":true,"description":{"content":"<p>optional, int — paginate through by this count</p>\n","type":"text/plain"},"key":"$skip","value":"250"},{"disabled":true,"description":{"content":"<p>optional, int — count to return per page</p>\n","type":"text/plain"},"key":"$limit","value":"50"},{"description":{"content":"<p>Tag filter</p>\n","type":"text/plain"},"key":"tags[]","value":"Genre→Action"},{"description":{"content":"<p>Tag filter</p>\n","type":"text/plain"},"key":"tags[]","value":"Instrumentation→Synth"}],"variable":[]}},"response":[{"id":"0f3439f8-f10a-4dd7-bf0f-1a359036f55c","name":"Tracks within date range","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":{"raw":"{{hostAdmin}}/tracks?mongo=true&updatedAt[$gte]=2024-06-01&updatedAt[$lte]=2025-06-05T17:00:00.000Z","host":["{{hostAdmin}}"],"path":["tracks"],"query":[{"key":"mongo","value":"true","description":"Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc"},{"key":"$skip","value":"250","description":"optional, int — paginate through by this count","disabled":true},{"key":"$limit","value":"50","description":"optional, int — count to return per page","type":"text","disabled":true},{"key":"isMain","value":"true","description":"optional, boolean — filter to main tracks only","disabled":true},{"key":"parentId","value":"{{parentId}}","description":"optional, mongoId — tracks with a specific parent","type":"text","disabled":true},{"key":"releaseId","value":"{{releaseId}}","description":"optional, mongoId — tracks on a specific release","type":"text","disabled":true},{"key":"updatedAt[$gte]","value":"2024-06-01","description":"Example filter - updated after a specified date","type":"text"},{"key":"updatedAt[$lte]","value":"2025-06-05T17:00:00.000Z","description":"Example filter - created after date and time","type":"text"},{"key":"updatedAt[$lt]","value":"releaseId","description":"An array of fields to select for inclusion in track data","type":"text","disabled":true},{"key":"$select[]","value":"composerIds","description":"Continuing the selection array for multiple fields","type":"text","disabled":true},{"key":"$select[]","value":"composers","description":"Note, related ids (eg composerIds) must appear in selection to also populate related documents (eg composers)","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Aug 2025 14:53:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=3%2B69m0pV2yWBGbLfIp63hjSC%2F2ROrUQzGhyU1zlXEt45QUTC6nUZu2NgHhD51kDSUOu%2Ff1izLVW0klLRbLLNj%2Bu6SNpk7zfHGk2CQKJh3NhpJdECvw%3D%3D\"}]}"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"216d8-RQ+JxOW9x2DKhtxHZ1qfsGa6x/I\""},{"key":"Rndr-Id","value":"e9601f09-48bb-4a92"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Render-Origin-Server","value":"Render"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"CF-RAY","value":"96e90b79ead5ef25-LHR"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 160,\n    \"limit\": 10,\n    \"skip\": 0,\n    \"data\": [\n        {\n            \"_id\": \"64512567ecceb8e76c1553d8\",\n            \"slug\": \"vsb001-1v1\",\n            \"longSlug\": \"vsb001-1-bespoke-element-1-alternate-version-1\",\n            \"shortSlug\": \"vsb001-1\",\n            \"code\": \"\",\n            \"title\": \"Bespoke element 1\",\n            \"orgSlug\": \"demo\",\n            \"versionTitle\": \"Alternate version 1\",\n            \"description\": \"\",\n            \"isPublished\": false,\n            \"isMain\": false,\n            \"trackNumber\": 1,\n            \"versionNumber\": 1,\n            \"catalogueNumber\": \"\",\n            \"releaseCode\": \"vsb001\",\n            \"bpm\": 0,\n            \"key\": \"\",\n            \"state\": \"queued\",\n            \"iswc\": \"\",\n            \"isrc\": \"\",\n            \"tunecode\": \"\",\n            \"gemacode\": \"\",\n            \"lyrics\": \"\",\n            \"waveformData\": [],\n            \"releaseId\": \"645124e3ecceb8e76c1550b1\",\n            \"parentId\": \"64512500ecceb8e76c155134\",\n            \"tagIds\": [],\n            \"tags\": [\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Mood→Courageous\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Courageous\"\n                },\n                {\n                    \"id\": \"Instrumentation→Electric Organ\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Electric Organ\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                }\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\"\n            ],\n            \"composerIds\": [],\n            \"searchMetadata\": \"\",\n            \"aiState\": \"initial\",\n            \"deliveries\": {\n                \"soundmouse\": {\n                    \"metadata\": {\n                        \"state\": \"initial\",\n                        \"sent\": false\n                    },\n                    \"audio\": {\n                        \"state\": \"initial\",\n                        \"sent\": false,\n                        \"receiptConfirmed\": false\n                    },\n                    \"state\": \"initial\"\n                }\n            },\n            \"createdAt\": \"2023-05-02T14:59:51.009Z\",\n            \"updatedAt\": \"2024-11-26T12:19:32.827Z\",\n            \"__v\": 0,\n            \"siblingCount\": 1,\n            \"composers\": [],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {}\n        },\n        {\n            \"_id\": \"5f3c51ce801b650015640588\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -6,\n                5,\n                -32,\n                21,\n                -62,\n                48,\n                -77,\n                52,\n                -84,\n                66,\n                -97,\n                79,\n                -89,\n                69,\n                -94,\n                65,\n                -99,\n                87,\n                -99,\n                81,\n                -85,\n                61,\n                -94,\n                69,\n                -99,\n                84,\n                -82,\n                75,\n                -80,\n                82,\n                -83,\n                96,\n                -79,\n                84,\n                -79,\n                81,\n                -89,\n                84,\n                -101,\n                97,\n                -86,\n                87,\n                -85,\n                115,\n                -97,\n                94,\n                -77,\n                83,\n                -79,\n                93,\n                -87,\n                91,\n                -85,\n                85,\n                -71,\n                90,\n                -60,\n                97,\n                -68,\n                90,\n                -71,\n                97,\n                -53,\n                91,\n                -68,\n                91,\n                -57,\n                94,\n                -54,\n                90,\n                -60,\n                69,\n                -71,\n                86,\n                -71,\n                69,\n                -72,\n                71,\n                -91,\n                70,\n                -83,\n                76,\n                -83,\n                72,\n                -84,\n                78,\n                -77,\n                68,\n                -78,\n                75,\n                -88,\n                74,\n                -88,\n                69,\n                -98,\n                65,\n                -85,\n                68,\n                -87,\n                78,\n                -89,\n                84,\n                -85,\n                73,\n                -85,\n                87,\n                -97,\n                88,\n                -101,\n                72,\n                -84,\n                82,\n                -82,\n                86,\n                -85,\n                95,\n                -81,\n                95,\n                -74,\n                88,\n                -77,\n                95,\n                -75,\n                91,\n                -69,\n                112,\n                -81,\n                111,\n                -79,\n                82,\n                -74,\n                100,\n                -68,\n                109,\n                -76,\n                98,\n                -66,\n                95,\n                -89,\n                116,\n                -83,\n                112,\n                -80,\n                93,\n                -78,\n                80,\n                -97,\n                93,\n                -104,\n                89,\n                -99,\n                67,\n                -97,\n                66,\n                -96,\n                78,\n                -98,\n                71,\n                -89,\n                70,\n                -102,\n                78,\n                -93,\n                77,\n                -93,\n                98,\n                -100,\n                101,\n                -97,\n                97,\n                -87,\n                101,\n                -104,\n                118,\n                -81,\n                99,\n                -82,\n                106,\n                -81,\n                115,\n                -77,\n                107,\n                -80,\n                114,\n                -72,\n                102,\n                -105,\n                122,\n                -91,\n                124,\n                -80,\n                104,\n                -92,\n                98,\n                -87,\n                89,\n                -76,\n                96,\n                -77,\n                107,\n                -81,\n                104,\n                -73,\n                91,\n                -72,\n                82,\n                -85,\n                84,\n                -79,\n                79,\n                -87,\n                77,\n                -90,\n                74,\n                -101,\n                85,\n                -98,\n                82,\n                -100,\n                74,\n                -88,\n                73,\n                -105,\n                76,\n                -102,\n                71,\n                -112,\n                66,\n                -96,\n                93,\n                -98,\n                86,\n                -115,\n                85,\n                -102,\n                83,\n                -106,\n                97,\n                -95,\n                91,\n                -93,\n                97,\n                -104,\n                102,\n                -94,\n                103,\n                -102,\n                106,\n                -103,\n                105,\n                -84,\n                111,\n                -84,\n                112,\n                -87,\n                114,\n                -85,\n                102,\n                -73,\n                107,\n                -81,\n                100,\n                -93,\n                103,\n                -75,\n                125,\n                -82,\n                112,\n                -64,\n                117,\n                -64,\n                108,\n                -77,\n                97,\n                -73,\n                91,\n                -77,\n                98,\n                -86,\n                81,\n                -76,\n                75,\n                -83,\n                82,\n                -90,\n                73,\n                -91,\n                76,\n                -81,\n                62,\n                -79,\n                72,\n                -85,\n                58,\n                -72,\n                63,\n                -84,\n                84,\n                -85,\n                57,\n                -83,\n                68,\n                -89,\n                64,\n                -88,\n                59,\n                -92,\n                65,\n                -80,\n                77,\n                -86,\n                66,\n                -89,\n                69,\n                -81,\n                81,\n                -84,\n                81,\n                -85,\n                69,\n                -80,\n                75,\n                -81,\n                87,\n                -79,\n                79,\n                -77,\n                81,\n                -72,\n                86,\n                -86,\n                82,\n                -86,\n                91,\n                -75,\n                83,\n                -72,\n                87,\n                -73,\n                89,\n                -70,\n                93,\n                -65,\n                106,\n                -66,\n                94,\n                -63,\n                95,\n                -62,\n                91,\n                -64,\n                80,\n                -51,\n                78,\n                -53,\n                84,\n                -71,\n                74,\n                -65,\n                79,\n                -81,\n                75,\n                -69,\n                82,\n                -72,\n                71,\n                -78,\n                61,\n                -79,\n                62,\n                -72,\n                75,\n                -88,\n                60,\n                -95,\n                62,\n                -87,\n                58,\n                -89,\n                66,\n                -87,\n                55,\n                -86,\n                63,\n                -88,\n                66,\n                -97,\n                62,\n                -91,\n                66,\n                -95,\n                68,\n                -87,\n                74,\n                -86,\n                72,\n                -83,\n                82,\n                -85,\n                93,\n                -88,\n                78,\n                -71,\n                80,\n                -79,\n                84,\n                -77,\n                83,\n                -82,\n                86,\n                -66,\n                91,\n                -67,\n                78,\n                -68,\n                79,\n                -68,\n                93,\n                -67,\n                99,\n                -65,\n                90,\n                -63,\n                81,\n                -58,\n                88,\n                -69,\n                89,\n                -56,\n                84,\n                -57,\n                92,\n                -57,\n                82,\n                -73,\n                86,\n                -77,\n                72,\n                -84,\n                71,\n                -85,\n                73,\n                -89,\n                84,\n                -109,\n                72,\n                -97,\n                79,\n                -90,\n                75,\n                -86,\n                77,\n                -70,\n                82,\n                -86,\n                95,\n                -79,\n                92,\n                -86,\n                100,\n                -86,\n                108,\n                -79,\n                111,\n                -72,\n                103,\n                -71,\n                105,\n                -79,\n                118,\n                -78,\n                111,\n                -74,\n                99,\n                -78,\n                99,\n                -79,\n                104,\n                -84,\n                88,\n                -87,\n                98,\n                -78,\n                103,\n                -76,\n                95,\n                -87,\n                89,\n                -93,\n                84,\n                -88,\n                92,\n                -84,\n                91,\n                -89,\n                81,\n                -84,\n                88,\n                -81,\n                74,\n                -89,\n                67,\n                -84,\n                68,\n                -95,\n                86,\n                -85,\n                83,\n                -79,\n                82,\n                -107,\n                75,\n                -113,\n                94,\n                -112,\n                85,\n                -103,\n                83,\n                -112,\n                86,\n                -102,\n                81,\n                -98,\n                100,\n                -108,\n                88,\n                -98,\n                90,\n                -98,\n                107,\n                -86,\n                98,\n                -92,\n                105,\n                -96,\n                96,\n                -94,\n                115,\n                -104,\n                110,\n                -95,\n                110,\n                -94,\n                106,\n                -85,\n                119,\n                -86,\n                114,\n                -74,\n                112,\n                -78,\n                112,\n                -78,\n                115,\n                -73,\n                107,\n                -87,\n                109,\n                -80,\n                114,\n                -82,\n                104,\n                -89,\n                114,\n                -86,\n                92,\n                -78,\n                89,\n                -83,\n                88,\n                -94,\n                85,\n                -106,\n                81,\n                -114,\n                87,\n                -94,\n                73,\n                -100,\n                73,\n                -102,\n                82,\n                -106,\n                86,\n                -98,\n                75,\n                -94,\n                77,\n                -89,\n                70,\n                -91,\n                79,\n                -97,\n                76,\n                -82,\n                79,\n                -89,\n                71,\n                -84,\n                70,\n                -82,\n                62,\n                -78,\n                66,\n                -77,\n                67,\n                -53,\n                57,\n                -42,\n                44,\n                -32,\n                42,\n                -33,\n                28,\n                -19,\n                23,\n                -13,\n                18,\n                -9,\n                9,\n                -4,\n                6,\n                -1,\n                2,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7285\",\n                \"5ed7e02d2f47de0014963aa2\",\n                \"5e3c529994532a0014a05a4d\",\n                \"5ec65a19cd35e20014b8d187\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b19\",\n                \"5e3c529b94532a0014a05b4f\",\n                \"5f3c51ce801b65001564056c\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5dd3d83dae2b950014ef2355\",\n                \"5ed7e0202f47de00149638e2\",\n                \"5ec65a1acd35e20014b8d1cb\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5ec65a19cd35e20014b8d173\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5ec65a19cd35e20014b8d19b\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Dying Light\",\n            \"slug\": \"wpm090-20\",\n            \"longSlug\": \"wpm090-20-dying-light-30s\",\n            \"parentId\": \"5f3c51ce801b650015640581\",\n            \"originalFilename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900279\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 20,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Dying Light\",\n                \"TRACK: Display Title\": \"Dying Light\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n                \"TRACK: Number\": \"020\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"010\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"459d6b02c4bd13811d297656266d5c05d8db021b\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900279\",\n                \"_tags\": [\n                    \"synth\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium-fast\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-20\",\n            \"createdAt\": \"2020-08-18T22:10:22.880Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Emotional\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotional\"\n                },\n                {\n                    \"id\": \"Mood→Emotive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotive\"\n                },\n                {\n                    \"id\": \"Keywords→Tender\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Tender\"\n                },\n                {\n                    \"id\": \"Mood→Sensitive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sensitive\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Sentimental\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sentimental\"\n                },\n                {\n                    \"id\": \"Keywords→Nostalgic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Nostalgic\"\n                },\n                {\n                    \"id\": \"Mood→Touching\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Touching\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Sad\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sad\"\n                },\n                {\n                    \"id\": \"Keywords→melancholic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"melancholic\"\n                },\n                {\n                    \"id\": \"Mood→Sombre\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sombre\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Family\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Family\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Nature\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Nature\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -7,\n                3,\n                -22,\n                17,\n                -48,\n                34,\n                -65,\n                44,\n                -83,\n                74,\n                -94,\n                71,\n                -86,\n                94,\n                -80,\n                86,\n                -88,\n                99,\n                -92,\n                77,\n                -88,\n                79,\n                -91,\n                95,\n                -78,\n                109,\n                -76,\n                116,\n                -64,\n                102,\n                -70,\n                93,\n                -87,\n                89,\n                -82,\n                83,\n                -70,\n                79,\n                -105,\n                87,\n                -95,\n                79,\n                -99,\n                84,\n                -98,\n                81,\n                -103,\n                63,\n                -107,\n                98,\n                -113,\n                75,\n                -98,\n                73,\n                -89,\n                77,\n                -78,\n                80,\n                -81,\n                100,\n                -71,\n                112,\n                -66,\n                111,\n                -82,\n                98,\n                -89,\n                105,\n                -70,\n                118,\n                -95,\n                102,\n                -103,\n                100,\n                -86,\n                99,\n                -95,\n                100,\n                -87,\n                82,\n                -97,\n                74,\n                -105,\n                81,\n                -110,\n                72,\n                -107,\n                80,\n                -93,\n                77,\n                -91,\n                85,\n                -92,\n                88,\n                -110,\n                85,\n                -102,\n                78,\n                -91,\n                83,\n                -78,\n                87,\n                -95,\n                92,\n                -81,\n                79,\n                -70,\n                88,\n                -73,\n                84,\n                -72,\n                87,\n                -70,\n                97,\n                -73,\n                98,\n                -70,\n                81,\n                -81,\n                96,\n                -94,\n                94,\n                -87,\n                102,\n                -78,\n                91,\n                -88,\n                80,\n                -83,\n                107,\n                -93,\n                98,\n                -102,\n                93,\n                -88,\n                93,\n                -69,\n                94,\n                -76,\n                113,\n                -93,\n                126,\n                -71,\n                97,\n                -100,\n                107,\n                -110,\n                81,\n                -102,\n                89,\n                -92,\n                90,\n                -75,\n                102,\n                -81,\n                94,\n                -83,\n                88,\n                -68,\n                123,\n                -71,\n                112,\n                -101,\n                95,\n                -101,\n                87,\n                -95,\n                96,\n                -95,\n                113,\n                -102,\n                88,\n                -95,\n                91,\n                -105,\n                123,\n                -97,\n                104,\n                -101,\n                88,\n                -102,\n                75,\n                -94,\n                83,\n                -79,\n                97,\n                -98,\n                97,\n                -71,\n                89,\n                -79,\n                78,\n                -124,\n                76,\n                -111,\n                99,\n                -70,\n                93,\n                -65,\n                105,\n                -79,\n                95,\n                -83,\n                98,\n                -76,\n                116,\n                -97,\n                104,\n                -109,\n                93,\n                -109,\n                87,\n                -79,\n                91,\n                -91,\n                70,\n                -76,\n                99,\n                -78,\n                117,\n                -78,\n                121,\n                -95,\n                112,\n                -96,\n                90,\n                -104,\n                88,\n                -101,\n                82,\n                -87,\n                75,\n                -70,\n                82,\n                -64,\n                88,\n                -90,\n                61,\n                -87,\n                68,\n                -92,\n                87,\n                -90,\n                91,\n                -76,\n                100,\n                -83,\n                98,\n                -80,\n                107,\n                -81,\n                119,\n                -75,\n                95,\n                -80,\n                83,\n                -94,\n                84,\n                -81,\n                87,\n                -76,\n                85,\n                -70,\n                105,\n                -81,\n                111,\n                -77,\n                102,\n                -63,\n                105,\n                -85,\n                69,\n                -96,\n                75,\n                -100,\n                80,\n                -82,\n                81,\n                -84,\n                76,\n                -77,\n                67,\n                -84,\n                74,\n                -99,\n                79,\n                -104,\n                88,\n                -95,\n                83,\n                -83,\n                100,\n                -75,\n                105,\n                -65,\n                101,\n                -76,\n                84,\n                -82,\n                86,\n                -78,\n                91,\n                -76,\n                103,\n                -71,\n                98,\n                -76,\n                106,\n                -70,\n                99,\n                -73,\n                99,\n                -66,\n                84,\n                -68,\n                100,\n                -58,\n                98,\n                -76,\n                74,\n                -97,\n                74,\n                -90,\n                80,\n                -91,\n                86,\n                -92,\n                74,\n                -108,\n                73,\n                -102,\n                70,\n                -107,\n                71,\n                -100,\n                75,\n                -93,\n                79,\n                -74,\n                79,\n                -87,\n                94,\n                -80,\n                100,\n                -61,\n                118,\n                -59,\n                115,\n                -64,\n                110,\n                -71,\n                102,\n                -59,\n                78,\n                -61,\n                72,\n                -69,\n                73,\n                -80,\n                90,\n                -87,\n                87,\n                -106,\n                87,\n                -76,\n                86,\n                -66,\n                113,\n                -77,\n                102,\n                -90,\n                90,\n                -72,\n                96,\n                -86,\n                89,\n                -82,\n                77,\n                -85,\n                79,\n                -83,\n                79,\n                -69,\n                92,\n                -68,\n                92,\n                -80,\n                86,\n                -87,\n                102,\n                -90,\n                87,\n                -81,\n                87,\n                -72,\n                92,\n                -68,\n                89,\n                -70,\n                105,\n                -97,\n                103,\n                -88,\n                92,\n                -95,\n                83,\n                -77,\n                74,\n                -95,\n                86,\n                -79,\n                82,\n                -89,\n                79,\n                -97,\n                88,\n                -70,\n                96,\n                -72,\n                94,\n                -83,\n                92,\n                -92,\n                98,\n                -77,\n                98,\n                -81,\n                117,\n                -67,\n                108,\n                -78,\n                102,\n                -98,\n                93,\n                -91,\n                105,\n                -86,\n                82,\n                -97,\n                72,\n                -91,\n                68,\n                -103,\n                65,\n                -108,\n                75,\n                -84,\n                65,\n                -79,\n                87,\n                -74,\n                85,\n                -68,\n                94,\n                -69,\n                91,\n                -89,\n                91,\n                -71,\n                78,\n                -69,\n                95,\n                -75,\n                92,\n                -78,\n                84,\n                -89,\n                89,\n                -75,\n                88,\n                -63,\n                102,\n                -87,\n                79,\n                -95,\n                75,\n                -87,\n                87,\n                -90,\n                84,\n                -95,\n                96,\n                -85,\n                82,\n                -73,\n                76,\n                -79,\n                83,\n                -75,\n                79,\n                -85,\n                88,\n                -83,\n                91,\n                -60,\n                114,\n                -75,\n                101,\n                -75,\n                100,\n                -71,\n                99,\n                -69,\n                112,\n                -97,\n                113,\n                -89,\n                84,\n                -89,\n                85,\n                -99,\n                76,\n                -87,\n                95,\n                -89,\n                74,\n                -71,\n                82,\n                -81,\n                78,\n                -69,\n                78,\n                -97,\n                72,\n                -95,\n                78,\n                -85,\n                110,\n                -85,\n                109,\n                -81,\n                94,\n                -101,\n                93,\n                -108,\n                80,\n                -94,\n                90,\n                -89,\n                107,\n                -82,\n                123,\n                -68,\n                111,\n                -82,\n                104,\n                -86,\n                80,\n                -92,\n                90,\n                -100,\n                80,\n                -107,\n                68,\n                -87,\n                70,\n                -95,\n                90,\n                -79,\n                102,\n                -79,\n                85,\n                -100,\n                82,\n                -98,\n                95,\n                -94,\n                84,\n                -90,\n                77,\n                -78,\n                102,\n                -78,\n                108,\n                -79,\n                89,\n                -88,\n                75,\n                -90,\n                81,\n                -86,\n                111,\n                -74,\n                119,\n                -83,\n                117,\n                -88,\n                117,\n                -102,\n                99,\n                -85,\n                83,\n                -79,\n                69,\n                -73,\n                67,\n                -74,\n                72,\n                -61,\n                75,\n                -68,\n                58,\n                -58,\n                59,\n                -61,\n                49,\n                -57,\n                43,\n                -59,\n                43,\n                -48,\n                33,\n                -39,\n                26,\n                -27,\n                16,\n                -13,\n                15,\n                -9,\n                7,\n                -3,\n                4,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec6598ecd35e20014b8d0ef\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Contemplation\",\n            \"slug\": \"wpm090-13\",\n            \"longSlug\": \"wpm090-13-contemplation-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057f\",\n            \"originalFilename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900272\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 113,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Contemplation\",\n                \"TRACK: Display Title\": \"Contemplation\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"003\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"113\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"c5ea64ecb0180b68e0bf1f60ccedae2bd9ef972d\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900272\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-13\",\n            \"createdAt\": \"2020-08-18T22:10:22.909Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Mood→Edgy\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Edgy\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -4,\n                3,\n                -15,\n                17,\n                -36,\n                41,\n                -51,\n                70,\n                -64,\n                81,\n                -78,\n                90,\n                -88,\n                95,\n                -90,\n                105,\n                -95,\n                86,\n                -96,\n                101,\n                -93,\n                98,\n                -91,\n                86,\n                -80,\n                82,\n                -80,\n                100,\n                -73,\n                100,\n                -72,\n                91,\n                -75,\n                90,\n                -83,\n                94,\n                -89,\n                90,\n                -81,\n                110,\n                -87,\n                106,\n                -92,\n                103,\n                -94,\n                98,\n                -92,\n                97,\n                -82,\n                99,\n                -73,\n                84,\n                -76,\n                91,\n                -66,\n                87,\n                -69,\n                69,\n                -71,\n                75,\n                -62,\n                76,\n                -73,\n                81,\n                -87,\n                97,\n                -92,\n                104,\n                -90,\n                95,\n                -94,\n                98,\n                -87,\n                89,\n                -76,\n                85,\n                -67,\n                77,\n                -67,\n                86,\n                -67,\n                84,\n                -70,\n                84,\n                -68,\n                82,\n                -75,\n                80,\n                -68,\n                64,\n                -72,\n                69,\n                -83,\n                94,\n                -88,\n                85,\n                -75,\n                75,\n                -84,\n                73,\n                -94,\n                81,\n                -76,\n                82,\n                -74,\n                90,\n                -65,\n                98,\n                -61,\n                93,\n                -64,\n                95,\n                -69,\n                93,\n                -88,\n                93,\n                -83,\n                106,\n                -91,\n                104,\n                -80,\n                113,\n                -96,\n                122,\n                -87,\n                94,\n                -83,\n                90,\n                -71,\n                97,\n                -79,\n                96,\n                -63,\n                85,\n                -63,\n                87,\n                -77,\n                78,\n                -82,\n                99,\n                -83,\n                97,\n                -73,\n                97,\n                -97,\n                80,\n                -91,\n                81,\n                -79,\n                90,\n                -86,\n                83,\n                -89,\n                76,\n                -92,\n                79,\n                -87,\n                76,\n                -80,\n                72,\n                -59,\n                77,\n                -86,\n                93,\n                -93,\n                74,\n                -75,\n                81,\n                -78,\n                75,\n                -91,\n                77,\n                -81,\n                80,\n                -85,\n                105,\n                -82,\n                84,\n                -86,\n                82,\n                -76,\n                94,\n                -72,\n                93,\n                -66,\n                84,\n                -70,\n                104,\n                -67,\n                85,\n                -72,\n                78,\n                -80,\n                96,\n                -78,\n                86,\n                -84,\n                79,\n                -88,\n                100,\n                -89,\n                97,\n                -96,\n                88,\n                -91,\n                98,\n                -77,\n                97,\n                -79,\n                102,\n                -69,\n                104,\n                -71,\n                91,\n                -70,\n                91,\n                -79,\n                96,\n                -90,\n                96,\n                -79,\n                87,\n                -96,\n                97,\n                -94,\n                98,\n                -82,\n                99,\n                -103,\n                94,\n                -93,\n                98,\n                -90,\n                86,\n                -105,\n                80,\n                -89,\n                86,\n                -80,\n                70,\n                -62,\n                72,\n                -68,\n                75,\n                -95,\n                71,\n                -92,\n                78,\n                -96,\n                91,\n                -104,\n                93,\n                -87,\n                81,\n                -79,\n                68,\n                -74,\n                74,\n                -76,\n                76,\n                -73,\n                75,\n                -80,\n                72,\n                -63,\n                84,\n                -68,\n                85,\n                -71,\n                84,\n                -68,\n                83,\n                -77,\n                79,\n                -79,\n                70,\n                -83,\n                84,\n                -84,\n                90,\n                -76,\n                76,\n                -75,\n                83,\n                -73,\n                82,\n                -66,\n                80,\n                -67,\n                102,\n                -77,\n                95,\n                -67,\n                107,\n                -75,\n                110,\n                -72,\n                99,\n                -80,\n                112,\n                -91,\n                96,\n                -100,\n                89,\n                -89,\n                93,\n                -98,\n                89,\n                -88,\n                79,\n                -73,\n                99,\n                -75,\n                88,\n                -66,\n                80,\n                -66,\n                84,\n                -74,\n                76,\n                -73,\n                86,\n                -96,\n                80,\n                -81,\n                77,\n                -93,\n                88,\n                -99,\n                76,\n                -106,\n                87,\n                -88,\n                89,\n                -82,\n                88,\n                -77,\n                91,\n                -78,\n                73,\n                -79,\n                83,\n                -77,\n                75,\n                -83,\n                83,\n                -74,\n                88,\n                -79,\n                90,\n                -79,\n                75,\n                -92,\n                74,\n                -86,\n                81,\n                -89,\n                83,\n                -83,\n                71,\n                -88,\n                74,\n                -79,\n                74,\n                -88,\n                87,\n                -86,\n                76,\n                -82,\n                80,\n                -71,\n                82,\n                -86,\n                88,\n                -84,\n                96,\n                -79,\n                83,\n                -73,\n                78,\n                -76,\n                74,\n                -84,\n                75,\n                -94,\n                76,\n                -76,\n                70,\n                -72,\n                85,\n                -82,\n                92,\n                -72,\n                91,\n                -88,\n                90,\n                -75,\n                70,\n                -86,\n                88,\n                -82,\n                87,\n                -95,\n                92,\n                -85,\n                95,\n                -94,\n                88,\n                -96,\n                90,\n                -95,\n                102,\n                -80,\n                88,\n                -73,\n                85,\n                -75,\n                76,\n                -76,\n                72,\n                -75,\n                83,\n                -75,\n                72,\n                -78,\n                81,\n                -81,\n                77,\n                -81,\n                87,\n                -82,\n                90,\n                -96,\n                91,\n                -94,\n                91,\n                -90,\n                85,\n                -81,\n                89,\n                -74,\n                97,\n                -75,\n                85,\n                -86,\n                91,\n                -71,\n                82,\n                -69,\n                75,\n                -84,\n                83,\n                -100,\n                76,\n                -73,\n                76,\n                -81,\n                96,\n                -77,\n                86,\n                -77,\n                101,\n                -80,\n                96,\n                -80,\n                85,\n                -75,\n                83,\n                -83,\n                77,\n                -70,\n                68,\n                -71,\n                66,\n                -66,\n                71,\n                -82,\n                70,\n                -80,\n                73,\n                -91,\n                62,\n                -92,\n                74,\n                -77,\n                85,\n                -85,\n                90,\n                -80,\n                82,\n                -77,\n                78,\n                -81,\n                69,\n                -73,\n                100,\n                -66,\n                90,\n                -79,\n                69,\n                -78,\n                72,\n                -70,\n                78,\n                -65,\n                67,\n                -70,\n                73,\n                -70,\n                79,\n                -76,\n                77,\n                -85,\n                82,\n                -84,\n                78,\n                -70,\n                91,\n                -87,\n                96,\n                -70,\n                70,\n                -69,\n                64,\n                -84,\n                75,\n                -84,\n                82,\n                -69,\n                66,\n                -69,\n                68,\n                -77,\n                77,\n                -72,\n                73,\n                -80,\n                72,\n                -80,\n                88,\n                -81,\n                90,\n                -96,\n                81,\n                -68,\n                73,\n                -67,\n                98,\n                -67,\n                79,\n                -69,\n                84,\n                -70,\n                85,\n                -76,\n                81,\n                -74,\n                113,\n                -81,\n                89,\n                -69,\n                88,\n                -76,\n                98,\n                -88,\n                97,\n                -78,\n                90,\n                -76,\n                95,\n                -82,\n                67,\n                -69,\n                65,\n                -69,\n                82,\n                -69,\n                99,\n                -76,\n                97,\n                -64,\n                80,\n                -74,\n                77,\n                -72,\n                73,\n                -70,\n                79,\n                -80,\n                100,\n                -78,\n                99,\n                -75,\n                86,\n                -67,\n                76,\n                -68,\n                75,\n                -58,\n                70,\n                -63,\n                69,\n                -55,\n                62,\n                -57,\n                52,\n                -38,\n                43,\n                -37,\n                41,\n                -24,\n                32,\n                -22,\n                28,\n                -17,\n                21,\n                -11,\n                17,\n                -8,\n                10,\n                -4,\n                5,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed7e01f2f47de00149638c7\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Aurora\",\n            \"slug\": \"wpm090-18\",\n            \"longSlug\": \"wpm090-18-aurora-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057d\",\n            \"originalFilename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900277\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 18,\n            \"versionNumber\": 0,\n            \"bpm\": 110,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Aurora\",\n                \"TRACK: Display Title\": \"Aurora\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n                \"TRACK: Number\": \"018\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"008\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"110\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"507f9335ac49763a86f27b653a0902cae380ccdb\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900277\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-18\",\n            \"createdAt\": \"2020-08-18T22:10:22.924Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Corporate\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Corporate\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b650015640599\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -120,\n                125,\n                -121,\n                127,\n                -68,\n                93,\n                -61,\n                59,\n                -51,\n                42,\n                -117,\n                125,\n                -106,\n                126,\n                -76,\n                84,\n                -62,\n                56,\n                -52,\n                58,\n                -60,\n                63,\n                -113,\n                127,\n                -97,\n                122,\n                -82,\n                71,\n                -107,\n                126,\n                -113,\n                123,\n                -99,\n                123,\n                -117,\n                110,\n                -119,\n                107,\n                -73,\n                69,\n                -59,\n                54,\n                -76,\n                72,\n                -128,\n                114,\n                -122,\n                124,\n                -98,\n                93,\n                -82,\n                74,\n                -52,\n                46,\n                -50,\n                68,\n                -117,\n                127,\n                -111,\n                121,\n                -60,\n                82,\n                -57,\n                61,\n                -55,\n                59,\n                -111,\n                125,\n                -116,\n                111,\n                -108,\n                108,\n                -101,\n                123,\n                -123,\n                123,\n                -106,\n                84,\n                -123,\n                123,\n                -126,\n                120,\n                -75,\n                91,\n                -60,\n                63,\n                -103,\n                93,\n                -110,\n                121,\n                -125,\n                119,\n                -102,\n                127,\n                -94,\n                88,\n                -116,\n                105,\n                -94,\n                127,\n                -121,\n                126,\n                -126,\n                119,\n                -102,\n                86,\n                -81,\n                67,\n                -73,\n                89,\n                -86,\n                80,\n                -116,\n                126,\n                -104,\n                123,\n                -104,\n                111,\n                -121,\n                122,\n                -90,\n                127,\n                -71,\n                91,\n                -110,\n                125,\n                -116,\n                125,\n                -106,\n                111,\n                -85,\n                83,\n                -113,\n                99,\n                -119,\n                123,\n                -112,\n                123,\n                -106,\n                91,\n                -93,\n                116,\n                -111,\n                125,\n                -97,\n                84,\n                -124,\n                123,\n                -110,\n                124,\n                -76,\n                94,\n                -74,\n                80,\n                -83,\n                74,\n                -76,\n                89,\n                -123,\n                126,\n                -115,\n                126,\n                -119,\n                127,\n                -120,\n                125,\n                -93,\n                109,\n                -114,\n                124,\n                -108,\n                124,\n                -87,\n                73,\n                -110,\n                71,\n                -108,\n                90,\n                -83,\n                94,\n                -116,\n                121,\n                -124,\n                127,\n                -106,\n                88,\n                -108,\n                124,\n                -102,\n                127,\n                -87,\n                104,\n                -110,\n                127,\n                -117,\n                124,\n                -69,\n                83,\n                -73,\n                107,\n                -95,\n                90,\n                -109,\n                117,\n                -106,\n                126,\n                -91,\n                99,\n                -113,\n                127,\n                -108,\n                127,\n                -80,\n                84,\n                -121,\n                125,\n                -116,\n                125,\n                -78,\n                73,\n                -90,\n                96,\n                -115,\n                97,\n                -117,\n                117,\n                -118,\n                111,\n                -120,\n                123,\n                -122,\n                123,\n                -121,\n                126,\n                -86,\n                75,\n                -111,\n                127,\n                -114,\n                126,\n                -85,\n                79,\n                -92,\n                94,\n                -87,\n                88,\n                -92,\n                87,\n                -128,\n                122,\n                -108,\n                127,\n                -97,\n                116,\n                -116,\n                123,\n                -103,\n                127,\n                -112,\n                127,\n                -105,\n                119,\n                -95,\n                90,\n                -94,\n                70,\n                -84,\n                73,\n                -112,\n                85,\n                -128,\n                127,\n                -127,\n                126,\n                -111,\n                124,\n                -114,\n                126,\n                -117,\n                110,\n                -111,\n                115,\n                -125,\n                125,\n                -114,\n                110,\n                -102,\n                127,\n                -117,\n                126,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -96,\n                124,\n                -124,\n                126,\n                -91,\n                119,\n                -108,\n                101,\n                -111,\n                127,\n                -115,\n                124,\n                -124,\n                126,\n                -117,\n                127,\n                -90,\n                109,\n                -78,\n                89,\n                -128,\n                127,\n                -118,\n                109,\n                -109,\n                125,\n                -103,\n                103,\n                -124,\n                97,\n                -102,\n                126,\n                -127,\n                127,\n                -118,\n                127,\n                -112,\n                125,\n                -91,\n                106,\n                -88,\n                95,\n                -125,\n                127,\n                -118,\n                125,\n                -97,\n                126,\n                -123,\n                127,\n                -75,\n                86,\n                -101,\n                72,\n                -124,\n                127,\n                -124,\n                104,\n                -119,\n                127,\n                -116,\n                125,\n                -121,\n                126,\n                -126,\n                127,\n                -124,\n                125,\n                -101,\n                119,\n                -121,\n                121,\n                -100,\n                127,\n                -93,\n                87,\n                -118,\n                117,\n                -117,\n                127,\n                -98,\n                111,\n                -94,\n                97,\n                -90,\n                91,\n                -112,\n                99,\n                -113,\n                127,\n                -114,\n                109,\n                -125,\n                112,\n                -103,\n                127,\n                -86,\n                83,\n                -109,\n                127,\n                -110,\n                124,\n                -93,\n                103,\n                -86,\n                96,\n                -105,\n                101,\n                -101,\n                100,\n                -125,\n                125,\n                -111,\n                126,\n                -99,\n                118,\n                -123,\n                122,\n                -121,\n                121,\n                -119,\n                123,\n                -123,\n                122,\n                -110,\n                127,\n                -100,\n                102,\n                -99,\n                89,\n                -91,\n                106,\n                -123,\n                125,\n                -118,\n                126,\n                -91,\n                109,\n                -121,\n                126,\n                -125,\n                125,\n                -66,\n                88,\n                -105,\n                126,\n                -106,\n                127,\n                -86,\n                73,\n                -103,\n                99,\n                -100,\n                94,\n                -123,\n                127,\n                -127,\n                125,\n                -102,\n                125,\n                -110,\n                123,\n                -103,\n                126,\n                -108,\n                102,\n                -124,\n                124,\n                -122,\n                127,\n                -97,\n                93,\n                -108,\n                119,\n                -101,\n                116,\n                -98,\n                91,\n                -122,\n                122,\n                -123,\n                125,\n                -99,\n                114,\n                -112,\n                126,\n                -100,\n                127,\n                -124,\n                125,\n                -123,\n                127,\n                -95,\n                105,\n                -117,\n                106,\n                -88,\n                101,\n                -106,\n                113,\n                -126,\n                126,\n                -111,\n                126,\n                -113,\n                102,\n                -120,\n                110,\n                -114,\n                117,\n                -97,\n                96,\n                -115,\n                127,\n                -121,\n                123,\n                -98,\n                97,\n                -90,\n                103,\n                -104,\n                98,\n                -122,\n                127,\n                -119,\n                124,\n                -100,\n                114,\n                -117,\n                119,\n                -115,\n                127,\n                -104,\n                122,\n                -124,\n                124,\n                -124,\n                126,\n                -100,\n                85,\n                -109,\n                99,\n                -115,\n                120,\n                -126,\n                127,\n                -128,\n                127,\n                -110,\n                122,\n                -125,\n                127,\n                -103,\n                123,\n                -93,\n                104,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                119,\n                -126,\n                123,\n                -106,\n                120,\n                -104,\n                104,\n                -124,\n                123,\n                -125,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -99,\n                97,\n                -97,\n                90,\n                -117,\n                127,\n                -115,\n                104,\n                -127,\n                127,\n                -126,\n                125,\n                -100,\n                108,\n                -65,\n                76,\n                -50,\n                49,\n                -35,\n                43,\n                -26,\n                19,\n                -12,\n                14,\n                -9,\n                11,\n                -6,\n                7,\n                -4,\n                3,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"An Invasion\",\n            \"slug\": \"wpm091-1\",\n            \"longSlug\": \"wpm091-1-an-invasion-main\",\n            \"originalFilename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900280\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 1,\n            \"versionNumber\": 0,\n            \"bpm\": 100,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"An Invasion\",\n                \"TRACK: Display Title\": \"An Invasion\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n                \"TRACK: Number\": \"001\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"132\",\n                \"TRACK: BPM\": \"100\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"98fc8e98508c2356dc7a5f46d607c710154b6151\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900280\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-1\",\n            \"createdAt\": \"2020-08-18T22:17:59.125Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:12\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 132000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                0,\n                0,\n                0,\n                0,\n                -8,\n                9,\n                -8,\n                8,\n                -6,\n                6,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -2,\n                1,\n                -4,\n                4,\n                -6,\n                5,\n                -11,\n                10,\n                -13,\n                11,\n                -8,\n                9,\n                -6,\n                7,\n                -5,\n                6,\n                -5,\n                5,\n                -5,\n                6,\n                -5,\n                6,\n                -7,\n                7,\n                -7,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -4,\n                6,\n                -5,\n                4,\n                -6,\n                6,\n                -6,\n                7,\n                -7,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                5,\n                -5,\n                4,\n                -10,\n                10,\n                -104,\n                126,\n                -93,\n                90,\n                -112,\n                109,\n                -102,\n                90,\n                -51,\n                45,\n                -25,\n                25,\n                -17,\n                16,\n                -9,\n                9,\n                -16,\n                15,\n                -76,\n                101,\n                -116,\n                125,\n                -120,\n                127,\n                -90,\n                92,\n                -65,\n                72,\n                -47,\n                47,\n                -18,\n                18,\n                -11,\n                9,\n                -6,\n                6,\n                -7,\n                7,\n                -102,\n                126,\n                -80,\n                86,\n                -110,\n                125,\n                -114,\n                110,\n                -62,\n                77,\n                -43,\n                44,\n                -21,\n                19,\n                -22,\n                19,\n                -20,\n                18,\n                -38,\n                36,\n                -89,\n                94,\n                -93,\n                116,\n                -106,\n                127,\n                -84,\n                98,\n                -58,\n                58,\n                -38,\n                41,\n                -28,\n                30,\n                -21,\n                22,\n                -19,\n                25,\n                -24,\n                24,\n                -16,\n                19,\n                -19,\n                18,\n                -20,\n                21,\n                -22,\n                22,\n                -24,\n                22,\n                -17,\n                17,\n                -20,\n                21,\n                -19,\n                19,\n                -16,\n                16,\n                -20,\n                19,\n                -19,\n                20,\n                -19,\n                21,\n                -24,\n                22,\n                -17,\n                16,\n                -16,\n                15,\n                -21,\n                15,\n                -20,\n                20,\n                -17,\n                17,\n                -17,\n                21,\n                -19,\n                18,\n                -18,\n                17,\n                -20,\n                18,\n                -19,\n                17,\n                -19,\n                23,\n                -27,\n                23,\n                -20,\n                20,\n                -18,\n                19,\n                -24,\n                17,\n                -23,\n                22,\n                -16,\n                17,\n                -23,\n                23,\n                -24,\n                26,\n                -23,\n                26,\n                -25,\n                24,\n                -24,\n                20,\n                -21,\n                22,\n                -20,\n                18,\n                -23,\n                25,\n                -16,\n                18,\n                -23,\n                20,\n                -20,\n                20,\n                -24,\n                21,\n                -24,\n                23,\n                -23,\n                26,\n                -20,\n                22,\n                -19,\n                19,\n                -19,\n                18,\n                -21,\n                21,\n                -21,\n                21,\n                -23,\n                25,\n                -17,\n                17,\n                -17,\n                17,\n                -22,\n                21,\n                -24,\n                22,\n                -21,\n                20,\n                -18,\n                19,\n                -20,\n                20,\n                -17,\n                19,\n                -21,\n                24,\n                -20,\n                20,\n                -24,\n                25,\n                -24,\n                26,\n                -22,\n                21,\n                -19,\n                19,\n                -17,\n                21,\n                -23,\n                19,\n                -23,\n                27,\n                -18,\n                17,\n                -21,\n                24,\n                -21,\n                20,\n                -19,\n                18,\n                -24,\n                19,\n                -23,\n                20,\n                -27,\n                28,\n                -31,\n                33,\n                -37,\n                34,\n                -59,\n                43,\n                -58,\n                54,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -115,\n                118,\n                -109,\n                120,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                124,\n                -128,\n                126,\n                -121,\n                127,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                127,\n                -124,\n                127,\n                -122,\n                125,\n                -128,\n                126,\n                -127,\n                125,\n                -125,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -124,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -124,\n                118,\n                -124,\n                123,\n                -127,\n                126,\n                -126,\n                110,\n                -109,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -120,\n                119,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -126,\n                127,\n                -126,\n                111,\n                -128,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -120,\n                126,\n                -122,\n                120,\n                -123,\n                123,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -116,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                119,\n                -120,\n                127,\n                -118,\n                119,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                124,\n                -105,\n                119,\n                -128,\n                127,\n                -125,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -126,\n                127,\n                -124,\n                125,\n                -124,\n                125,\n                -116,\n                124,\n                -124,\n                127,\n                -127,\n                124,\n                -127,\n                127,\n                -122,\n                115,\n                -96,\n                103,\n                -122,\n                123,\n                -104,\n                95,\n                -124,\n                119,\n                -93,\n                79,\n                -83,\n                108,\n                -121,\n                104,\n                -93,\n                98,\n                -106,\n                97,\n                -60,\n                65,\n                -89,\n                86,\n                -56,\n                55,\n                -59,\n                52,\n                -68,\n                73,\n                -69,\n                56,\n                -81,\n                81,\n                -88,\n                87,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                123,\n                -119,\n                127,\n                -121,\n                126,\n                -127,\n                125,\n                -127,\n                127,\n                -119,\n                126,\n                -115,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -126,\n                123,\n                -122,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -123,\n                125,\n                -126,\n                124,\n                -126,\n                124,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                122,\n                -125,\n                127,\n                -119,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                124,\n                -127,\n                116,\n                -123,\n                125,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                118,\n                -127,\n                126,\n                -112,\n                126,\n                -125,\n                127,\n                -126,\n                119,\n                -119,\n                121,\n                -122,\n                120,\n                -127,\n                112,\n                -128,\n                127,\n                -126,\n                127,\n                -114,\n                125,\n                -117,\n                124,\n                -104,\n                118,\n                -126,\n                127,\n                -125,\n                111,\n                -117,\n                109,\n                -109,\n                104,\n                -89,\n                102,\n                -128,\n                126,\n                -121,\n                122,\n                -128,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -96,\n                104,\n                -81,\n                72,\n                -39,\n                58,\n                -21,\n                23,\n                -18,\n                12,\n                -4,\n                5,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640570\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"A Violent End\",\n            \"slug\": \"wpm091-13\",\n            \"longSlug\": \"wpm091-13-a-violent-end-main\",\n            \"originalFilename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900292\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 80,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"A Violent End\",\n                \"TRACK: Display Title\": \"A Violent End\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"80\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"99a7dd89e954e163eee49516525a559c75da3904\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900292\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-13\",\n            \"createdAt\": \"2020-08-18T22:17:59.132Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Halloween\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Halloween\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059b\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                116,\n                -113,\n                103,\n                -126,\n                126,\n                -122,\n                123,\n                -120,\n                126,\n                -94,\n                98,\n                -114,\n                123,\n                -115,\n                110,\n                -123,\n                127,\n                -126,\n                127,\n                -105,\n                98,\n                -117,\n                105,\n                -127,\n                124,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                116,\n                -123,\n                122,\n                -128,\n                127,\n                -122,\n                125,\n                -126,\n                126,\n                -107,\n                114,\n                -103,\n                111,\n                -127,\n                125,\n                -120,\n                126,\n                -120,\n                125,\n                -101,\n                112,\n                -119,\n                118,\n                -118,\n                107,\n                -119,\n                126,\n                -127,\n                127,\n                -96,\n                91,\n                -119,\n                123,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                125,\n                -123,\n                117,\n                -126,\n                127,\n                -107,\n                92,\n                -126,\n                123,\n                -126,\n                126,\n                -102,\n                102,\n                -126,\n                126,\n                -106,\n                110,\n                -127,\n                126,\n                -118,\n                124,\n                -105,\n                110,\n                -119,\n                122,\n                -122,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -101,\n                97,\n                -126,\n                124,\n                -128,\n                124,\n                -116,\n                97,\n                -127,\n                125,\n                -127,\n                120,\n                -126,\n                127,\n                -125,\n                124,\n                -91,\n                114,\n                -128,\n                127,\n                -128,\n                121,\n                -126,\n                126,\n                -126,\n                127,\n                -123,\n                120,\n                -127,\n                126,\n                -115,\n                126,\n                -118,\n                112,\n                -128,\n                126,\n                -125,\n                126,\n                -106,\n                126,\n                -119,\n                125,\n                -125,\n                126,\n                -128,\n                126,\n                -126,\n                124,\n                -127,\n                127,\n                -118,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -125,\n                125,\n                -121,\n                123,\n                -124,\n                114,\n                -126,\n                120,\n                -127,\n                127,\n                -128,\n                126,\n                -115,\n                126,\n                -126,\n                118,\n                -126,\n                124,\n                -124,\n                127,\n                -125,\n                127,\n                -127,\n                121,\n                -127,\n                120,\n                -125,\n                124,\n                -127,\n                125,\n                -123,\n                126,\n                -122,\n                126,\n                -128,\n                124,\n                -120,\n                123,\n                -127,\n                127,\n                -127,\n                127,\n                -117,\n                116,\n                -127,\n                125,\n                -126,\n                118,\n                -127,\n                126,\n                -125,\n                125,\n                -112,\n                124,\n                -121,\n                115,\n                -125,\n                124,\n                -117,\n                126,\n                -126,\n                127,\n                -110,\n                108,\n                -127,\n                126,\n                -125,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                121,\n                -126,\n                120,\n                -125,\n                126,\n                -109,\n                125,\n                -128,\n                127,\n                -100,\n                101,\n                -79,\n                85,\n                -71,\n                76,\n                -40,\n                42,\n                -89,\n                83,\n                -28,\n                27,\n                -33,\n                41,\n                -66,\n                64,\n                -54,\n                76,\n                -67,\n                68,\n                -29,\n                28,\n                -36,\n                28,\n                -91,\n                91,\n                -54,\n                61,\n                -74,\n                64,\n                -20,\n                19,\n                -56,\n                55,\n                -61,\n                66,\n                -121,\n                126,\n                -88,\n                87,\n                -96,\n                117,\n                -84,\n                88,\n                -103,\n                98,\n                -100,\n                105,\n                -113,\n                105,\n                -78,\n                63,\n                -100,\n                114,\n                -86,\n                103,\n                -90,\n                127,\n                -119,\n                107,\n                -61,\n                57,\n                -103,\n                119,\n                -109,\n                119,\n                -89,\n                103,\n                -93,\n                96,\n                -63,\n                85,\n                -90,\n                115,\n                -100,\n                124,\n                -124,\n                127,\n                -104,\n                120,\n                -93,\n                94,\n                -109,\n                124,\n                -118,\n                125,\n                -102,\n                97,\n                -95,\n                104,\n                -91,\n                97,\n                -96,\n                118,\n                -112,\n                124,\n                -106,\n                126,\n                -124,\n                125,\n                -93,\n                86,\n                -106,\n                123,\n                -80,\n                90,\n                -105,\n                113,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -120,\n                116,\n                -126,\n                127,\n                -126,\n                123,\n                -107,\n                125,\n                -107,\n                123,\n                -126,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                125,\n                -123,\n                125,\n                -120,\n                97,\n                -127,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                123,\n                -113,\n                125,\n                -125,\n                119,\n                -128,\n                125,\n                -126,\n                125,\n                -122,\n                127,\n                -116,\n                119,\n                -125,\n                125,\n                -124,\n                127,\n                -126,\n                127,\n                -123,\n                126,\n                -122,\n                119,\n                -121,\n                127,\n                -124,\n                126,\n                -127,\n                122,\n                -110,\n                107,\n                -118,\n                116,\n                -120,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -125,\n                111,\n                -124,\n                127,\n                -127,\n                121,\n                -123,\n                127,\n                -128,\n                127,\n                -106,\n                90,\n                -128,\n                119,\n                -112,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -116,\n                116,\n                -122,\n                125,\n                -127,\n                122,\n                -127,\n                127,\n                -128,\n                122,\n                -120,\n                104,\n                -125,\n                125,\n                -127,\n                120,\n                -127,\n                125,\n                -126,\n                114,\n                -126,\n                123,\n                -125,\n                122,\n                -111,\n                127,\n                -126,\n                126,\n                -123,\n                125,\n                -111,\n                122,\n                -124,\n                120,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -123,\n                107,\n                -127,\n                126,\n                -125,\n                127,\n                -124,\n                124,\n                -123,\n                124,\n                -124,\n                97,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                122,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -128,\n                117,\n                -123,\n                127,\n                -117,\n                117,\n                -114,\n                123,\n                -127,\n                127,\n                -128,\n                121,\n                -113,\n                120,\n                -124,\n                117,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -114,\n                114,\n                -124,\n                123,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -110,\n                95,\n                -123,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -124,\n                126,\n                -120,\n                125,\n                -126,\n                125,\n                -123,\n                127,\n                -124,\n                124,\n                -124,\n                112,\n                -108,\n                124,\n                -126,\n                123,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -100,\n                98,\n                -91,\n                88,\n                -60,\n                62,\n                -44,\n                44,\n                -29,\n                24,\n                -19,\n                18,\n                -11,\n                11,\n                -9,\n                11,\n                -5,\n                5,\n                -3,\n                4,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Gathering Hoard\",\n            \"slug\": \"wpm091-25\",\n            \"longSlug\": \"wpm091-25-the-gathering-hoard-main\",\n            \"originalFilename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900304\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 25,\n            \"versionNumber\": 0,\n            \"bpm\": 85,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Gathering Hoard\",\n                \"TRACK: Display Title\": \"The Gathering Hoard\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n                \"TRACK: Number\": \"025\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"179\",\n                \"TRACK: BPM\": \"85\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"46addaa4a408f1e0e121690aa093e48dac864e40\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900304\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-25\",\n            \"createdAt\": \"2020-08-18T22:17:59.138Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:59\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 179000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -127,\n                127,\n                -106,\n                120,\n                -114,\n                88,\n                -79,\n                103,\n                -78,\n                85,\n                -115,\n                127,\n                -126,\n                125,\n                -111,\n                124,\n                -95,\n                107,\n                -82,\n                103,\n                -102,\n                102,\n                -127,\n                127,\n                -115,\n                126,\n                -97,\n                94,\n                -81,\n                93,\n                -93,\n                94,\n                -98,\n                110,\n                -124,\n                127,\n                -113,\n                117,\n                -100,\n                121,\n                -81,\n                90,\n                -100,\n                125,\n                -126,\n                125,\n                -125,\n                124,\n                -111,\n                108,\n                -75,\n                105,\n                -76,\n                76,\n                -106,\n                102,\n                -127,\n                126,\n                -104,\n                122,\n                -106,\n                102,\n                -96,\n                101,\n                -90,\n                96,\n                -125,\n                127,\n                -127,\n                125,\n                -99,\n                103,\n                -91,\n                96,\n                -64,\n                82,\n                -88,\n                106,\n                -127,\n                127,\n                -116,\n                117,\n                -113,\n                104,\n                -87,\n                94,\n                -102,\n                125,\n                -125,\n                123,\n                -126,\n                114,\n                -114,\n                117,\n                -121,\n                105,\n                -86,\n                90,\n                -99,\n                108,\n                -126,\n                127,\n                -119,\n                119,\n                -114,\n                126,\n                -111,\n                93,\n                -114,\n                125,\n                -125,\n                127,\n                -124,\n                110,\n                -120,\n                127,\n                -123,\n                108,\n                -93,\n                112,\n                -88,\n                100,\n                -128,\n                127,\n                -121,\n                118,\n                -127,\n                121,\n                -107,\n                116,\n                -103,\n                124,\n                -127,\n                126,\n                -122,\n                121,\n                -125,\n                108,\n                -113,\n                108,\n                -100,\n                120,\n                -99,\n                99,\n                -125,\n                124,\n                -127,\n                125,\n                -115,\n                125,\n                -112,\n                118,\n                -115,\n                124,\n                -111,\n                117,\n                -126,\n                124,\n                -126,\n                122,\n                -120,\n                107,\n                -99,\n                115,\n                -109,\n                100,\n                -119,\n                119,\n                -127,\n                127,\n                -110,\n                123,\n                -120,\n                123,\n                -103,\n                124,\n                -122,\n                122,\n                -126,\n                127,\n                -123,\n                125,\n                -116,\n                109,\n                -105,\n                119,\n                -113,\n                108,\n                -118,\n                118,\n                -127,\n                125,\n                -125,\n                121,\n                -120,\n                124,\n                -105,\n                122,\n                -113,\n                115,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -99,\n                121,\n                -111,\n                97,\n                -115,\n                120,\n                -128,\n                127,\n                -121,\n                124,\n                -126,\n                127,\n                -118,\n                118,\n                -123,\n                115,\n                -121,\n                127,\n                -125,\n                127,\n                -127,\n                126,\n                -117,\n                112,\n                -108,\n                96,\n                -118,\n                115,\n                -128,\n                127,\n                -118,\n                126,\n                -124,\n                124,\n                -96,\n                90,\n                -114,\n                123,\n                -127,\n                126,\n                -124,\n                117,\n                -112,\n                126,\n                -121,\n                106,\n                -112,\n                119,\n                -114,\n                112,\n                -123,\n                125,\n                -123,\n                125,\n                -124,\n                126,\n                -103,\n                108,\n                -117,\n                125,\n                -127,\n                127,\n                -126,\n                125,\n                -111,\n                113,\n                -101,\n                93,\n                -92,\n                96,\n                -83,\n                96,\n                -78,\n                76,\n                -100,\n                109,\n                -101,\n                72,\n                -57,\n                61,\n                -97,\n                60,\n                -60,\n                62,\n                -126,\n                127,\n                -105,\n                105,\n                -102,\n                94,\n                -69,\n                89,\n                -73,\n                68,\n                -61,\n                80,\n                -73,\n                100,\n                -66,\n                54,\n                -56,\n                72,\n                -91,\n                79,\n                -92,\n                86,\n                -126,\n                127,\n                -113,\n                93,\n                -102,\n                109,\n                -81,\n                95,\n                -68,\n                96,\n                -87,\n                76,\n                -92,\n                76,\n                -80,\n                80,\n                -62,\n                57,\n                -110,\n                71,\n                -78,\n                81,\n                -126,\n                127,\n                -86,\n                92,\n                -80,\n                75,\n                -88,\n                70,\n                -74,\n                100,\n                -64,\n                67,\n                -63,\n                66,\n                -66,\n                89,\n                -71,\n                69,\n                -92,\n                72,\n                -62,\n                60,\n                -127,\n                127,\n                -123,\n                116,\n                -87,\n                87,\n                -116,\n                98,\n                -76,\n                88,\n                -90,\n                97,\n                -66,\n                78,\n                -86,\n                96,\n                -104,\n                113,\n                -93,\n                69,\n                -62,\n                68,\n                -128,\n                127,\n                -103,\n                109,\n                -101,\n                92,\n                -125,\n                100,\n                -71,\n                88,\n                -80,\n                89,\n                -64,\n                85,\n                -76,\n                94,\n                -84,\n                75,\n                -112,\n                94,\n                -96,\n                86,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -119,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -120,\n                127,\n                -128,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -121,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -116,\n                127,\n                -119,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -117,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                124,\n                -126,\n                127,\n                -121,\n                126,\n                -123,\n                127,\n                -127,\n                124,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                123,\n                -105,\n                120,\n                -123,\n                126,\n                -100,\n                118,\n                -119,\n                117,\n                -127,\n                126,\n                -120,\n                122,\n                -98,\n                94,\n                -81,\n                90,\n                -55,\n                55,\n                -51,\n                47,\n                -51,\n                44,\n                -63,\n                59,\n                -88,\n                85,\n                -84,\n                80,\n                -84,\n                68,\n                -65,\n                70,\n                -63,\n                75,\n                -79,\n                67,\n                -80,\n                73,\n                -80,\n                56,\n                -48,\n                47,\n                -48,\n                52,\n                -38,\n                37,\n                -35,\n                35,\n                -30,\n                30,\n                -33,\n                32,\n                -21,\n                20,\n                -15,\n                15,\n                -9,\n                10,\n                -8,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Hunt\",\n            \"slug\": \"wpm091-4\",\n            \"longSlug\": \"wpm091-4-the-hunt-main\",\n            \"originalFilename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900283\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 4,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Hunt\",\n                \"TRACK: Display Title\": \"The Hunt\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n                \"TRACK: Number\": \"004\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"199\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"8a55db4b2567868ab8b08d39941c7d62951bbc98\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900283\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-4\",\n            \"createdAt\": \"2020-08-18T22:17:59.151Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:19\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 199000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059d\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -46,\n                48,\n                -72,\n                57,\n                -60,\n                49,\n                -48,\n                45,\n                -68,\n                60,\n                -71,\n                55,\n                -47,\n                51,\n                -56,\n                50,\n                -52,\n                48,\n                -55,\n                73,\n                -58,\n                66,\n                -68,\n                50,\n                -68,\n                56,\n                -127,\n                127,\n                -118,\n                124,\n                -126,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -124,\n                125,\n                -119,\n                127,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                126,\n                -123,\n                127,\n                -119,\n                120,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -122,\n                127,\n                -128,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                126,\n                -119,\n                106,\n                -128,\n                127,\n                -123,\n                127,\n                -126,\n                127,\n                -126,\n                126,\n                -126,\n                126,\n                -125,\n                125,\n                -106,\n                121,\n                -128,\n                127,\n                -128,\n                127,\n                -122,\n                125,\n                -124,\n                127,\n                -127,\n                123,\n                -127,\n                121,\n                -127,\n                127,\n                -125,\n                125,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                123,\n                -124,\n                127,\n                -128,\n                127,\n                -119,\n                125,\n                -122,\n                127,\n                -123,\n                120,\n                -113,\n                124,\n                -128,\n                127,\n                -110,\n                123,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -122,\n                125,\n                -114,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                127,\n                -117,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -125,\n                119,\n                -127,\n                125,\n                -127,\n                127,\n                -127,\n                125,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -111,\n                124,\n                -127,\n                127,\n                -125,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -126,\n                127,\n                -127,\n                125,\n                -115,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -128,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                124,\n                -125,\n                126,\n                -125,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -110,\n                125,\n                -128,\n                126,\n                -127,\n                127,\n                -127,\n                125,\n                -126,\n                127,\n                -126,\n                123,\n                -128,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -122,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -124,\n                122,\n                -128,\n                127,\n                -126,\n                125,\n                -104,\n                127,\n                -128,\n                127,\n                -124,\n                111,\n                -76,\n                85,\n                -50,\n                56,\n                -37,\n                31,\n                -25,\n                21,\n                -17,\n                19,\n                -17,\n                17,\n                -16,\n                16,\n                -12,\n                13,\n                -9,\n                10,\n                -14,\n                12,\n                -12,\n                11,\n                -11,\n                13,\n                -8,\n                8,\n                -10,\n                8,\n                -7,\n                8,\n                -9,\n                8,\n                -12,\n                9,\n                -13,\n                13,\n                -16,\n                15,\n                -20,\n                22,\n                -21,\n                21,\n                -20,\n                20,\n                -17,\n                18,\n                -18,\n                18,\n                -73,\n                75,\n                -72,\n                59,\n                -61,\n                60,\n                -67,\n                112,\n                -66,\n                77,\n                -65,\n                70,\n                -50,\n                47,\n                -78,\n                73,\n                -87,\n                77,\n                -58,\n                58,\n                -102,\n                104,\n                -68,\n                74,\n                -64,\n                60,\n                -52,\n                49,\n                -81,\n                87,\n                -55,\n                56,\n                -49,\n                57,\n                -21,\n                22,\n                -15,\n                15,\n                -8,\n                9,\n                -11,\n                10,\n                -11,\n                13,\n                -11,\n                10,\n                -8,\n                8,\n                -9,\n                13,\n                -11,\n                12,\n                -12,\n                12,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                126,\n                -125,\n                125,\n                -123,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -125,\n                124,\n                -126,\n                126,\n                -126,\n                126,\n                -123,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -118,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                121,\n                -127,\n                127,\n                -123,\n                127,\n                -127,\n                127,\n                -120,\n                126,\n                -126,\n                127,\n                -115,\n                125,\n                -100,\n                98,\n                -128,\n                127,\n                -125,\n                117,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                124,\n                -124,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -124,\n                126,\n                -127,\n                126,\n                -122,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -128,\n                127,\n                -119,\n                127,\n                -100,\n                115,\n                -128,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -123,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                122,\n                -127,\n                127,\n                -126,\n                125,\n                -127,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                125,\n                -120,\n                125,\n                -121,\n                125,\n                -116,\n                127,\n                -121,\n                127,\n                -127,\n                127,\n                -107,\n                107,\n                -120,\n                98,\n                -102,\n                106,\n                -108,\n                95,\n                -79,\n                73,\n                -126,\n                126,\n                -117,\n                110,\n                -103,\n                100,\n                -100,\n                101,\n                -91,\n                93,\n                -111,\n                99,\n                -99,\n                103,\n                -126,\n                126,\n                -100,\n                107,\n                -95,\n                110,\n                -52,\n                67,\n                -48,\n                49,\n                -45,\n                41,\n                -34,\n                37,\n                -31,\n                31,\n                -23,\n                19,\n                -19,\n                16,\n                -12,\n                14,\n                -11,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -3,\n                3,\n                -2,\n                2,\n                -1,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Battleground\",\n            \"slug\": \"wpm091-10\",\n            \"longSlug\": \"wpm091-10-battleground-main\",\n            \"originalFilename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900289\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 10,\n            \"versionNumber\": 0,\n            \"bpm\": 119,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Battleground\",\n                \"TRACK: Display Title\": \"Battleground\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n                \"TRACK: Number\": \"010\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"119\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"04355e38594b78825f8ca834214c558c7c4af9ef\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900289\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-10\",\n            \"createdAt\": \"2020-08-18T22:17:59.157Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059e\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                127,\n                -101,\n                109,\n                -123,\n                124,\n                -113,\n                106,\n                -96,\n                109,\n                -127,\n                125,\n                -95,\n                108,\n                -99,\n                114,\n                -98,\n                108,\n                -95,\n                110,\n                -126,\n                126,\n                -90,\n                112,\n                -103,\n                102,\n                -114,\n                115,\n                -106,\n                110,\n                -126,\n                124,\n                -94,\n                109,\n                -109,\n                103,\n                -99,\n                114,\n                -97,\n                109,\n                -127,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -108,\n                114,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -79,\n                94,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -96,\n                90,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -84,\n                103,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -104,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -96,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                125,\n                -126,\n                127,\n                -90,\n                119,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -87,\n                96,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -84,\n                105,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                106,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                125,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                122,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -113,\n                110,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                125,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -117,\n                126,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                123,\n                -125,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -90,\n                96,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                126,\n                -86,\n                101,\n                -127,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -121,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -116,\n                119,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                116,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -102,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -103,\n                125,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -84,\n                110,\n                -128,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -91,\n                101,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -121,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -99,\n                118,\n                -116,\n                102,\n                -121,\n                122,\n                -118,\n                121,\n                -127,\n                124,\n                -126,\n                114,\n                -101,\n                114,\n                -115,\n                110,\n                -112,\n                118,\n                -103,\n                110,\n                -127,\n                127,\n                -126,\n                125,\n                -126,\n                126,\n                -128,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -122,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -126,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                117,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                116,\n                -125,\n                125,\n                -125,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -101,\n                122,\n                -127,\n                125,\n                -113,\n                126,\n                -117,\n                119,\n                -127,\n                127,\n                -124,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -107,\n                105,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -122,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -121,\n                123,\n                -126,\n                126,\n                -124,\n                119,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                121,\n                -128,\n                127,\n                -125,\n                107,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -128,\n                127,\n                -106,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -102,\n                125,\n                -127,\n                125,\n                -127,\n                126,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -125,\n                125,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                106,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -112,\n                126,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                127,\n                -116,\n                124,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                126,\n                -36,\n                40,\n                -21,\n                22,\n                -10,\n                10,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                4,\n                -4,\n                3,\n                -4,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                0,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5f3c51ce801b65001564056f\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Ultramarine\",\n            \"slug\": \"wpm091-16\",\n            \"longSlug\": \"wpm091-16-ultramarine-main\",\n            \"originalFilename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900295\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 16,\n            \"versionNumber\": 0,\n            \"bpm\": 71,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Ultramarine\",\n                \"TRACK: Display Title\": \"Ultramarine\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n                \"TRACK: Number\": \"016\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"206\",\n                \"TRACK: BPM\": \"71\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums, Electronic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense, Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"a45cbb14fd4e039b9aaa51f25e470bc22b93f193\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900295\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"electronic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-16\",\n            \"createdAt\": \"2020-08-18T22:17:59.163Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:26\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Electronic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Electronic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 206000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"0e836544-6ee2-4650-8bbe-867764cd8c12"},{"name":"Tracks filtered by tags (from mongo) - AND search","id":"fc60a54a-d830-49bd-9c65-4ee2f84a654b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tracks?mongo=true&tags[$all]=Genre→Action&tags[$all]=Instrumentation→Synth","description":"<p>This will perform an AND search for any tracks containing both of the tags listed</p>\n","urlObject":{"path":["tracks"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc</p>\n","type":"text/plain"},"key":"mongo","value":"true"},{"disabled":true,"description":{"content":"<p>optional, int — paginate through by this count</p>\n","type":"text/plain"},"key":"$skip","value":"250"},{"disabled":true,"description":{"content":"<p>optional, int — count to return per page</p>\n","type":"text/plain"},"key":"$limit","value":"50"},{"description":{"content":"<p>tag filter</p>\n","type":"text/plain"},"key":"tags[$all]","value":"Genre→Action"},{"description":{"content":"<p>Tag filter</p>\n","type":"text/plain"},"key":"tags[$all]","value":"Instrumentation→Synth"}],"variable":[]}},"response":[{"id":"a160533d-7e7a-4fc6-b53c-b01741fad572","name":"Tracks within date range","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":{"raw":"{{hostAdmin}}/tracks?mongo=true&updatedAt[$gte]=2024-06-01&updatedAt[$lte]=2025-06-05T17:00:00.000Z","host":["{{hostAdmin}}"],"path":["tracks"],"query":[{"key":"mongo","value":"true","description":"Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc"},{"key":"$skip","value":"250","description":"optional, int — paginate through by this count","disabled":true},{"key":"$limit","value":"50","description":"optional, int — count to return per page","type":"text","disabled":true},{"key":"isMain","value":"true","description":"optional, boolean — filter to main tracks only","disabled":true},{"key":"parentId","value":"{{parentId}}","description":"optional, mongoId — tracks with a specific parent","type":"text","disabled":true},{"key":"releaseId","value":"{{releaseId}}","description":"optional, mongoId — tracks on a specific release","type":"text","disabled":true},{"key":"updatedAt[$gte]","value":"2024-06-01","description":"Example filter - updated after a specified date","type":"text"},{"key":"updatedAt[$lte]","value":"2025-06-05T17:00:00.000Z","description":"Example filter - created after date and time","type":"text"},{"key":"updatedAt[$lt]","value":"releaseId","description":"An array of fields to select for inclusion in track data","type":"text","disabled":true},{"key":"$select[]","value":"composerIds","description":"Continuing the selection array for multiple fields","type":"text","disabled":true},{"key":"$select[]","value":"composers","description":"Note, related ids (eg composerIds) must appear in selection to also populate related documents (eg composers)","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Aug 2025 14:53:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=3%2B69m0pV2yWBGbLfIp63hjSC%2F2ROrUQzGhyU1zlXEt45QUTC6nUZu2NgHhD51kDSUOu%2Ff1izLVW0klLRbLLNj%2Bu6SNpk7zfHGk2CQKJh3NhpJdECvw%3D%3D\"}]}"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"216d8-RQ+JxOW9x2DKhtxHZ1qfsGa6x/I\""},{"key":"Rndr-Id","value":"e9601f09-48bb-4a92"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Render-Origin-Server","value":"Render"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"CF-RAY","value":"96e90b79ead5ef25-LHR"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 160,\n    \"limit\": 10,\n    \"skip\": 0,\n    \"data\": [\n        {\n            \"_id\": \"64512567ecceb8e76c1553d8\",\n            \"slug\": \"vsb001-1v1\",\n            \"longSlug\": \"vsb001-1-bespoke-element-1-alternate-version-1\",\n            \"shortSlug\": \"vsb001-1\",\n            \"code\": \"\",\n            \"title\": \"Bespoke element 1\",\n            \"orgSlug\": \"demo\",\n            \"versionTitle\": \"Alternate version 1\",\n            \"description\": \"\",\n            \"isPublished\": false,\n            \"isMain\": false,\n            \"trackNumber\": 1,\n            \"versionNumber\": 1,\n            \"catalogueNumber\": \"\",\n            \"releaseCode\": \"vsb001\",\n            \"bpm\": 0,\n            \"key\": \"\",\n            \"state\": \"queued\",\n            \"iswc\": \"\",\n            \"isrc\": \"\",\n            \"tunecode\": \"\",\n            \"gemacode\": \"\",\n            \"lyrics\": \"\",\n            \"waveformData\": [],\n            \"releaseId\": \"645124e3ecceb8e76c1550b1\",\n            \"parentId\": \"64512500ecceb8e76c155134\",\n            \"tagIds\": [],\n            \"tags\": [\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Mood→Courageous\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Courageous\"\n                },\n                {\n                    \"id\": \"Instrumentation→Electric Organ\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Electric Organ\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                }\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\"\n            ],\n            \"composerIds\": [],\n            \"searchMetadata\": \"\",\n            \"aiState\": \"initial\",\n            \"deliveries\": {\n                \"soundmouse\": {\n                    \"metadata\": {\n                        \"state\": \"initial\",\n                        \"sent\": false\n                    },\n                    \"audio\": {\n                        \"state\": \"initial\",\n                        \"sent\": false,\n                        \"receiptConfirmed\": false\n                    },\n                    \"state\": \"initial\"\n                }\n            },\n            \"createdAt\": \"2023-05-02T14:59:51.009Z\",\n            \"updatedAt\": \"2024-11-26T12:19:32.827Z\",\n            \"__v\": 0,\n            \"siblingCount\": 1,\n            \"composers\": [],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {}\n        },\n        {\n            \"_id\": \"5f3c51ce801b650015640588\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -6,\n                5,\n                -32,\n                21,\n                -62,\n                48,\n                -77,\n                52,\n                -84,\n                66,\n                -97,\n                79,\n                -89,\n                69,\n                -94,\n                65,\n                -99,\n                87,\n                -99,\n                81,\n                -85,\n                61,\n                -94,\n                69,\n                -99,\n                84,\n                -82,\n                75,\n                -80,\n                82,\n                -83,\n                96,\n                -79,\n                84,\n                -79,\n                81,\n                -89,\n                84,\n                -101,\n                97,\n                -86,\n                87,\n                -85,\n                115,\n                -97,\n                94,\n                -77,\n                83,\n                -79,\n                93,\n                -87,\n                91,\n                -85,\n                85,\n                -71,\n                90,\n                -60,\n                97,\n                -68,\n                90,\n                -71,\n                97,\n                -53,\n                91,\n                -68,\n                91,\n                -57,\n                94,\n                -54,\n                90,\n                -60,\n                69,\n                -71,\n                86,\n                -71,\n                69,\n                -72,\n                71,\n                -91,\n                70,\n                -83,\n                76,\n                -83,\n                72,\n                -84,\n                78,\n                -77,\n                68,\n                -78,\n                75,\n                -88,\n                74,\n                -88,\n                69,\n                -98,\n                65,\n                -85,\n                68,\n                -87,\n                78,\n                -89,\n                84,\n                -85,\n                73,\n                -85,\n                87,\n                -97,\n                88,\n                -101,\n                72,\n                -84,\n                82,\n                -82,\n                86,\n                -85,\n                95,\n                -81,\n                95,\n                -74,\n                88,\n                -77,\n                95,\n                -75,\n                91,\n                -69,\n                112,\n                -81,\n                111,\n                -79,\n                82,\n                -74,\n                100,\n                -68,\n                109,\n                -76,\n                98,\n                -66,\n                95,\n                -89,\n                116,\n                -83,\n                112,\n                -80,\n                93,\n                -78,\n                80,\n                -97,\n                93,\n                -104,\n                89,\n                -99,\n                67,\n                -97,\n                66,\n                -96,\n                78,\n                -98,\n                71,\n                -89,\n                70,\n                -102,\n                78,\n                -93,\n                77,\n                -93,\n                98,\n                -100,\n                101,\n                -97,\n                97,\n                -87,\n                101,\n                -104,\n                118,\n                -81,\n                99,\n                -82,\n                106,\n                -81,\n                115,\n                -77,\n                107,\n                -80,\n                114,\n                -72,\n                102,\n                -105,\n                122,\n                -91,\n                124,\n                -80,\n                104,\n                -92,\n                98,\n                -87,\n                89,\n                -76,\n                96,\n                -77,\n                107,\n                -81,\n                104,\n                -73,\n                91,\n                -72,\n                82,\n                -85,\n                84,\n                -79,\n                79,\n                -87,\n                77,\n                -90,\n                74,\n                -101,\n                85,\n                -98,\n                82,\n                -100,\n                74,\n                -88,\n                73,\n                -105,\n                76,\n                -102,\n                71,\n                -112,\n                66,\n                -96,\n                93,\n                -98,\n                86,\n                -115,\n                85,\n                -102,\n                83,\n                -106,\n                97,\n                -95,\n                91,\n                -93,\n                97,\n                -104,\n                102,\n                -94,\n                103,\n                -102,\n                106,\n                -103,\n                105,\n                -84,\n                111,\n                -84,\n                112,\n                -87,\n                114,\n                -85,\n                102,\n                -73,\n                107,\n                -81,\n                100,\n                -93,\n                103,\n                -75,\n                125,\n                -82,\n                112,\n                -64,\n                117,\n                -64,\n                108,\n                -77,\n                97,\n                -73,\n                91,\n                -77,\n                98,\n                -86,\n                81,\n                -76,\n                75,\n                -83,\n                82,\n                -90,\n                73,\n                -91,\n                76,\n                -81,\n                62,\n                -79,\n                72,\n                -85,\n                58,\n                -72,\n                63,\n                -84,\n                84,\n                -85,\n                57,\n                -83,\n                68,\n                -89,\n                64,\n                -88,\n                59,\n                -92,\n                65,\n                -80,\n                77,\n                -86,\n                66,\n                -89,\n                69,\n                -81,\n                81,\n                -84,\n                81,\n                -85,\n                69,\n                -80,\n                75,\n                -81,\n                87,\n                -79,\n                79,\n                -77,\n                81,\n                -72,\n                86,\n                -86,\n                82,\n                -86,\n                91,\n                -75,\n                83,\n                -72,\n                87,\n                -73,\n                89,\n                -70,\n                93,\n                -65,\n                106,\n                -66,\n                94,\n                -63,\n                95,\n                -62,\n                91,\n                -64,\n                80,\n                -51,\n                78,\n                -53,\n                84,\n                -71,\n                74,\n                -65,\n                79,\n                -81,\n                75,\n                -69,\n                82,\n                -72,\n                71,\n                -78,\n                61,\n                -79,\n                62,\n                -72,\n                75,\n                -88,\n                60,\n                -95,\n                62,\n                -87,\n                58,\n                -89,\n                66,\n                -87,\n                55,\n                -86,\n                63,\n                -88,\n                66,\n                -97,\n                62,\n                -91,\n                66,\n                -95,\n                68,\n                -87,\n                74,\n                -86,\n                72,\n                -83,\n                82,\n                -85,\n                93,\n                -88,\n                78,\n                -71,\n                80,\n                -79,\n                84,\n                -77,\n                83,\n                -82,\n                86,\n                -66,\n                91,\n                -67,\n                78,\n                -68,\n                79,\n                -68,\n                93,\n                -67,\n                99,\n                -65,\n                90,\n                -63,\n                81,\n                -58,\n                88,\n                -69,\n                89,\n                -56,\n                84,\n                -57,\n                92,\n                -57,\n                82,\n                -73,\n                86,\n                -77,\n                72,\n                -84,\n                71,\n                -85,\n                73,\n                -89,\n                84,\n                -109,\n                72,\n                -97,\n                79,\n                -90,\n                75,\n                -86,\n                77,\n                -70,\n                82,\n                -86,\n                95,\n                -79,\n                92,\n                -86,\n                100,\n                -86,\n                108,\n                -79,\n                111,\n                -72,\n                103,\n                -71,\n                105,\n                -79,\n                118,\n                -78,\n                111,\n                -74,\n                99,\n                -78,\n                99,\n                -79,\n                104,\n                -84,\n                88,\n                -87,\n                98,\n                -78,\n                103,\n                -76,\n                95,\n                -87,\n                89,\n                -93,\n                84,\n                -88,\n                92,\n                -84,\n                91,\n                -89,\n                81,\n                -84,\n                88,\n                -81,\n                74,\n                -89,\n                67,\n                -84,\n                68,\n                -95,\n                86,\n                -85,\n                83,\n                -79,\n                82,\n                -107,\n                75,\n                -113,\n                94,\n                -112,\n                85,\n                -103,\n                83,\n                -112,\n                86,\n                -102,\n                81,\n                -98,\n                100,\n                -108,\n                88,\n                -98,\n                90,\n                -98,\n                107,\n                -86,\n                98,\n                -92,\n                105,\n                -96,\n                96,\n                -94,\n                115,\n                -104,\n                110,\n                -95,\n                110,\n                -94,\n                106,\n                -85,\n                119,\n                -86,\n                114,\n                -74,\n                112,\n                -78,\n                112,\n                -78,\n                115,\n                -73,\n                107,\n                -87,\n                109,\n                -80,\n                114,\n                -82,\n                104,\n                -89,\n                114,\n                -86,\n                92,\n                -78,\n                89,\n                -83,\n                88,\n                -94,\n                85,\n                -106,\n                81,\n                -114,\n                87,\n                -94,\n                73,\n                -100,\n                73,\n                -102,\n                82,\n                -106,\n                86,\n                -98,\n                75,\n                -94,\n                77,\n                -89,\n                70,\n                -91,\n                79,\n                -97,\n                76,\n                -82,\n                79,\n                -89,\n                71,\n                -84,\n                70,\n                -82,\n                62,\n                -78,\n                66,\n                -77,\n                67,\n                -53,\n                57,\n                -42,\n                44,\n                -32,\n                42,\n                -33,\n                28,\n                -19,\n                23,\n                -13,\n                18,\n                -9,\n                9,\n                -4,\n                6,\n                -1,\n                2,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7285\",\n                \"5ed7e02d2f47de0014963aa2\",\n                \"5e3c529994532a0014a05a4d\",\n                \"5ec65a19cd35e20014b8d187\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b19\",\n                \"5e3c529b94532a0014a05b4f\",\n                \"5f3c51ce801b65001564056c\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5dd3d83dae2b950014ef2355\",\n                \"5ed7e0202f47de00149638e2\",\n                \"5ec65a1acd35e20014b8d1cb\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5ec65a19cd35e20014b8d173\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5ec65a19cd35e20014b8d19b\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Dying Light\",\n            \"slug\": \"wpm090-20\",\n            \"longSlug\": \"wpm090-20-dying-light-30s\",\n            \"parentId\": \"5f3c51ce801b650015640581\",\n            \"originalFilename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900279\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 20,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Dying Light\",\n                \"TRACK: Display Title\": \"Dying Light\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n                \"TRACK: Number\": \"020\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"010\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"459d6b02c4bd13811d297656266d5c05d8db021b\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900279\",\n                \"_tags\": [\n                    \"synth\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium-fast\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-20\",\n            \"createdAt\": \"2020-08-18T22:10:22.880Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Emotional\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotional\"\n                },\n                {\n                    \"id\": \"Mood→Emotive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotive\"\n                },\n                {\n                    \"id\": \"Keywords→Tender\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Tender\"\n                },\n                {\n                    \"id\": \"Mood→Sensitive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sensitive\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Sentimental\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sentimental\"\n                },\n                {\n                    \"id\": \"Keywords→Nostalgic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Nostalgic\"\n                },\n                {\n                    \"id\": \"Mood→Touching\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Touching\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Sad\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sad\"\n                },\n                {\n                    \"id\": \"Keywords→melancholic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"melancholic\"\n                },\n                {\n                    \"id\": \"Mood→Sombre\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sombre\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Family\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Family\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Nature\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Nature\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -7,\n                3,\n                -22,\n                17,\n                -48,\n                34,\n                -65,\n                44,\n                -83,\n                74,\n                -94,\n                71,\n                -86,\n                94,\n                -80,\n                86,\n                -88,\n                99,\n                -92,\n                77,\n                -88,\n                79,\n                -91,\n                95,\n                -78,\n                109,\n                -76,\n                116,\n                -64,\n                102,\n                -70,\n                93,\n                -87,\n                89,\n                -82,\n                83,\n                -70,\n                79,\n                -105,\n                87,\n                -95,\n                79,\n                -99,\n                84,\n                -98,\n                81,\n                -103,\n                63,\n                -107,\n                98,\n                -113,\n                75,\n                -98,\n                73,\n                -89,\n                77,\n                -78,\n                80,\n                -81,\n                100,\n                -71,\n                112,\n                -66,\n                111,\n                -82,\n                98,\n                -89,\n                105,\n                -70,\n                118,\n                -95,\n                102,\n                -103,\n                100,\n                -86,\n                99,\n                -95,\n                100,\n                -87,\n                82,\n                -97,\n                74,\n                -105,\n                81,\n                -110,\n                72,\n                -107,\n                80,\n                -93,\n                77,\n                -91,\n                85,\n                -92,\n                88,\n                -110,\n                85,\n                -102,\n                78,\n                -91,\n                83,\n                -78,\n                87,\n                -95,\n                92,\n                -81,\n                79,\n                -70,\n                88,\n                -73,\n                84,\n                -72,\n                87,\n                -70,\n                97,\n                -73,\n                98,\n                -70,\n                81,\n                -81,\n                96,\n                -94,\n                94,\n                -87,\n                102,\n                -78,\n                91,\n                -88,\n                80,\n                -83,\n                107,\n                -93,\n                98,\n                -102,\n                93,\n                -88,\n                93,\n                -69,\n                94,\n                -76,\n                113,\n                -93,\n                126,\n                -71,\n                97,\n                -100,\n                107,\n                -110,\n                81,\n                -102,\n                89,\n                -92,\n                90,\n                -75,\n                102,\n                -81,\n                94,\n                -83,\n                88,\n                -68,\n                123,\n                -71,\n                112,\n                -101,\n                95,\n                -101,\n                87,\n                -95,\n                96,\n                -95,\n                113,\n                -102,\n                88,\n                -95,\n                91,\n                -105,\n                123,\n                -97,\n                104,\n                -101,\n                88,\n                -102,\n                75,\n                -94,\n                83,\n                -79,\n                97,\n                -98,\n                97,\n                -71,\n                89,\n                -79,\n                78,\n                -124,\n                76,\n                -111,\n                99,\n                -70,\n                93,\n                -65,\n                105,\n                -79,\n                95,\n                -83,\n                98,\n                -76,\n                116,\n                -97,\n                104,\n                -109,\n                93,\n                -109,\n                87,\n                -79,\n                91,\n                -91,\n                70,\n                -76,\n                99,\n                -78,\n                117,\n                -78,\n                121,\n                -95,\n                112,\n                -96,\n                90,\n                -104,\n                88,\n                -101,\n                82,\n                -87,\n                75,\n                -70,\n                82,\n                -64,\n                88,\n                -90,\n                61,\n                -87,\n                68,\n                -92,\n                87,\n                -90,\n                91,\n                -76,\n                100,\n                -83,\n                98,\n                -80,\n                107,\n                -81,\n                119,\n                -75,\n                95,\n                -80,\n                83,\n                -94,\n                84,\n                -81,\n                87,\n                -76,\n                85,\n                -70,\n                105,\n                -81,\n                111,\n                -77,\n                102,\n                -63,\n                105,\n                -85,\n                69,\n                -96,\n                75,\n                -100,\n                80,\n                -82,\n                81,\n                -84,\n                76,\n                -77,\n                67,\n                -84,\n                74,\n                -99,\n                79,\n                -104,\n                88,\n                -95,\n                83,\n                -83,\n                100,\n                -75,\n                105,\n                -65,\n                101,\n                -76,\n                84,\n                -82,\n                86,\n                -78,\n                91,\n                -76,\n                103,\n                -71,\n                98,\n                -76,\n                106,\n                -70,\n                99,\n                -73,\n                99,\n                -66,\n                84,\n                -68,\n                100,\n                -58,\n                98,\n                -76,\n                74,\n                -97,\n                74,\n                -90,\n                80,\n                -91,\n                86,\n                -92,\n                74,\n                -108,\n                73,\n                -102,\n                70,\n                -107,\n                71,\n                -100,\n                75,\n                -93,\n                79,\n                -74,\n                79,\n                -87,\n                94,\n                -80,\n                100,\n                -61,\n                118,\n                -59,\n                115,\n                -64,\n                110,\n                -71,\n                102,\n                -59,\n                78,\n                -61,\n                72,\n                -69,\n                73,\n                -80,\n                90,\n                -87,\n                87,\n                -106,\n                87,\n                -76,\n                86,\n                -66,\n                113,\n                -77,\n                102,\n                -90,\n                90,\n                -72,\n                96,\n                -86,\n                89,\n                -82,\n                77,\n                -85,\n                79,\n                -83,\n                79,\n                -69,\n                92,\n                -68,\n                92,\n                -80,\n                86,\n                -87,\n                102,\n                -90,\n                87,\n                -81,\n                87,\n                -72,\n                92,\n                -68,\n                89,\n                -70,\n                105,\n                -97,\n                103,\n                -88,\n                92,\n                -95,\n                83,\n                -77,\n                74,\n                -95,\n                86,\n                -79,\n                82,\n                -89,\n                79,\n                -97,\n                88,\n                -70,\n                96,\n                -72,\n                94,\n                -83,\n                92,\n                -92,\n                98,\n                -77,\n                98,\n                -81,\n                117,\n                -67,\n                108,\n                -78,\n                102,\n                -98,\n                93,\n                -91,\n                105,\n                -86,\n                82,\n                -97,\n                72,\n                -91,\n                68,\n                -103,\n                65,\n                -108,\n                75,\n                -84,\n                65,\n                -79,\n                87,\n                -74,\n                85,\n                -68,\n                94,\n                -69,\n                91,\n                -89,\n                91,\n                -71,\n                78,\n                -69,\n                95,\n                -75,\n                92,\n                -78,\n                84,\n                -89,\n                89,\n                -75,\n                88,\n                -63,\n                102,\n                -87,\n                79,\n                -95,\n                75,\n                -87,\n                87,\n                -90,\n                84,\n                -95,\n                96,\n                -85,\n                82,\n                -73,\n                76,\n                -79,\n                83,\n                -75,\n                79,\n                -85,\n                88,\n                -83,\n                91,\n                -60,\n                114,\n                -75,\n                101,\n                -75,\n                100,\n                -71,\n                99,\n                -69,\n                112,\n                -97,\n                113,\n                -89,\n                84,\n                -89,\n                85,\n                -99,\n                76,\n                -87,\n                95,\n                -89,\n                74,\n                -71,\n                82,\n                -81,\n                78,\n                -69,\n                78,\n                -97,\n                72,\n                -95,\n                78,\n                -85,\n                110,\n                -85,\n                109,\n                -81,\n                94,\n                -101,\n                93,\n                -108,\n                80,\n                -94,\n                90,\n                -89,\n                107,\n                -82,\n                123,\n                -68,\n                111,\n                -82,\n                104,\n                -86,\n                80,\n                -92,\n                90,\n                -100,\n                80,\n                -107,\n                68,\n                -87,\n                70,\n                -95,\n                90,\n                -79,\n                102,\n                -79,\n                85,\n                -100,\n                82,\n                -98,\n                95,\n                -94,\n                84,\n                -90,\n                77,\n                -78,\n                102,\n                -78,\n                108,\n                -79,\n                89,\n                -88,\n                75,\n                -90,\n                81,\n                -86,\n                111,\n                -74,\n                119,\n                -83,\n                117,\n                -88,\n                117,\n                -102,\n                99,\n                -85,\n                83,\n                -79,\n                69,\n                -73,\n                67,\n                -74,\n                72,\n                -61,\n                75,\n                -68,\n                58,\n                -58,\n                59,\n                -61,\n                49,\n                -57,\n                43,\n                -59,\n                43,\n                -48,\n                33,\n                -39,\n                26,\n                -27,\n                16,\n                -13,\n                15,\n                -9,\n                7,\n                -3,\n                4,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec6598ecd35e20014b8d0ef\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Contemplation\",\n            \"slug\": \"wpm090-13\",\n            \"longSlug\": \"wpm090-13-contemplation-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057f\",\n            \"originalFilename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900272\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 113,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Contemplation\",\n                \"TRACK: Display Title\": \"Contemplation\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"003\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"113\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"c5ea64ecb0180b68e0bf1f60ccedae2bd9ef972d\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900272\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-13\",\n            \"createdAt\": \"2020-08-18T22:10:22.909Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Mood→Edgy\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Edgy\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -4,\n                3,\n                -15,\n                17,\n                -36,\n                41,\n                -51,\n                70,\n                -64,\n                81,\n                -78,\n                90,\n                -88,\n                95,\n                -90,\n                105,\n                -95,\n                86,\n                -96,\n                101,\n                -93,\n                98,\n                -91,\n                86,\n                -80,\n                82,\n                -80,\n                100,\n                -73,\n                100,\n                -72,\n                91,\n                -75,\n                90,\n                -83,\n                94,\n                -89,\n                90,\n                -81,\n                110,\n                -87,\n                106,\n                -92,\n                103,\n                -94,\n                98,\n                -92,\n                97,\n                -82,\n                99,\n                -73,\n                84,\n                -76,\n                91,\n                -66,\n                87,\n                -69,\n                69,\n                -71,\n                75,\n                -62,\n                76,\n                -73,\n                81,\n                -87,\n                97,\n                -92,\n                104,\n                -90,\n                95,\n                -94,\n                98,\n                -87,\n                89,\n                -76,\n                85,\n                -67,\n                77,\n                -67,\n                86,\n                -67,\n                84,\n                -70,\n                84,\n                -68,\n                82,\n                -75,\n                80,\n                -68,\n                64,\n                -72,\n                69,\n                -83,\n                94,\n                -88,\n                85,\n                -75,\n                75,\n                -84,\n                73,\n                -94,\n                81,\n                -76,\n                82,\n                -74,\n                90,\n                -65,\n                98,\n                -61,\n                93,\n                -64,\n                95,\n                -69,\n                93,\n                -88,\n                93,\n                -83,\n                106,\n                -91,\n                104,\n                -80,\n                113,\n                -96,\n                122,\n                -87,\n                94,\n                -83,\n                90,\n                -71,\n                97,\n                -79,\n                96,\n                -63,\n                85,\n                -63,\n                87,\n                -77,\n                78,\n                -82,\n                99,\n                -83,\n                97,\n                -73,\n                97,\n                -97,\n                80,\n                -91,\n                81,\n                -79,\n                90,\n                -86,\n                83,\n                -89,\n                76,\n                -92,\n                79,\n                -87,\n                76,\n                -80,\n                72,\n                -59,\n                77,\n                -86,\n                93,\n                -93,\n                74,\n                -75,\n                81,\n                -78,\n                75,\n                -91,\n                77,\n                -81,\n                80,\n                -85,\n                105,\n                -82,\n                84,\n                -86,\n                82,\n                -76,\n                94,\n                -72,\n                93,\n                -66,\n                84,\n                -70,\n                104,\n                -67,\n                85,\n                -72,\n                78,\n                -80,\n                96,\n                -78,\n                86,\n                -84,\n                79,\n                -88,\n                100,\n                -89,\n                97,\n                -96,\n                88,\n                -91,\n                98,\n                -77,\n                97,\n                -79,\n                102,\n                -69,\n                104,\n                -71,\n                91,\n                -70,\n                91,\n                -79,\n                96,\n                -90,\n                96,\n                -79,\n                87,\n                -96,\n                97,\n                -94,\n                98,\n                -82,\n                99,\n                -103,\n                94,\n                -93,\n                98,\n                -90,\n                86,\n                -105,\n                80,\n                -89,\n                86,\n                -80,\n                70,\n                -62,\n                72,\n                -68,\n                75,\n                -95,\n                71,\n                -92,\n                78,\n                -96,\n                91,\n                -104,\n                93,\n                -87,\n                81,\n                -79,\n                68,\n                -74,\n                74,\n                -76,\n                76,\n                -73,\n                75,\n                -80,\n                72,\n                -63,\n                84,\n                -68,\n                85,\n                -71,\n                84,\n                -68,\n                83,\n                -77,\n                79,\n                -79,\n                70,\n                -83,\n                84,\n                -84,\n                90,\n                -76,\n                76,\n                -75,\n                83,\n                -73,\n                82,\n                -66,\n                80,\n                -67,\n                102,\n                -77,\n                95,\n                -67,\n                107,\n                -75,\n                110,\n                -72,\n                99,\n                -80,\n                112,\n                -91,\n                96,\n                -100,\n                89,\n                -89,\n                93,\n                -98,\n                89,\n                -88,\n                79,\n                -73,\n                99,\n                -75,\n                88,\n                -66,\n                80,\n                -66,\n                84,\n                -74,\n                76,\n                -73,\n                86,\n                -96,\n                80,\n                -81,\n                77,\n                -93,\n                88,\n                -99,\n                76,\n                -106,\n                87,\n                -88,\n                89,\n                -82,\n                88,\n                -77,\n                91,\n                -78,\n                73,\n                -79,\n                83,\n                -77,\n                75,\n                -83,\n                83,\n                -74,\n                88,\n                -79,\n                90,\n                -79,\n                75,\n                -92,\n                74,\n                -86,\n                81,\n                -89,\n                83,\n                -83,\n                71,\n                -88,\n                74,\n                -79,\n                74,\n                -88,\n                87,\n                -86,\n                76,\n                -82,\n                80,\n                -71,\n                82,\n                -86,\n                88,\n                -84,\n                96,\n                -79,\n                83,\n                -73,\n                78,\n                -76,\n                74,\n                -84,\n                75,\n                -94,\n                76,\n                -76,\n                70,\n                -72,\n                85,\n                -82,\n                92,\n                -72,\n                91,\n                -88,\n                90,\n                -75,\n                70,\n                -86,\n                88,\n                -82,\n                87,\n                -95,\n                92,\n                -85,\n                95,\n                -94,\n                88,\n                -96,\n                90,\n                -95,\n                102,\n                -80,\n                88,\n                -73,\n                85,\n                -75,\n                76,\n                -76,\n                72,\n                -75,\n                83,\n                -75,\n                72,\n                -78,\n                81,\n                -81,\n                77,\n                -81,\n                87,\n                -82,\n                90,\n                -96,\n                91,\n                -94,\n                91,\n                -90,\n                85,\n                -81,\n                89,\n                -74,\n                97,\n                -75,\n                85,\n                -86,\n                91,\n                -71,\n                82,\n                -69,\n                75,\n                -84,\n                83,\n                -100,\n                76,\n                -73,\n                76,\n                -81,\n                96,\n                -77,\n                86,\n                -77,\n                101,\n                -80,\n                96,\n                -80,\n                85,\n                -75,\n                83,\n                -83,\n                77,\n                -70,\n                68,\n                -71,\n                66,\n                -66,\n                71,\n                -82,\n                70,\n                -80,\n                73,\n                -91,\n                62,\n                -92,\n                74,\n                -77,\n                85,\n                -85,\n                90,\n                -80,\n                82,\n                -77,\n                78,\n                -81,\n                69,\n                -73,\n                100,\n                -66,\n                90,\n                -79,\n                69,\n                -78,\n                72,\n                -70,\n                78,\n                -65,\n                67,\n                -70,\n                73,\n                -70,\n                79,\n                -76,\n                77,\n                -85,\n                82,\n                -84,\n                78,\n                -70,\n                91,\n                -87,\n                96,\n                -70,\n                70,\n                -69,\n                64,\n                -84,\n                75,\n                -84,\n                82,\n                -69,\n                66,\n                -69,\n                68,\n                -77,\n                77,\n                -72,\n                73,\n                -80,\n                72,\n                -80,\n                88,\n                -81,\n                90,\n                -96,\n                81,\n                -68,\n                73,\n                -67,\n                98,\n                -67,\n                79,\n                -69,\n                84,\n                -70,\n                85,\n                -76,\n                81,\n                -74,\n                113,\n                -81,\n                89,\n                -69,\n                88,\n                -76,\n                98,\n                -88,\n                97,\n                -78,\n                90,\n                -76,\n                95,\n                -82,\n                67,\n                -69,\n                65,\n                -69,\n                82,\n                -69,\n                99,\n                -76,\n                97,\n                -64,\n                80,\n                -74,\n                77,\n                -72,\n                73,\n                -70,\n                79,\n                -80,\n                100,\n                -78,\n                99,\n                -75,\n                86,\n                -67,\n                76,\n                -68,\n                75,\n                -58,\n                70,\n                -63,\n                69,\n                -55,\n                62,\n                -57,\n                52,\n                -38,\n                43,\n                -37,\n                41,\n                -24,\n                32,\n                -22,\n                28,\n                -17,\n                21,\n                -11,\n                17,\n                -8,\n                10,\n                -4,\n                5,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed7e01f2f47de00149638c7\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Aurora\",\n            \"slug\": \"wpm090-18\",\n            \"longSlug\": \"wpm090-18-aurora-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057d\",\n            \"originalFilename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900277\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 18,\n            \"versionNumber\": 0,\n            \"bpm\": 110,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Aurora\",\n                \"TRACK: Display Title\": \"Aurora\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n                \"TRACK: Number\": \"018\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"008\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"110\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"507f9335ac49763a86f27b653a0902cae380ccdb\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900277\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-18\",\n            \"createdAt\": \"2020-08-18T22:10:22.924Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Corporate\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Corporate\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b650015640599\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -120,\n                125,\n                -121,\n                127,\n                -68,\n                93,\n                -61,\n                59,\n                -51,\n                42,\n                -117,\n                125,\n                -106,\n                126,\n                -76,\n                84,\n                -62,\n                56,\n                -52,\n                58,\n                -60,\n                63,\n                -113,\n                127,\n                -97,\n                122,\n                -82,\n                71,\n                -107,\n                126,\n                -113,\n                123,\n                -99,\n                123,\n                -117,\n                110,\n                -119,\n                107,\n                -73,\n                69,\n                -59,\n                54,\n                -76,\n                72,\n                -128,\n                114,\n                -122,\n                124,\n                -98,\n                93,\n                -82,\n                74,\n                -52,\n                46,\n                -50,\n                68,\n                -117,\n                127,\n                -111,\n                121,\n                -60,\n                82,\n                -57,\n                61,\n                -55,\n                59,\n                -111,\n                125,\n                -116,\n                111,\n                -108,\n                108,\n                -101,\n                123,\n                -123,\n                123,\n                -106,\n                84,\n                -123,\n                123,\n                -126,\n                120,\n                -75,\n                91,\n                -60,\n                63,\n                -103,\n                93,\n                -110,\n                121,\n                -125,\n                119,\n                -102,\n                127,\n                -94,\n                88,\n                -116,\n                105,\n                -94,\n                127,\n                -121,\n                126,\n                -126,\n                119,\n                -102,\n                86,\n                -81,\n                67,\n                -73,\n                89,\n                -86,\n                80,\n                -116,\n                126,\n                -104,\n                123,\n                -104,\n                111,\n                -121,\n                122,\n                -90,\n                127,\n                -71,\n                91,\n                -110,\n                125,\n                -116,\n                125,\n                -106,\n                111,\n                -85,\n                83,\n                -113,\n                99,\n                -119,\n                123,\n                -112,\n                123,\n                -106,\n                91,\n                -93,\n                116,\n                -111,\n                125,\n                -97,\n                84,\n                -124,\n                123,\n                -110,\n                124,\n                -76,\n                94,\n                -74,\n                80,\n                -83,\n                74,\n                -76,\n                89,\n                -123,\n                126,\n                -115,\n                126,\n                -119,\n                127,\n                -120,\n                125,\n                -93,\n                109,\n                -114,\n                124,\n                -108,\n                124,\n                -87,\n                73,\n                -110,\n                71,\n                -108,\n                90,\n                -83,\n                94,\n                -116,\n                121,\n                -124,\n                127,\n                -106,\n                88,\n                -108,\n                124,\n                -102,\n                127,\n                -87,\n                104,\n                -110,\n                127,\n                -117,\n                124,\n                -69,\n                83,\n                -73,\n                107,\n                -95,\n                90,\n                -109,\n                117,\n                -106,\n                126,\n                -91,\n                99,\n                -113,\n                127,\n                -108,\n                127,\n                -80,\n                84,\n                -121,\n                125,\n                -116,\n                125,\n                -78,\n                73,\n                -90,\n                96,\n                -115,\n                97,\n                -117,\n                117,\n                -118,\n                111,\n                -120,\n                123,\n                -122,\n                123,\n                -121,\n                126,\n                -86,\n                75,\n                -111,\n                127,\n                -114,\n                126,\n                -85,\n                79,\n                -92,\n                94,\n                -87,\n                88,\n                -92,\n                87,\n                -128,\n                122,\n                -108,\n                127,\n                -97,\n                116,\n                -116,\n                123,\n                -103,\n                127,\n                -112,\n                127,\n                -105,\n                119,\n                -95,\n                90,\n                -94,\n                70,\n                -84,\n                73,\n                -112,\n                85,\n                -128,\n                127,\n                -127,\n                126,\n                -111,\n                124,\n                -114,\n                126,\n                -117,\n                110,\n                -111,\n                115,\n                -125,\n                125,\n                -114,\n                110,\n                -102,\n                127,\n                -117,\n                126,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -96,\n                124,\n                -124,\n                126,\n                -91,\n                119,\n                -108,\n                101,\n                -111,\n                127,\n                -115,\n                124,\n                -124,\n                126,\n                -117,\n                127,\n                -90,\n                109,\n                -78,\n                89,\n                -128,\n                127,\n                -118,\n                109,\n                -109,\n                125,\n                -103,\n                103,\n                -124,\n                97,\n                -102,\n                126,\n                -127,\n                127,\n                -118,\n                127,\n                -112,\n                125,\n                -91,\n                106,\n                -88,\n                95,\n                -125,\n                127,\n                -118,\n                125,\n                -97,\n                126,\n                -123,\n                127,\n                -75,\n                86,\n                -101,\n                72,\n                -124,\n                127,\n                -124,\n                104,\n                -119,\n                127,\n                -116,\n                125,\n                -121,\n                126,\n                -126,\n                127,\n                -124,\n                125,\n                -101,\n                119,\n                -121,\n                121,\n                -100,\n                127,\n                -93,\n                87,\n                -118,\n                117,\n                -117,\n                127,\n                -98,\n                111,\n                -94,\n                97,\n                -90,\n                91,\n                -112,\n                99,\n                -113,\n                127,\n                -114,\n                109,\n                -125,\n                112,\n                -103,\n                127,\n                -86,\n                83,\n                -109,\n                127,\n                -110,\n                124,\n                -93,\n                103,\n                -86,\n                96,\n                -105,\n                101,\n                -101,\n                100,\n                -125,\n                125,\n                -111,\n                126,\n                -99,\n                118,\n                -123,\n                122,\n                -121,\n                121,\n                -119,\n                123,\n                -123,\n                122,\n                -110,\n                127,\n                -100,\n                102,\n                -99,\n                89,\n                -91,\n                106,\n                -123,\n                125,\n                -118,\n                126,\n                -91,\n                109,\n                -121,\n                126,\n                -125,\n                125,\n                -66,\n                88,\n                -105,\n                126,\n                -106,\n                127,\n                -86,\n                73,\n                -103,\n                99,\n                -100,\n                94,\n                -123,\n                127,\n                -127,\n                125,\n                -102,\n                125,\n                -110,\n                123,\n                -103,\n                126,\n                -108,\n                102,\n                -124,\n                124,\n                -122,\n                127,\n                -97,\n                93,\n                -108,\n                119,\n                -101,\n                116,\n                -98,\n                91,\n                -122,\n                122,\n                -123,\n                125,\n                -99,\n                114,\n                -112,\n                126,\n                -100,\n                127,\n                -124,\n                125,\n                -123,\n                127,\n                -95,\n                105,\n                -117,\n                106,\n                -88,\n                101,\n                -106,\n                113,\n                -126,\n                126,\n                -111,\n                126,\n                -113,\n                102,\n                -120,\n                110,\n                -114,\n                117,\n                -97,\n                96,\n                -115,\n                127,\n                -121,\n                123,\n                -98,\n                97,\n                -90,\n                103,\n                -104,\n                98,\n                -122,\n                127,\n                -119,\n                124,\n                -100,\n                114,\n                -117,\n                119,\n                -115,\n                127,\n                -104,\n                122,\n                -124,\n                124,\n                -124,\n                126,\n                -100,\n                85,\n                -109,\n                99,\n                -115,\n                120,\n                -126,\n                127,\n                -128,\n                127,\n                -110,\n                122,\n                -125,\n                127,\n                -103,\n                123,\n                -93,\n                104,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                119,\n                -126,\n                123,\n                -106,\n                120,\n                -104,\n                104,\n                -124,\n                123,\n                -125,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -99,\n                97,\n                -97,\n                90,\n                -117,\n                127,\n                -115,\n                104,\n                -127,\n                127,\n                -126,\n                125,\n                -100,\n                108,\n                -65,\n                76,\n                -50,\n                49,\n                -35,\n                43,\n                -26,\n                19,\n                -12,\n                14,\n                -9,\n                11,\n                -6,\n                7,\n                -4,\n                3,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"An Invasion\",\n            \"slug\": \"wpm091-1\",\n            \"longSlug\": \"wpm091-1-an-invasion-main\",\n            \"originalFilename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900280\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 1,\n            \"versionNumber\": 0,\n            \"bpm\": 100,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"An Invasion\",\n                \"TRACK: Display Title\": \"An Invasion\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n                \"TRACK: Number\": \"001\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"132\",\n                \"TRACK: BPM\": \"100\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"98fc8e98508c2356dc7a5f46d607c710154b6151\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900280\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-1\",\n            \"createdAt\": \"2020-08-18T22:17:59.125Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:12\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 132000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                0,\n                0,\n                0,\n                0,\n                -8,\n                9,\n                -8,\n                8,\n                -6,\n                6,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -2,\n                1,\n                -4,\n                4,\n                -6,\n                5,\n                -11,\n                10,\n                -13,\n                11,\n                -8,\n                9,\n                -6,\n                7,\n                -5,\n                6,\n                -5,\n                5,\n                -5,\n                6,\n                -5,\n                6,\n                -7,\n                7,\n                -7,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -4,\n                6,\n                -5,\n                4,\n                -6,\n                6,\n                -6,\n                7,\n                -7,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                5,\n                -5,\n                4,\n                -10,\n                10,\n                -104,\n                126,\n                -93,\n                90,\n                -112,\n                109,\n                -102,\n                90,\n                -51,\n                45,\n                -25,\n                25,\n                -17,\n                16,\n                -9,\n                9,\n                -16,\n                15,\n                -76,\n                101,\n                -116,\n                125,\n                -120,\n                127,\n                -90,\n                92,\n                -65,\n                72,\n                -47,\n                47,\n                -18,\n                18,\n                -11,\n                9,\n                -6,\n                6,\n                -7,\n                7,\n                -102,\n                126,\n                -80,\n                86,\n                -110,\n                125,\n                -114,\n                110,\n                -62,\n                77,\n                -43,\n                44,\n                -21,\n                19,\n                -22,\n                19,\n                -20,\n                18,\n                -38,\n                36,\n                -89,\n                94,\n                -93,\n                116,\n                -106,\n                127,\n                -84,\n                98,\n                -58,\n                58,\n                -38,\n                41,\n                -28,\n                30,\n                -21,\n                22,\n                -19,\n                25,\n                -24,\n                24,\n                -16,\n                19,\n                -19,\n                18,\n                -20,\n                21,\n                -22,\n                22,\n                -24,\n                22,\n                -17,\n                17,\n                -20,\n                21,\n                -19,\n                19,\n                -16,\n                16,\n                -20,\n                19,\n                -19,\n                20,\n                -19,\n                21,\n                -24,\n                22,\n                -17,\n                16,\n                -16,\n                15,\n                -21,\n                15,\n                -20,\n                20,\n                -17,\n                17,\n                -17,\n                21,\n                -19,\n                18,\n                -18,\n                17,\n                -20,\n                18,\n                -19,\n                17,\n                -19,\n                23,\n                -27,\n                23,\n                -20,\n                20,\n                -18,\n                19,\n                -24,\n                17,\n                -23,\n                22,\n                -16,\n                17,\n                -23,\n                23,\n                -24,\n                26,\n                -23,\n                26,\n                -25,\n                24,\n                -24,\n                20,\n                -21,\n                22,\n                -20,\n                18,\n                -23,\n                25,\n                -16,\n                18,\n                -23,\n                20,\n                -20,\n                20,\n                -24,\n                21,\n                -24,\n                23,\n                -23,\n                26,\n                -20,\n                22,\n                -19,\n                19,\n                -19,\n                18,\n                -21,\n                21,\n                -21,\n                21,\n                -23,\n                25,\n                -17,\n                17,\n                -17,\n                17,\n                -22,\n                21,\n                -24,\n                22,\n                -21,\n                20,\n                -18,\n                19,\n                -20,\n                20,\n                -17,\n                19,\n                -21,\n                24,\n                -20,\n                20,\n                -24,\n                25,\n                -24,\n                26,\n                -22,\n                21,\n                -19,\n                19,\n                -17,\n                21,\n                -23,\n                19,\n                -23,\n                27,\n                -18,\n                17,\n                -21,\n                24,\n                -21,\n                20,\n                -19,\n                18,\n                -24,\n                19,\n                -23,\n                20,\n                -27,\n                28,\n                -31,\n                33,\n                -37,\n                34,\n                -59,\n                43,\n                -58,\n                54,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -115,\n                118,\n                -109,\n                120,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                124,\n                -128,\n                126,\n                -121,\n                127,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                127,\n                -124,\n                127,\n                -122,\n                125,\n                -128,\n                126,\n                -127,\n                125,\n                -125,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -124,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -124,\n                118,\n                -124,\n                123,\n                -127,\n                126,\n                -126,\n                110,\n                -109,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -120,\n                119,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -126,\n                127,\n                -126,\n                111,\n                -128,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -120,\n                126,\n                -122,\n                120,\n                -123,\n                123,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -116,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                119,\n                -120,\n                127,\n                -118,\n                119,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                124,\n                -105,\n                119,\n                -128,\n                127,\n                -125,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -126,\n                127,\n                -124,\n                125,\n                -124,\n                125,\n                -116,\n                124,\n                -124,\n                127,\n                -127,\n                124,\n                -127,\n                127,\n                -122,\n                115,\n                -96,\n                103,\n                -122,\n                123,\n                -104,\n                95,\n                -124,\n                119,\n                -93,\n                79,\n                -83,\n                108,\n                -121,\n                104,\n                -93,\n                98,\n                -106,\n                97,\n                -60,\n                65,\n                -89,\n                86,\n                -56,\n                55,\n                -59,\n                52,\n                -68,\n                73,\n                -69,\n                56,\n                -81,\n                81,\n                -88,\n                87,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                123,\n                -119,\n                127,\n                -121,\n                126,\n                -127,\n                125,\n                -127,\n                127,\n                -119,\n                126,\n                -115,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -126,\n                123,\n                -122,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -123,\n                125,\n                -126,\n                124,\n                -126,\n                124,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                122,\n                -125,\n                127,\n                -119,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                124,\n                -127,\n                116,\n                -123,\n                125,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                118,\n                -127,\n                126,\n                -112,\n                126,\n                -125,\n                127,\n                -126,\n                119,\n                -119,\n                121,\n                -122,\n                120,\n                -127,\n                112,\n                -128,\n                127,\n                -126,\n                127,\n                -114,\n                125,\n                -117,\n                124,\n                -104,\n                118,\n                -126,\n                127,\n                -125,\n                111,\n                -117,\n                109,\n                -109,\n                104,\n                -89,\n                102,\n                -128,\n                126,\n                -121,\n                122,\n                -128,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -96,\n                104,\n                -81,\n                72,\n                -39,\n                58,\n                -21,\n                23,\n                -18,\n                12,\n                -4,\n                5,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640570\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"A Violent End\",\n            \"slug\": \"wpm091-13\",\n            \"longSlug\": \"wpm091-13-a-violent-end-main\",\n            \"originalFilename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900292\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 80,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"A Violent End\",\n                \"TRACK: Display Title\": \"A Violent End\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"80\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"99a7dd89e954e163eee49516525a559c75da3904\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900292\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-13\",\n            \"createdAt\": \"2020-08-18T22:17:59.132Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Halloween\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Halloween\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059b\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                116,\n                -113,\n                103,\n                -126,\n                126,\n                -122,\n                123,\n                -120,\n                126,\n                -94,\n                98,\n                -114,\n                123,\n                -115,\n                110,\n                -123,\n                127,\n                -126,\n                127,\n                -105,\n                98,\n                -117,\n                105,\n                -127,\n                124,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                116,\n                -123,\n                122,\n                -128,\n                127,\n                -122,\n                125,\n                -126,\n                126,\n                -107,\n                114,\n                -103,\n                111,\n                -127,\n                125,\n                -120,\n                126,\n                -120,\n                125,\n                -101,\n                112,\n                -119,\n                118,\n                -118,\n                107,\n                -119,\n                126,\n                -127,\n                127,\n                -96,\n                91,\n                -119,\n                123,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                125,\n                -123,\n                117,\n                -126,\n                127,\n                -107,\n                92,\n                -126,\n                123,\n                -126,\n                126,\n                -102,\n                102,\n                -126,\n                126,\n                -106,\n                110,\n                -127,\n                126,\n                -118,\n                124,\n                -105,\n                110,\n                -119,\n                122,\n                -122,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -101,\n                97,\n                -126,\n                124,\n                -128,\n                124,\n                -116,\n                97,\n                -127,\n                125,\n                -127,\n                120,\n                -126,\n                127,\n                -125,\n                124,\n                -91,\n                114,\n                -128,\n                127,\n                -128,\n                121,\n                -126,\n                126,\n                -126,\n                127,\n                -123,\n                120,\n                -127,\n                126,\n                -115,\n                126,\n                -118,\n                112,\n                -128,\n                126,\n                -125,\n                126,\n                -106,\n                126,\n                -119,\n                125,\n                -125,\n                126,\n                -128,\n                126,\n                -126,\n                124,\n                -127,\n                127,\n                -118,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -125,\n                125,\n                -121,\n                123,\n                -124,\n                114,\n                -126,\n                120,\n                -127,\n                127,\n                -128,\n                126,\n                -115,\n                126,\n                -126,\n                118,\n                -126,\n                124,\n                -124,\n                127,\n                -125,\n                127,\n                -127,\n                121,\n                -127,\n                120,\n                -125,\n                124,\n                -127,\n                125,\n                -123,\n                126,\n                -122,\n                126,\n                -128,\n                124,\n                -120,\n                123,\n                -127,\n                127,\n                -127,\n                127,\n                -117,\n                116,\n                -127,\n                125,\n                -126,\n                118,\n                -127,\n                126,\n                -125,\n                125,\n                -112,\n                124,\n                -121,\n                115,\n                -125,\n                124,\n                -117,\n                126,\n                -126,\n                127,\n                -110,\n                108,\n                -127,\n                126,\n                -125,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                121,\n                -126,\n                120,\n                -125,\n                126,\n                -109,\n                125,\n                -128,\n                127,\n                -100,\n                101,\n                -79,\n                85,\n                -71,\n                76,\n                -40,\n                42,\n                -89,\n                83,\n                -28,\n                27,\n                -33,\n                41,\n                -66,\n                64,\n                -54,\n                76,\n                -67,\n                68,\n                -29,\n                28,\n                -36,\n                28,\n                -91,\n                91,\n                -54,\n                61,\n                -74,\n                64,\n                -20,\n                19,\n                -56,\n                55,\n                -61,\n                66,\n                -121,\n                126,\n                -88,\n                87,\n                -96,\n                117,\n                -84,\n                88,\n                -103,\n                98,\n                -100,\n                105,\n                -113,\n                105,\n                -78,\n                63,\n                -100,\n                114,\n                -86,\n                103,\n                -90,\n                127,\n                -119,\n                107,\n                -61,\n                57,\n                -103,\n                119,\n                -109,\n                119,\n                -89,\n                103,\n                -93,\n                96,\n                -63,\n                85,\n                -90,\n                115,\n                -100,\n                124,\n                -124,\n                127,\n                -104,\n                120,\n                -93,\n                94,\n                -109,\n                124,\n                -118,\n                125,\n                -102,\n                97,\n                -95,\n                104,\n                -91,\n                97,\n                -96,\n                118,\n                -112,\n                124,\n                -106,\n                126,\n                -124,\n                125,\n                -93,\n                86,\n                -106,\n                123,\n                -80,\n                90,\n                -105,\n                113,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -120,\n                116,\n                -126,\n                127,\n                -126,\n                123,\n                -107,\n                125,\n                -107,\n                123,\n                -126,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                125,\n                -123,\n                125,\n                -120,\n                97,\n                -127,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                123,\n                -113,\n                125,\n                -125,\n                119,\n                -128,\n                125,\n                -126,\n                125,\n                -122,\n                127,\n                -116,\n                119,\n                -125,\n                125,\n                -124,\n                127,\n                -126,\n                127,\n                -123,\n                126,\n                -122,\n                119,\n                -121,\n                127,\n                -124,\n                126,\n                -127,\n                122,\n                -110,\n                107,\n                -118,\n                116,\n                -120,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -125,\n                111,\n                -124,\n                127,\n                -127,\n                121,\n                -123,\n                127,\n                -128,\n                127,\n                -106,\n                90,\n                -128,\n                119,\n                -112,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -116,\n                116,\n                -122,\n                125,\n                -127,\n                122,\n                -127,\n                127,\n                -128,\n                122,\n                -120,\n                104,\n                -125,\n                125,\n                -127,\n                120,\n                -127,\n                125,\n                -126,\n                114,\n                -126,\n                123,\n                -125,\n                122,\n                -111,\n                127,\n                -126,\n                126,\n                -123,\n                125,\n                -111,\n                122,\n                -124,\n                120,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -123,\n                107,\n                -127,\n                126,\n                -125,\n                127,\n                -124,\n                124,\n                -123,\n                124,\n                -124,\n                97,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                122,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -128,\n                117,\n                -123,\n                127,\n                -117,\n                117,\n                -114,\n                123,\n                -127,\n                127,\n                -128,\n                121,\n                -113,\n                120,\n                -124,\n                117,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -114,\n                114,\n                -124,\n                123,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -110,\n                95,\n                -123,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -124,\n                126,\n                -120,\n                125,\n                -126,\n                125,\n                -123,\n                127,\n                -124,\n                124,\n                -124,\n                112,\n                -108,\n                124,\n                -126,\n                123,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -100,\n                98,\n                -91,\n                88,\n                -60,\n                62,\n                -44,\n                44,\n                -29,\n                24,\n                -19,\n                18,\n                -11,\n                11,\n                -9,\n                11,\n                -5,\n                5,\n                -3,\n                4,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Gathering Hoard\",\n            \"slug\": \"wpm091-25\",\n            \"longSlug\": \"wpm091-25-the-gathering-hoard-main\",\n            \"originalFilename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900304\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 25,\n            \"versionNumber\": 0,\n            \"bpm\": 85,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Gathering Hoard\",\n                \"TRACK: Display Title\": \"The Gathering Hoard\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n                \"TRACK: Number\": \"025\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"179\",\n                \"TRACK: BPM\": \"85\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"46addaa4a408f1e0e121690aa093e48dac864e40\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900304\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-25\",\n            \"createdAt\": \"2020-08-18T22:17:59.138Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:59\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 179000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -127,\n                127,\n                -106,\n                120,\n                -114,\n                88,\n                -79,\n                103,\n                -78,\n                85,\n                -115,\n                127,\n                -126,\n                125,\n                -111,\n                124,\n                -95,\n                107,\n                -82,\n                103,\n                -102,\n                102,\n                -127,\n                127,\n                -115,\n                126,\n                -97,\n                94,\n                -81,\n                93,\n                -93,\n                94,\n                -98,\n                110,\n                -124,\n                127,\n                -113,\n                117,\n                -100,\n                121,\n                -81,\n                90,\n                -100,\n                125,\n                -126,\n                125,\n                -125,\n                124,\n                -111,\n                108,\n                -75,\n                105,\n                -76,\n                76,\n                -106,\n                102,\n                -127,\n                126,\n                -104,\n                122,\n                -106,\n                102,\n                -96,\n                101,\n                -90,\n                96,\n                -125,\n                127,\n                -127,\n                125,\n                -99,\n                103,\n                -91,\n                96,\n                -64,\n                82,\n                -88,\n                106,\n                -127,\n                127,\n                -116,\n                117,\n                -113,\n                104,\n                -87,\n                94,\n                -102,\n                125,\n                -125,\n                123,\n                -126,\n                114,\n                -114,\n                117,\n                -121,\n                105,\n                -86,\n                90,\n                -99,\n                108,\n                -126,\n                127,\n                -119,\n                119,\n                -114,\n                126,\n                -111,\n                93,\n                -114,\n                125,\n                -125,\n                127,\n                -124,\n                110,\n                -120,\n                127,\n                -123,\n                108,\n                -93,\n                112,\n                -88,\n                100,\n                -128,\n                127,\n                -121,\n                118,\n                -127,\n                121,\n                -107,\n                116,\n                -103,\n                124,\n                -127,\n                126,\n                -122,\n                121,\n                -125,\n                108,\n                -113,\n                108,\n                -100,\n                120,\n                -99,\n                99,\n                -125,\n                124,\n                -127,\n                125,\n                -115,\n                125,\n                -112,\n                118,\n                -115,\n                124,\n                -111,\n                117,\n                -126,\n                124,\n                -126,\n                122,\n                -120,\n                107,\n                -99,\n                115,\n                -109,\n                100,\n                -119,\n                119,\n                -127,\n                127,\n                -110,\n                123,\n                -120,\n                123,\n                -103,\n                124,\n                -122,\n                122,\n                -126,\n                127,\n                -123,\n                125,\n                -116,\n                109,\n                -105,\n                119,\n                -113,\n                108,\n                -118,\n                118,\n                -127,\n                125,\n                -125,\n                121,\n                -120,\n                124,\n                -105,\n                122,\n                -113,\n                115,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -99,\n                121,\n                -111,\n                97,\n                -115,\n                120,\n                -128,\n                127,\n                -121,\n                124,\n                -126,\n                127,\n                -118,\n                118,\n                -123,\n                115,\n                -121,\n                127,\n                -125,\n                127,\n                -127,\n                126,\n                -117,\n                112,\n                -108,\n                96,\n                -118,\n                115,\n                -128,\n                127,\n                -118,\n                126,\n                -124,\n                124,\n                -96,\n                90,\n                -114,\n                123,\n                -127,\n                126,\n                -124,\n                117,\n                -112,\n                126,\n                -121,\n                106,\n                -112,\n                119,\n                -114,\n                112,\n                -123,\n                125,\n                -123,\n                125,\n                -124,\n                126,\n                -103,\n                108,\n                -117,\n                125,\n                -127,\n                127,\n                -126,\n                125,\n                -111,\n                113,\n                -101,\n                93,\n                -92,\n                96,\n                -83,\n                96,\n                -78,\n                76,\n                -100,\n                109,\n                -101,\n                72,\n                -57,\n                61,\n                -97,\n                60,\n                -60,\n                62,\n                -126,\n                127,\n                -105,\n                105,\n                -102,\n                94,\n                -69,\n                89,\n                -73,\n                68,\n                -61,\n                80,\n                -73,\n                100,\n                -66,\n                54,\n                -56,\n                72,\n                -91,\n                79,\n                -92,\n                86,\n                -126,\n                127,\n                -113,\n                93,\n                -102,\n                109,\n                -81,\n                95,\n                -68,\n                96,\n                -87,\n                76,\n                -92,\n                76,\n                -80,\n                80,\n                -62,\n                57,\n                -110,\n                71,\n                -78,\n                81,\n                -126,\n                127,\n                -86,\n                92,\n                -80,\n                75,\n                -88,\n                70,\n                -74,\n                100,\n                -64,\n                67,\n                -63,\n                66,\n                -66,\n                89,\n                -71,\n                69,\n                -92,\n                72,\n                -62,\n                60,\n                -127,\n                127,\n                -123,\n                116,\n                -87,\n                87,\n                -116,\n                98,\n                -76,\n                88,\n                -90,\n                97,\n                -66,\n                78,\n                -86,\n                96,\n                -104,\n                113,\n                -93,\n                69,\n                -62,\n                68,\n                -128,\n                127,\n                -103,\n                109,\n                -101,\n                92,\n                -125,\n                100,\n                -71,\n                88,\n                -80,\n                89,\n                -64,\n                85,\n                -76,\n                94,\n                -84,\n                75,\n                -112,\n                94,\n                -96,\n                86,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -119,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -120,\n                127,\n                -128,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -121,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -116,\n                127,\n                -119,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -117,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                124,\n                -126,\n                127,\n                -121,\n                126,\n                -123,\n                127,\n                -127,\n                124,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                123,\n                -105,\n                120,\n                -123,\n                126,\n                -100,\n                118,\n                -119,\n                117,\n                -127,\n                126,\n                -120,\n                122,\n                -98,\n                94,\n                -81,\n                90,\n                -55,\n                55,\n                -51,\n                47,\n                -51,\n                44,\n                -63,\n                59,\n                -88,\n                85,\n                -84,\n                80,\n                -84,\n                68,\n                -65,\n                70,\n                -63,\n                75,\n                -79,\n                67,\n                -80,\n                73,\n                -80,\n                56,\n                -48,\n                47,\n                -48,\n                52,\n                -38,\n                37,\n                -35,\n                35,\n                -30,\n                30,\n                -33,\n                32,\n                -21,\n                20,\n                -15,\n                15,\n                -9,\n                10,\n                -8,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Hunt\",\n            \"slug\": \"wpm091-4\",\n            \"longSlug\": \"wpm091-4-the-hunt-main\",\n            \"originalFilename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900283\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 4,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Hunt\",\n                \"TRACK: Display Title\": \"The Hunt\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n                \"TRACK: Number\": \"004\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"199\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"8a55db4b2567868ab8b08d39941c7d62951bbc98\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900283\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-4\",\n            \"createdAt\": \"2020-08-18T22:17:59.151Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:19\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 199000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059d\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -46,\n                48,\n                -72,\n                57,\n                -60,\n                49,\n                -48,\n                45,\n                -68,\n                60,\n                -71,\n                55,\n                -47,\n                51,\n                -56,\n                50,\n                -52,\n                48,\n                -55,\n                73,\n                -58,\n                66,\n                -68,\n                50,\n                -68,\n                56,\n                -127,\n                127,\n                -118,\n                124,\n                -126,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -124,\n                125,\n                -119,\n                127,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                126,\n                -123,\n                127,\n                -119,\n                120,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -122,\n                127,\n                -128,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                126,\n                -119,\n                106,\n                -128,\n                127,\n                -123,\n                127,\n                -126,\n                127,\n                -126,\n                126,\n                -126,\n                126,\n                -125,\n                125,\n                -106,\n                121,\n                -128,\n                127,\n                -128,\n                127,\n                -122,\n                125,\n                -124,\n                127,\n                -127,\n                123,\n                -127,\n                121,\n                -127,\n                127,\n                -125,\n                125,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                123,\n                -124,\n                127,\n                -128,\n                127,\n                -119,\n                125,\n                -122,\n                127,\n                -123,\n                120,\n                -113,\n                124,\n                -128,\n                127,\n                -110,\n                123,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -122,\n                125,\n                -114,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                127,\n                -117,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -125,\n                119,\n                -127,\n                125,\n                -127,\n                127,\n                -127,\n                125,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -111,\n                124,\n                -127,\n                127,\n                -125,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -126,\n                127,\n                -127,\n                125,\n                -115,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -128,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                124,\n                -125,\n                126,\n                -125,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -110,\n                125,\n                -128,\n                126,\n                -127,\n                127,\n                -127,\n                125,\n                -126,\n                127,\n                -126,\n                123,\n                -128,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -122,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -124,\n                122,\n                -128,\n                127,\n                -126,\n                125,\n                -104,\n                127,\n                -128,\n                127,\n                -124,\n                111,\n                -76,\n                85,\n                -50,\n                56,\n                -37,\n                31,\n                -25,\n                21,\n                -17,\n                19,\n                -17,\n                17,\n                -16,\n                16,\n                -12,\n                13,\n                -9,\n                10,\n                -14,\n                12,\n                -12,\n                11,\n                -11,\n                13,\n                -8,\n                8,\n                -10,\n                8,\n                -7,\n                8,\n                -9,\n                8,\n                -12,\n                9,\n                -13,\n                13,\n                -16,\n                15,\n                -20,\n                22,\n                -21,\n                21,\n                -20,\n                20,\n                -17,\n                18,\n                -18,\n                18,\n                -73,\n                75,\n                -72,\n                59,\n                -61,\n                60,\n                -67,\n                112,\n                -66,\n                77,\n                -65,\n                70,\n                -50,\n                47,\n                -78,\n                73,\n                -87,\n                77,\n                -58,\n                58,\n                -102,\n                104,\n                -68,\n                74,\n                -64,\n                60,\n                -52,\n                49,\n                -81,\n                87,\n                -55,\n                56,\n                -49,\n                57,\n                -21,\n                22,\n                -15,\n                15,\n                -8,\n                9,\n                -11,\n                10,\n                -11,\n                13,\n                -11,\n                10,\n                -8,\n                8,\n                -9,\n                13,\n                -11,\n                12,\n                -12,\n                12,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                126,\n                -125,\n                125,\n                -123,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -125,\n                124,\n                -126,\n                126,\n                -126,\n                126,\n                -123,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -118,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                121,\n                -127,\n                127,\n                -123,\n                127,\n                -127,\n                127,\n                -120,\n                126,\n                -126,\n                127,\n                -115,\n                125,\n                -100,\n                98,\n                -128,\n                127,\n                -125,\n                117,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                124,\n                -124,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -124,\n                126,\n                -127,\n                126,\n                -122,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -128,\n                127,\n                -119,\n                127,\n                -100,\n                115,\n                -128,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -123,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                122,\n                -127,\n                127,\n                -126,\n                125,\n                -127,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                125,\n                -120,\n                125,\n                -121,\n                125,\n                -116,\n                127,\n                -121,\n                127,\n                -127,\n                127,\n                -107,\n                107,\n                -120,\n                98,\n                -102,\n                106,\n                -108,\n                95,\n                -79,\n                73,\n                -126,\n                126,\n                -117,\n                110,\n                -103,\n                100,\n                -100,\n                101,\n                -91,\n                93,\n                -111,\n                99,\n                -99,\n                103,\n                -126,\n                126,\n                -100,\n                107,\n                -95,\n                110,\n                -52,\n                67,\n                -48,\n                49,\n                -45,\n                41,\n                -34,\n                37,\n                -31,\n                31,\n                -23,\n                19,\n                -19,\n                16,\n                -12,\n                14,\n                -11,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -3,\n                3,\n                -2,\n                2,\n                -1,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Battleground\",\n            \"slug\": \"wpm091-10\",\n            \"longSlug\": \"wpm091-10-battleground-main\",\n            \"originalFilename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900289\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 10,\n            \"versionNumber\": 0,\n            \"bpm\": 119,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Battleground\",\n                \"TRACK: Display Title\": \"Battleground\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n                \"TRACK: Number\": \"010\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"119\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"04355e38594b78825f8ca834214c558c7c4af9ef\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900289\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-10\",\n            \"createdAt\": \"2020-08-18T22:17:59.157Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059e\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                127,\n                -101,\n                109,\n                -123,\n                124,\n                -113,\n                106,\n                -96,\n                109,\n                -127,\n                125,\n                -95,\n                108,\n                -99,\n                114,\n                -98,\n                108,\n                -95,\n                110,\n                -126,\n                126,\n                -90,\n                112,\n                -103,\n                102,\n                -114,\n                115,\n                -106,\n                110,\n                -126,\n                124,\n                -94,\n                109,\n                -109,\n                103,\n                -99,\n                114,\n                -97,\n                109,\n                -127,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -108,\n                114,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -79,\n                94,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -96,\n                90,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -84,\n                103,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -104,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -96,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                125,\n                -126,\n                127,\n                -90,\n                119,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -87,\n                96,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -84,\n                105,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                106,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                125,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                122,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -113,\n                110,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                125,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -117,\n                126,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                123,\n                -125,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -90,\n                96,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                126,\n                -86,\n                101,\n                -127,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -121,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -116,\n                119,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                116,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -102,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -103,\n                125,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -84,\n                110,\n                -128,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -91,\n                101,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -121,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -99,\n                118,\n                -116,\n                102,\n                -121,\n                122,\n                -118,\n                121,\n                -127,\n                124,\n                -126,\n                114,\n                -101,\n                114,\n                -115,\n                110,\n                -112,\n                118,\n                -103,\n                110,\n                -127,\n                127,\n                -126,\n                125,\n                -126,\n                126,\n                -128,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -122,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -126,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                117,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                116,\n                -125,\n                125,\n                -125,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -101,\n                122,\n                -127,\n                125,\n                -113,\n                126,\n                -117,\n                119,\n                -127,\n                127,\n                -124,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -107,\n                105,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -122,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -121,\n                123,\n                -126,\n                126,\n                -124,\n                119,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                121,\n                -128,\n                127,\n                -125,\n                107,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -128,\n                127,\n                -106,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -102,\n                125,\n                -127,\n                125,\n                -127,\n                126,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -125,\n                125,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                106,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -112,\n                126,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                127,\n                -116,\n                124,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                126,\n                -36,\n                40,\n                -21,\n                22,\n                -10,\n                10,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                4,\n                -4,\n                3,\n                -4,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                0,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5f3c51ce801b65001564056f\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Ultramarine\",\n            \"slug\": \"wpm091-16\",\n            \"longSlug\": \"wpm091-16-ultramarine-main\",\n            \"originalFilename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900295\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 16,\n            \"versionNumber\": 0,\n            \"bpm\": 71,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Ultramarine\",\n                \"TRACK: Display Title\": \"Ultramarine\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n                \"TRACK: Number\": \"016\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"206\",\n                \"TRACK: BPM\": \"71\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums, Electronic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense, Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"a45cbb14fd4e039b9aaa51f25e470bc22b93f193\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900295\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"electronic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-16\",\n            \"createdAt\": \"2020-08-18T22:17:59.163Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:26\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Electronic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Electronic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 206000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"fc60a54a-d830-49bd-9c65-4ee2f84a654b"},{"name":"Tracks filtered by group (from mongo)","id":"b28c3e7c-99a8-4305-955f-8bd27f54fce2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tracks?mongo=true&groupIds=654287af475a9a3a2e818fad","description":"<p>This will perform an AND search for any tracks containing both of the tags listed</p>\n","urlObject":{"path":["tracks"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc</p>\n","type":"text/plain"},"key":"mongo","value":"true"},{"disabled":true,"description":{"content":"<p>optional, int — paginate through by this count</p>\n","type":"text/plain"},"key":"$skip","value":"250"},{"disabled":true,"description":{"content":"<p>optional, int — count to return per page</p>\n","type":"text/plain"},"key":"$limit","value":"50"},{"description":{"content":"<p>restrict by this group id</p>\n","type":"text/plain"},"key":"groupIds","value":"654287af475a9a3a2e818fad"}],"variable":[]}},"response":[{"id":"a1a240f9-35af-40f8-9e88-a37bf3d3dfae","name":"Tracks within date range","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":{"raw":"{{hostAdmin}}/tracks?mongo=true&updatedAt[$gte]=2024-06-01&updatedAt[$lte]=2025-06-05T17:00:00.000Z","host":["{{hostAdmin}}"],"path":["tracks"],"query":[{"key":"mongo","value":"true","description":"Fetch from core data store rather than elastic search cache - best option unless using advanced elasticsearch aggregations etc"},{"key":"$skip","value":"250","description":"optional, int — paginate through by this count","disabled":true},{"key":"$limit","value":"50","description":"optional, int — count to return per page","type":"text","disabled":true},{"key":"isMain","value":"true","description":"optional, boolean — filter to main tracks only","disabled":true},{"key":"parentId","value":"{{parentId}}","description":"optional, mongoId — tracks with a specific parent","type":"text","disabled":true},{"key":"releaseId","value":"{{releaseId}}","description":"optional, mongoId — tracks on a specific release","type":"text","disabled":true},{"key":"updatedAt[$gte]","value":"2024-06-01","description":"Example filter - updated after a specified date","type":"text"},{"key":"updatedAt[$lte]","value":"2025-06-05T17:00:00.000Z","description":"Example filter - created after date and time","type":"text"},{"key":"updatedAt[$lt]","value":"releaseId","description":"An array of fields to select for inclusion in track data","type":"text","disabled":true},{"key":"$select[]","value":"composerIds","description":"Continuing the selection array for multiple fields","type":"text","disabled":true},{"key":"$select[]","value":"composers","description":"Note, related ids (eg composerIds) must appear in selection to also populate related documents (eg composers)","type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 13 Aug 2025 14:53:56 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=3%2B69m0pV2yWBGbLfIp63hjSC%2F2ROrUQzGhyU1zlXEt45QUTC6nUZu2NgHhD51kDSUOu%2Ff1izLVW0klLRbLLNj%2Bu6SNpk7zfHGk2CQKJh3NhpJdECvw%3D%3D\"}]}"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"Allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Content-Encoding","value":"gzip"},{"key":"Etag","value":"W/\"216d8-RQ+JxOW9x2DKhtxHZ1qfsGa6x/I\""},{"key":"Rndr-Id","value":"e9601f09-48bb-4a92"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Render-Origin-Server","value":"Render"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Cf-Cache-Status","value":"DYNAMIC"},{"key":"CF-RAY","value":"96e90b79ead5ef25-LHR"}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 160,\n    \"limit\": 10,\n    \"skip\": 0,\n    \"data\": [\n        {\n            \"_id\": \"64512567ecceb8e76c1553d8\",\n            \"slug\": \"vsb001-1v1\",\n            \"longSlug\": \"vsb001-1-bespoke-element-1-alternate-version-1\",\n            \"shortSlug\": \"vsb001-1\",\n            \"code\": \"\",\n            \"title\": \"Bespoke element 1\",\n            \"orgSlug\": \"demo\",\n            \"versionTitle\": \"Alternate version 1\",\n            \"description\": \"\",\n            \"isPublished\": false,\n            \"isMain\": false,\n            \"trackNumber\": 1,\n            \"versionNumber\": 1,\n            \"catalogueNumber\": \"\",\n            \"releaseCode\": \"vsb001\",\n            \"bpm\": 0,\n            \"key\": \"\",\n            \"state\": \"queued\",\n            \"iswc\": \"\",\n            \"isrc\": \"\",\n            \"tunecode\": \"\",\n            \"gemacode\": \"\",\n            \"lyrics\": \"\",\n            \"waveformData\": [],\n            \"releaseId\": \"645124e3ecceb8e76c1550b1\",\n            \"parentId\": \"64512500ecceb8e76c155134\",\n            \"tagIds\": [],\n            \"tags\": [\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Mood→Courageous\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Courageous\"\n                },\n                {\n                    \"id\": \"Instrumentation→Electric Organ\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Electric Organ\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                }\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\"\n            ],\n            \"composerIds\": [],\n            \"searchMetadata\": \"\",\n            \"aiState\": \"initial\",\n            \"deliveries\": {\n                \"soundmouse\": {\n                    \"metadata\": {\n                        \"state\": \"initial\",\n                        \"sent\": false\n                    },\n                    \"audio\": {\n                        \"state\": \"initial\",\n                        \"sent\": false,\n                        \"receiptConfirmed\": false\n                    },\n                    \"state\": \"initial\"\n                }\n            },\n            \"createdAt\": \"2023-05-02T14:59:51.009Z\",\n            \"updatedAt\": \"2024-11-26T12:19:32.827Z\",\n            \"__v\": 0,\n            \"siblingCount\": 1,\n            \"composers\": [],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {}\n        },\n        {\n            \"_id\": \"5f3c51ce801b650015640588\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -6,\n                5,\n                -32,\n                21,\n                -62,\n                48,\n                -77,\n                52,\n                -84,\n                66,\n                -97,\n                79,\n                -89,\n                69,\n                -94,\n                65,\n                -99,\n                87,\n                -99,\n                81,\n                -85,\n                61,\n                -94,\n                69,\n                -99,\n                84,\n                -82,\n                75,\n                -80,\n                82,\n                -83,\n                96,\n                -79,\n                84,\n                -79,\n                81,\n                -89,\n                84,\n                -101,\n                97,\n                -86,\n                87,\n                -85,\n                115,\n                -97,\n                94,\n                -77,\n                83,\n                -79,\n                93,\n                -87,\n                91,\n                -85,\n                85,\n                -71,\n                90,\n                -60,\n                97,\n                -68,\n                90,\n                -71,\n                97,\n                -53,\n                91,\n                -68,\n                91,\n                -57,\n                94,\n                -54,\n                90,\n                -60,\n                69,\n                -71,\n                86,\n                -71,\n                69,\n                -72,\n                71,\n                -91,\n                70,\n                -83,\n                76,\n                -83,\n                72,\n                -84,\n                78,\n                -77,\n                68,\n                -78,\n                75,\n                -88,\n                74,\n                -88,\n                69,\n                -98,\n                65,\n                -85,\n                68,\n                -87,\n                78,\n                -89,\n                84,\n                -85,\n                73,\n                -85,\n                87,\n                -97,\n                88,\n                -101,\n                72,\n                -84,\n                82,\n                -82,\n                86,\n                -85,\n                95,\n                -81,\n                95,\n                -74,\n                88,\n                -77,\n                95,\n                -75,\n                91,\n                -69,\n                112,\n                -81,\n                111,\n                -79,\n                82,\n                -74,\n                100,\n                -68,\n                109,\n                -76,\n                98,\n                -66,\n                95,\n                -89,\n                116,\n                -83,\n                112,\n                -80,\n                93,\n                -78,\n                80,\n                -97,\n                93,\n                -104,\n                89,\n                -99,\n                67,\n                -97,\n                66,\n                -96,\n                78,\n                -98,\n                71,\n                -89,\n                70,\n                -102,\n                78,\n                -93,\n                77,\n                -93,\n                98,\n                -100,\n                101,\n                -97,\n                97,\n                -87,\n                101,\n                -104,\n                118,\n                -81,\n                99,\n                -82,\n                106,\n                -81,\n                115,\n                -77,\n                107,\n                -80,\n                114,\n                -72,\n                102,\n                -105,\n                122,\n                -91,\n                124,\n                -80,\n                104,\n                -92,\n                98,\n                -87,\n                89,\n                -76,\n                96,\n                -77,\n                107,\n                -81,\n                104,\n                -73,\n                91,\n                -72,\n                82,\n                -85,\n                84,\n                -79,\n                79,\n                -87,\n                77,\n                -90,\n                74,\n                -101,\n                85,\n                -98,\n                82,\n                -100,\n                74,\n                -88,\n                73,\n                -105,\n                76,\n                -102,\n                71,\n                -112,\n                66,\n                -96,\n                93,\n                -98,\n                86,\n                -115,\n                85,\n                -102,\n                83,\n                -106,\n                97,\n                -95,\n                91,\n                -93,\n                97,\n                -104,\n                102,\n                -94,\n                103,\n                -102,\n                106,\n                -103,\n                105,\n                -84,\n                111,\n                -84,\n                112,\n                -87,\n                114,\n                -85,\n                102,\n                -73,\n                107,\n                -81,\n                100,\n                -93,\n                103,\n                -75,\n                125,\n                -82,\n                112,\n                -64,\n                117,\n                -64,\n                108,\n                -77,\n                97,\n                -73,\n                91,\n                -77,\n                98,\n                -86,\n                81,\n                -76,\n                75,\n                -83,\n                82,\n                -90,\n                73,\n                -91,\n                76,\n                -81,\n                62,\n                -79,\n                72,\n                -85,\n                58,\n                -72,\n                63,\n                -84,\n                84,\n                -85,\n                57,\n                -83,\n                68,\n                -89,\n                64,\n                -88,\n                59,\n                -92,\n                65,\n                -80,\n                77,\n                -86,\n                66,\n                -89,\n                69,\n                -81,\n                81,\n                -84,\n                81,\n                -85,\n                69,\n                -80,\n                75,\n                -81,\n                87,\n                -79,\n                79,\n                -77,\n                81,\n                -72,\n                86,\n                -86,\n                82,\n                -86,\n                91,\n                -75,\n                83,\n                -72,\n                87,\n                -73,\n                89,\n                -70,\n                93,\n                -65,\n                106,\n                -66,\n                94,\n                -63,\n                95,\n                -62,\n                91,\n                -64,\n                80,\n                -51,\n                78,\n                -53,\n                84,\n                -71,\n                74,\n                -65,\n                79,\n                -81,\n                75,\n                -69,\n                82,\n                -72,\n                71,\n                -78,\n                61,\n                -79,\n                62,\n                -72,\n                75,\n                -88,\n                60,\n                -95,\n                62,\n                -87,\n                58,\n                -89,\n                66,\n                -87,\n                55,\n                -86,\n                63,\n                -88,\n                66,\n                -97,\n                62,\n                -91,\n                66,\n                -95,\n                68,\n                -87,\n                74,\n                -86,\n                72,\n                -83,\n                82,\n                -85,\n                93,\n                -88,\n                78,\n                -71,\n                80,\n                -79,\n                84,\n                -77,\n                83,\n                -82,\n                86,\n                -66,\n                91,\n                -67,\n                78,\n                -68,\n                79,\n                -68,\n                93,\n                -67,\n                99,\n                -65,\n                90,\n                -63,\n                81,\n                -58,\n                88,\n                -69,\n                89,\n                -56,\n                84,\n                -57,\n                92,\n                -57,\n                82,\n                -73,\n                86,\n                -77,\n                72,\n                -84,\n                71,\n                -85,\n                73,\n                -89,\n                84,\n                -109,\n                72,\n                -97,\n                79,\n                -90,\n                75,\n                -86,\n                77,\n                -70,\n                82,\n                -86,\n                95,\n                -79,\n                92,\n                -86,\n                100,\n                -86,\n                108,\n                -79,\n                111,\n                -72,\n                103,\n                -71,\n                105,\n                -79,\n                118,\n                -78,\n                111,\n                -74,\n                99,\n                -78,\n                99,\n                -79,\n                104,\n                -84,\n                88,\n                -87,\n                98,\n                -78,\n                103,\n                -76,\n                95,\n                -87,\n                89,\n                -93,\n                84,\n                -88,\n                92,\n                -84,\n                91,\n                -89,\n                81,\n                -84,\n                88,\n                -81,\n                74,\n                -89,\n                67,\n                -84,\n                68,\n                -95,\n                86,\n                -85,\n                83,\n                -79,\n                82,\n                -107,\n                75,\n                -113,\n                94,\n                -112,\n                85,\n                -103,\n                83,\n                -112,\n                86,\n                -102,\n                81,\n                -98,\n                100,\n                -108,\n                88,\n                -98,\n                90,\n                -98,\n                107,\n                -86,\n                98,\n                -92,\n                105,\n                -96,\n                96,\n                -94,\n                115,\n                -104,\n                110,\n                -95,\n                110,\n                -94,\n                106,\n                -85,\n                119,\n                -86,\n                114,\n                -74,\n                112,\n                -78,\n                112,\n                -78,\n                115,\n                -73,\n                107,\n                -87,\n                109,\n                -80,\n                114,\n                -82,\n                104,\n                -89,\n                114,\n                -86,\n                92,\n                -78,\n                89,\n                -83,\n                88,\n                -94,\n                85,\n                -106,\n                81,\n                -114,\n                87,\n                -94,\n                73,\n                -100,\n                73,\n                -102,\n                82,\n                -106,\n                86,\n                -98,\n                75,\n                -94,\n                77,\n                -89,\n                70,\n                -91,\n                79,\n                -97,\n                76,\n                -82,\n                79,\n                -89,\n                71,\n                -84,\n                70,\n                -82,\n                62,\n                -78,\n                66,\n                -77,\n                67,\n                -53,\n                57,\n                -42,\n                44,\n                -32,\n                42,\n                -33,\n                28,\n                -19,\n                23,\n                -13,\n                18,\n                -9,\n                9,\n                -4,\n                6,\n                -1,\n                2,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7285\",\n                \"5ed7e02d2f47de0014963aa2\",\n                \"5e3c529994532a0014a05a4d\",\n                \"5ec65a19cd35e20014b8d187\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b19\",\n                \"5e3c529b94532a0014a05b4f\",\n                \"5f3c51ce801b65001564056c\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5dd3d83dae2b950014ef2355\",\n                \"5ed7e0202f47de00149638e2\",\n                \"5ec65a1acd35e20014b8d1cb\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5ec65a19cd35e20014b8d173\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5ec65a19cd35e20014b8d19b\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Dying Light\",\n            \"slug\": \"wpm090-20\",\n            \"longSlug\": \"wpm090-20-dying-light-30s\",\n            \"parentId\": \"5f3c51ce801b650015640581\",\n            \"originalFilename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900279\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 20,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Dying Light\",\n                \"TRACK: Display Title\": \"Dying Light\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A restrained, but deeply affecting and emotional, ambient track featuring slow layered synth chords that swell in and out as the song progresses - 30S EDIT\",\n                \"TRACK: Number\": \"020\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"010\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"459d6b02c4bd13811d297656266d5c05d8db021b\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Hopeful, Optimistic, Cinematic, Emotional, Emotive, Tender, Sensitive, Calm, Chilled, Gentle, Peaceful, Sentimental, Nostalgic, Touching, Minimal, Sad, Melancholic, Sombre, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Family, Automotive, Driving, Commercials, Advertising, Nature\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900279\",\n                \"_tags\": [\n                    \"synth\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium-fast\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"emotional\",\n                    \"emotive\",\n                    \"tender\",\n                    \"sensitive\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"sentimental\",\n                    \"nostalgic\",\n                    \"touching\",\n                    \"minimal\",\n                    \"sad\",\n                    \"melancholic\",\n                    \"sombre\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"family\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"nature\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-20\",\n            \"createdAt\": \"2020-08-18T22:10:22.880Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640588_WPM090_TK020_DYING_LIGHT_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Emotional\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotional\"\n                },\n                {\n                    \"id\": \"Mood→Emotive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotive\"\n                },\n                {\n                    \"id\": \"Keywords→Tender\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Tender\"\n                },\n                {\n                    \"id\": \"Mood→Sensitive\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sensitive\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Sentimental\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sentimental\"\n                },\n                {\n                    \"id\": \"Keywords→Nostalgic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Nostalgic\"\n                },\n                {\n                    \"id\": \"Mood→Touching\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Touching\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Sad\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Sad\"\n                },\n                {\n                    \"id\": \"Keywords→melancholic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"melancholic\"\n                },\n                {\n                    \"id\": \"Mood→Sombre\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Sombre\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Family\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Family\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Nature\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Nature\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -7,\n                3,\n                -22,\n                17,\n                -48,\n                34,\n                -65,\n                44,\n                -83,\n                74,\n                -94,\n                71,\n                -86,\n                94,\n                -80,\n                86,\n                -88,\n                99,\n                -92,\n                77,\n                -88,\n                79,\n                -91,\n                95,\n                -78,\n                109,\n                -76,\n                116,\n                -64,\n                102,\n                -70,\n                93,\n                -87,\n                89,\n                -82,\n                83,\n                -70,\n                79,\n                -105,\n                87,\n                -95,\n                79,\n                -99,\n                84,\n                -98,\n                81,\n                -103,\n                63,\n                -107,\n                98,\n                -113,\n                75,\n                -98,\n                73,\n                -89,\n                77,\n                -78,\n                80,\n                -81,\n                100,\n                -71,\n                112,\n                -66,\n                111,\n                -82,\n                98,\n                -89,\n                105,\n                -70,\n                118,\n                -95,\n                102,\n                -103,\n                100,\n                -86,\n                99,\n                -95,\n                100,\n                -87,\n                82,\n                -97,\n                74,\n                -105,\n                81,\n                -110,\n                72,\n                -107,\n                80,\n                -93,\n                77,\n                -91,\n                85,\n                -92,\n                88,\n                -110,\n                85,\n                -102,\n                78,\n                -91,\n                83,\n                -78,\n                87,\n                -95,\n                92,\n                -81,\n                79,\n                -70,\n                88,\n                -73,\n                84,\n                -72,\n                87,\n                -70,\n                97,\n                -73,\n                98,\n                -70,\n                81,\n                -81,\n                96,\n                -94,\n                94,\n                -87,\n                102,\n                -78,\n                91,\n                -88,\n                80,\n                -83,\n                107,\n                -93,\n                98,\n                -102,\n                93,\n                -88,\n                93,\n                -69,\n                94,\n                -76,\n                113,\n                -93,\n                126,\n                -71,\n                97,\n                -100,\n                107,\n                -110,\n                81,\n                -102,\n                89,\n                -92,\n                90,\n                -75,\n                102,\n                -81,\n                94,\n                -83,\n                88,\n                -68,\n                123,\n                -71,\n                112,\n                -101,\n                95,\n                -101,\n                87,\n                -95,\n                96,\n                -95,\n                113,\n                -102,\n                88,\n                -95,\n                91,\n                -105,\n                123,\n                -97,\n                104,\n                -101,\n                88,\n                -102,\n                75,\n                -94,\n                83,\n                -79,\n                97,\n                -98,\n                97,\n                -71,\n                89,\n                -79,\n                78,\n                -124,\n                76,\n                -111,\n                99,\n                -70,\n                93,\n                -65,\n                105,\n                -79,\n                95,\n                -83,\n                98,\n                -76,\n                116,\n                -97,\n                104,\n                -109,\n                93,\n                -109,\n                87,\n                -79,\n                91,\n                -91,\n                70,\n                -76,\n                99,\n                -78,\n                117,\n                -78,\n                121,\n                -95,\n                112,\n                -96,\n                90,\n                -104,\n                88,\n                -101,\n                82,\n                -87,\n                75,\n                -70,\n                82,\n                -64,\n                88,\n                -90,\n                61,\n                -87,\n                68,\n                -92,\n                87,\n                -90,\n                91,\n                -76,\n                100,\n                -83,\n                98,\n                -80,\n                107,\n                -81,\n                119,\n                -75,\n                95,\n                -80,\n                83,\n                -94,\n                84,\n                -81,\n                87,\n                -76,\n                85,\n                -70,\n                105,\n                -81,\n                111,\n                -77,\n                102,\n                -63,\n                105,\n                -85,\n                69,\n                -96,\n                75,\n                -100,\n                80,\n                -82,\n                81,\n                -84,\n                76,\n                -77,\n                67,\n                -84,\n                74,\n                -99,\n                79,\n                -104,\n                88,\n                -95,\n                83,\n                -83,\n                100,\n                -75,\n                105,\n                -65,\n                101,\n                -76,\n                84,\n                -82,\n                86,\n                -78,\n                91,\n                -76,\n                103,\n                -71,\n                98,\n                -76,\n                106,\n                -70,\n                99,\n                -73,\n                99,\n                -66,\n                84,\n                -68,\n                100,\n                -58,\n                98,\n                -76,\n                74,\n                -97,\n                74,\n                -90,\n                80,\n                -91,\n                86,\n                -92,\n                74,\n                -108,\n                73,\n                -102,\n                70,\n                -107,\n                71,\n                -100,\n                75,\n                -93,\n                79,\n                -74,\n                79,\n                -87,\n                94,\n                -80,\n                100,\n                -61,\n                118,\n                -59,\n                115,\n                -64,\n                110,\n                -71,\n                102,\n                -59,\n                78,\n                -61,\n                72,\n                -69,\n                73,\n                -80,\n                90,\n                -87,\n                87,\n                -106,\n                87,\n                -76,\n                86,\n                -66,\n                113,\n                -77,\n                102,\n                -90,\n                90,\n                -72,\n                96,\n                -86,\n                89,\n                -82,\n                77,\n                -85,\n                79,\n                -83,\n                79,\n                -69,\n                92,\n                -68,\n                92,\n                -80,\n                86,\n                -87,\n                102,\n                -90,\n                87,\n                -81,\n                87,\n                -72,\n                92,\n                -68,\n                89,\n                -70,\n                105,\n                -97,\n                103,\n                -88,\n                92,\n                -95,\n                83,\n                -77,\n                74,\n                -95,\n                86,\n                -79,\n                82,\n                -89,\n                79,\n                -97,\n                88,\n                -70,\n                96,\n                -72,\n                94,\n                -83,\n                92,\n                -92,\n                98,\n                -77,\n                98,\n                -81,\n                117,\n                -67,\n                108,\n                -78,\n                102,\n                -98,\n                93,\n                -91,\n                105,\n                -86,\n                82,\n                -97,\n                72,\n                -91,\n                68,\n                -103,\n                65,\n                -108,\n                75,\n                -84,\n                65,\n                -79,\n                87,\n                -74,\n                85,\n                -68,\n                94,\n                -69,\n                91,\n                -89,\n                91,\n                -71,\n                78,\n                -69,\n                95,\n                -75,\n                92,\n                -78,\n                84,\n                -89,\n                89,\n                -75,\n                88,\n                -63,\n                102,\n                -87,\n                79,\n                -95,\n                75,\n                -87,\n                87,\n                -90,\n                84,\n                -95,\n                96,\n                -85,\n                82,\n                -73,\n                76,\n                -79,\n                83,\n                -75,\n                79,\n                -85,\n                88,\n                -83,\n                91,\n                -60,\n                114,\n                -75,\n                101,\n                -75,\n                100,\n                -71,\n                99,\n                -69,\n                112,\n                -97,\n                113,\n                -89,\n                84,\n                -89,\n                85,\n                -99,\n                76,\n                -87,\n                95,\n                -89,\n                74,\n                -71,\n                82,\n                -81,\n                78,\n                -69,\n                78,\n                -97,\n                72,\n                -95,\n                78,\n                -85,\n                110,\n                -85,\n                109,\n                -81,\n                94,\n                -101,\n                93,\n                -108,\n                80,\n                -94,\n                90,\n                -89,\n                107,\n                -82,\n                123,\n                -68,\n                111,\n                -82,\n                104,\n                -86,\n                80,\n                -92,\n                90,\n                -100,\n                80,\n                -107,\n                68,\n                -87,\n                70,\n                -95,\n                90,\n                -79,\n                102,\n                -79,\n                85,\n                -100,\n                82,\n                -98,\n                95,\n                -94,\n                84,\n                -90,\n                77,\n                -78,\n                102,\n                -78,\n                108,\n                -79,\n                89,\n                -88,\n                75,\n                -90,\n                81,\n                -86,\n                111,\n                -74,\n                119,\n                -83,\n                117,\n                -88,\n                117,\n                -102,\n                99,\n                -85,\n                83,\n                -79,\n                69,\n                -73,\n                67,\n                -74,\n                72,\n                -61,\n                75,\n                -68,\n                58,\n                -58,\n                59,\n                -61,\n                49,\n                -57,\n                43,\n                -59,\n                43,\n                -48,\n                33,\n                -39,\n                26,\n                -27,\n                16,\n                -13,\n                15,\n                -9,\n                7,\n                -3,\n                4,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec6598ecd35e20014b8d0ef\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Contemplation\",\n            \"slug\": \"wpm090-13\",\n            \"longSlug\": \"wpm090-13-contemplation-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057f\",\n            \"originalFilename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900272\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 113,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Contemplation\",\n                \"TRACK: Display Title\": \"Contemplation\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A serene, celestial ambient piece featuring slow, string-like chords and layered synth arpeggios. A deep held bass provides a sense of tension and unease as the track progresses - 30S EDIT\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"003\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"113\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"c5ea64ecb0180b68e0bf1f60ccedae2bd9ef972d\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Edgy, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Science Fiction, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Crime\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900272\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"edgy\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-13\",\n            \"createdAt\": \"2020-08-18T22:10:22.909Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058a_WPM090_TK013_CONTEMPLATION_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Mood→Edgy\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Edgy\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c51ce801b65001564058c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -4,\n                3,\n                -15,\n                17,\n                -36,\n                41,\n                -51,\n                70,\n                -64,\n                81,\n                -78,\n                90,\n                -88,\n                95,\n                -90,\n                105,\n                -95,\n                86,\n                -96,\n                101,\n                -93,\n                98,\n                -91,\n                86,\n                -80,\n                82,\n                -80,\n                100,\n                -73,\n                100,\n                -72,\n                91,\n                -75,\n                90,\n                -83,\n                94,\n                -89,\n                90,\n                -81,\n                110,\n                -87,\n                106,\n                -92,\n                103,\n                -94,\n                98,\n                -92,\n                97,\n                -82,\n                99,\n                -73,\n                84,\n                -76,\n                91,\n                -66,\n                87,\n                -69,\n                69,\n                -71,\n                75,\n                -62,\n                76,\n                -73,\n                81,\n                -87,\n                97,\n                -92,\n                104,\n                -90,\n                95,\n                -94,\n                98,\n                -87,\n                89,\n                -76,\n                85,\n                -67,\n                77,\n                -67,\n                86,\n                -67,\n                84,\n                -70,\n                84,\n                -68,\n                82,\n                -75,\n                80,\n                -68,\n                64,\n                -72,\n                69,\n                -83,\n                94,\n                -88,\n                85,\n                -75,\n                75,\n                -84,\n                73,\n                -94,\n                81,\n                -76,\n                82,\n                -74,\n                90,\n                -65,\n                98,\n                -61,\n                93,\n                -64,\n                95,\n                -69,\n                93,\n                -88,\n                93,\n                -83,\n                106,\n                -91,\n                104,\n                -80,\n                113,\n                -96,\n                122,\n                -87,\n                94,\n                -83,\n                90,\n                -71,\n                97,\n                -79,\n                96,\n                -63,\n                85,\n                -63,\n                87,\n                -77,\n                78,\n                -82,\n                99,\n                -83,\n                97,\n                -73,\n                97,\n                -97,\n                80,\n                -91,\n                81,\n                -79,\n                90,\n                -86,\n                83,\n                -89,\n                76,\n                -92,\n                79,\n                -87,\n                76,\n                -80,\n                72,\n                -59,\n                77,\n                -86,\n                93,\n                -93,\n                74,\n                -75,\n                81,\n                -78,\n                75,\n                -91,\n                77,\n                -81,\n                80,\n                -85,\n                105,\n                -82,\n                84,\n                -86,\n                82,\n                -76,\n                94,\n                -72,\n                93,\n                -66,\n                84,\n                -70,\n                104,\n                -67,\n                85,\n                -72,\n                78,\n                -80,\n                96,\n                -78,\n                86,\n                -84,\n                79,\n                -88,\n                100,\n                -89,\n                97,\n                -96,\n                88,\n                -91,\n                98,\n                -77,\n                97,\n                -79,\n                102,\n                -69,\n                104,\n                -71,\n                91,\n                -70,\n                91,\n                -79,\n                96,\n                -90,\n                96,\n                -79,\n                87,\n                -96,\n                97,\n                -94,\n                98,\n                -82,\n                99,\n                -103,\n                94,\n                -93,\n                98,\n                -90,\n                86,\n                -105,\n                80,\n                -89,\n                86,\n                -80,\n                70,\n                -62,\n                72,\n                -68,\n                75,\n                -95,\n                71,\n                -92,\n                78,\n                -96,\n                91,\n                -104,\n                93,\n                -87,\n                81,\n                -79,\n                68,\n                -74,\n                74,\n                -76,\n                76,\n                -73,\n                75,\n                -80,\n                72,\n                -63,\n                84,\n                -68,\n                85,\n                -71,\n                84,\n                -68,\n                83,\n                -77,\n                79,\n                -79,\n                70,\n                -83,\n                84,\n                -84,\n                90,\n                -76,\n                76,\n                -75,\n                83,\n                -73,\n                82,\n                -66,\n                80,\n                -67,\n                102,\n                -77,\n                95,\n                -67,\n                107,\n                -75,\n                110,\n                -72,\n                99,\n                -80,\n                112,\n                -91,\n                96,\n                -100,\n                89,\n                -89,\n                93,\n                -98,\n                89,\n                -88,\n                79,\n                -73,\n                99,\n                -75,\n                88,\n                -66,\n                80,\n                -66,\n                84,\n                -74,\n                76,\n                -73,\n                86,\n                -96,\n                80,\n                -81,\n                77,\n                -93,\n                88,\n                -99,\n                76,\n                -106,\n                87,\n                -88,\n                89,\n                -82,\n                88,\n                -77,\n                91,\n                -78,\n                73,\n                -79,\n                83,\n                -77,\n                75,\n                -83,\n                83,\n                -74,\n                88,\n                -79,\n                90,\n                -79,\n                75,\n                -92,\n                74,\n                -86,\n                81,\n                -89,\n                83,\n                -83,\n                71,\n                -88,\n                74,\n                -79,\n                74,\n                -88,\n                87,\n                -86,\n                76,\n                -82,\n                80,\n                -71,\n                82,\n                -86,\n                88,\n                -84,\n                96,\n                -79,\n                83,\n                -73,\n                78,\n                -76,\n                74,\n                -84,\n                75,\n                -94,\n                76,\n                -76,\n                70,\n                -72,\n                85,\n                -82,\n                92,\n                -72,\n                91,\n                -88,\n                90,\n                -75,\n                70,\n                -86,\n                88,\n                -82,\n                87,\n                -95,\n                92,\n                -85,\n                95,\n                -94,\n                88,\n                -96,\n                90,\n                -95,\n                102,\n                -80,\n                88,\n                -73,\n                85,\n                -75,\n                76,\n                -76,\n                72,\n                -75,\n                83,\n                -75,\n                72,\n                -78,\n                81,\n                -81,\n                77,\n                -81,\n                87,\n                -82,\n                90,\n                -96,\n                91,\n                -94,\n                91,\n                -90,\n                85,\n                -81,\n                89,\n                -74,\n                97,\n                -75,\n                85,\n                -86,\n                91,\n                -71,\n                82,\n                -69,\n                75,\n                -84,\n                83,\n                -100,\n                76,\n                -73,\n                76,\n                -81,\n                96,\n                -77,\n                86,\n                -77,\n                101,\n                -80,\n                96,\n                -80,\n                85,\n                -75,\n                83,\n                -83,\n                77,\n                -70,\n                68,\n                -71,\n                66,\n                -66,\n                71,\n                -82,\n                70,\n                -80,\n                73,\n                -91,\n                62,\n                -92,\n                74,\n                -77,\n                85,\n                -85,\n                90,\n                -80,\n                82,\n                -77,\n                78,\n                -81,\n                69,\n                -73,\n                100,\n                -66,\n                90,\n                -79,\n                69,\n                -78,\n                72,\n                -70,\n                78,\n                -65,\n                67,\n                -70,\n                73,\n                -70,\n                79,\n                -76,\n                77,\n                -85,\n                82,\n                -84,\n                78,\n                -70,\n                91,\n                -87,\n                96,\n                -70,\n                70,\n                -69,\n                64,\n                -84,\n                75,\n                -84,\n                82,\n                -69,\n                66,\n                -69,\n                68,\n                -77,\n                77,\n                -72,\n                73,\n                -80,\n                72,\n                -80,\n                88,\n                -81,\n                90,\n                -96,\n                81,\n                -68,\n                73,\n                -67,\n                98,\n                -67,\n                79,\n                -69,\n                84,\n                -70,\n                85,\n                -76,\n                81,\n                -74,\n                113,\n                -81,\n                89,\n                -69,\n                88,\n                -76,\n                98,\n                -88,\n                97,\n                -78,\n                90,\n                -76,\n                95,\n                -82,\n                67,\n                -69,\n                65,\n                -69,\n                82,\n                -69,\n                99,\n                -76,\n                97,\n                -64,\n                80,\n                -74,\n                77,\n                -72,\n                73,\n                -70,\n                79,\n                -80,\n                100,\n                -78,\n                99,\n                -75,\n                86,\n                -67,\n                76,\n                -68,\n                75,\n                -58,\n                70,\n                -63,\n                69,\n                -55,\n                62,\n                -57,\n                52,\n                -38,\n                43,\n                -37,\n                41,\n                -24,\n                32,\n                -22,\n                28,\n                -17,\n                21,\n                -11,\n                17,\n                -8,\n                10,\n                -4,\n                5,\n                -1,\n                1,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef231d\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3959c4ea2aff0014120320\",\n                \"5e3959c4ea2aff00141202f6\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b12\",\n                \"5ec65a17cd35e20014b8d13a\",\n                \"5ec65a18cd35e20014b8d160\",\n                \"5e3c529b94532a0014a05afc\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5ec65a19cd35e20014b8d177\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5e3c529b94532a0014a05b1a\",\n                \"5e3c529b94532a0014a05b1b\",\n                \"5f3c51ce801b650015640572\",\n                \"5f3c51ce801b650015640573\",\n                \"5e3c529a94532a0014a05abf\",\n                \"5ec65a17cd35e20014b8d13d\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed7e01f2f47de00149638c7\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5ed7e0232f47de00149639c3\",\n                \"5f3c51ce801b65001564056a\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f3c51ce801b65001564056b\",\n                \"5ed7e01f2f47de00149638ae\",\n                \"5ed7e0242f47de0014963a25\",\n                \"5e3c524d94532a0014a059e6\",\n                \"5eb01bc9b460db0014a147a7\",\n                \"5f3c51ce801b65001564056e\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c51cd801b650015640560\"\n            ],\n            \"title\": \"Aurora\",\n            \"slug\": \"wpm090-18\",\n            \"longSlug\": \"wpm090-18-aurora-30s\",\n            \"parentId\": \"5f3c51ce801b65001564057d\",\n            \"originalFilename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n            \"versionTitle\": \"30s\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": false,\n            \"catalogueNumber\": \"WPM090\",\n            \"releaseDate\": \"2019-09-06\",\n            \"releaseTitleEn\": \"SEQUENCE / Ambient | Cinematic\",\n            \"isrc\": \"GBUDZ1900277\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 18,\n            \"versionNumber\": 0,\n            \"bpm\": 110,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM090\",\n                \"ALBUM: Identity\": \"b47fbf5cfec49106e9409f4860ca8a584bf800b0\",\n                \"ALBUM: Title\": \"SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Display Title\": \"WPM090 - SEQUENCE : Ambient | Cinematic\",\n                \"ALBUM: Description\": \"Ambient Cinematic Scores by Anell June\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-06\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Aurora\",\n                \"TRACK: Display Title\": \"Aurora\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A slow, subtle ambient track. Pitch bending synths are joined by a more melodious, 80s inspired hook to create a hopeful, almost spiritual feeling - 30S EDIT\",\n                \"TRACK: Number\": \"018\",\n                \"TRACK: Is Main\": \"N\",\n                \"TRACK: Main Track Number\": \"008\",\n                \"TRACK: Version\": \"30s\",\n                \"TRACK: Duration\": \"30\",\n                \"TRACK: BPM\": \"110\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Ambient, Electronic, Soundtrack\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Synth\",\n                \"TRACK: Keywords\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil, Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology, Atmosphere\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"507f9335ac49763a86f27b653a0902cae380ccdb\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Olena Shvachko\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Anell June\",\n                \"TRACK: Audio Filename\": \"WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Hopeful, Optimistic, Cinematic, Tense, Suspenseful, Uneasy, Calm, Chilled, Gentle, Peaceful, Neutral, Emotionless, Minimal, Mysterious, Mystical, Building, Rising, Reflective, Thoughtful, Laidback, Easygoing, Relaxed, Tranquil\",\n                \"TRACK: Music For\": \"Drama, Documentaries, Corporate, Trailers, Promo, Adventure, News, Current Affairs, Tension, Automotive, Driving, Commercials, Advertising, Science, Technology\",\n                \"WRITER:1: First Name\": \"Olena\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Shvachko\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"386039929\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900277\",\n                \"_tags\": [\n                    \"synth\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"atmosphere\",\n                    \"ambient\",\n                    \"electronic\",\n                    \"soundtrack\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"hopeful\",\n                    \"optimistic\",\n                    \"cinematic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"calm\",\n                    \"chilled\",\n                    \"gentle\",\n                    \"peaceful\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"minimal\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"reflective\",\n                    \"thoughtful\",\n                    \"laidback\",\n                    \"easygoing\",\n                    \"relaxed\",\n                    \"tranquil\",\n                    \"drama\",\n                    \"documentaries\",\n                    \"corporate\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"news\",\n                    \"current-affairs\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"science\",\n                    \"technology\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"olena-shvachko-386039929\"\n                ]\n            },\n            \"releaseId\": \"5f3c51ce801b650015640578\",\n            \"shortSlug\": \"wpm090-18\",\n            \"createdAt\": \"2020-08-18T22:10:22.924Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"bitDepth\": 16,\n            \"duration\": \"00:00:30\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b65001564058c_WPM090_TK018_AURORA_Olena_Shvachko_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Hopeful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Hopeful\"\n                },\n                {\n                    \"id\": \"Keywords→Optimistic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Optimistic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Calm\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Calm\"\n                },\n                {\n                    \"id\": \"Mood→Chilled\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Chilled\"\n                },\n                {\n                    \"id\": \"Mood→Gentle\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Gentle\"\n                },\n                {\n                    \"id\": \"Keywords→Peaceful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Peaceful\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Minimal\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Minimal\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Reflective\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Reflective\"\n                },\n                {\n                    \"id\": \"Keywords→Thoughtful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Thoughtful\"\n                },\n                {\n                    \"id\": \"Mood→Laidback\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Laidback\"\n                },\n                {\n                    \"id\": \"Mood→Easygoing\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Easygoing\"\n                },\n                {\n                    \"id\": \"Keywords→Relaxed\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Relaxed\"\n                },\n                {\n                    \"id\": \"Mood→Tranquil\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tranquil\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Corporate\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Corporate\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→News\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"News\"\n                },\n                {\n                    \"id\": \"Music For→Current Affairs\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Current Affairs\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Keywords→technology\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"technology\"\n                },\n                {\n                    \"id\": \"Keywords→Ambient\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Ambient\"\n                },\n                {\n                    \"id\": \"Genre→Electronic\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Electronic\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"siblingCount\": 1,\n            \"durationMs\": 30000,\n            \"releaseCode\": \"WPM090\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c51cd801b650015640560\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"olena-shvachko-386039929\",\n                    \"firstName\": \"Olena\",\n                    \"lastName\": \"Shvachko\",\n                    \"ipi\": \"386039929\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c51ce801b650015640578\",\n                \"isPublished\": true,\n                \"totalTracks\": 5,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"SEQUENCE / Ambient | Cinematic\",\n                \"slug\": \"wpm090\",\n                \"description\": \"Ambient Cinematic Scores by Anell June\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM090\",\n                \"releaseDate\": \"2019-09-06\",\n                \"labelId\": \"6254504237734680a1de7569\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c51ce801b650015640578_750w-11.jpg\",\n                \"code\": \"WPM090\",\n                \"totalVersions\": 13,\n                \"labelGroupIds\": [\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"label\": {\n                    \"_id\": \"6254504237734680a1de7569\",\n                    \"orgSlug\": \"demo\",\n                    \"title\": \"WRONG PLANET\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b650015640599\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -120,\n                125,\n                -121,\n                127,\n                -68,\n                93,\n                -61,\n                59,\n                -51,\n                42,\n                -117,\n                125,\n                -106,\n                126,\n                -76,\n                84,\n                -62,\n                56,\n                -52,\n                58,\n                -60,\n                63,\n                -113,\n                127,\n                -97,\n                122,\n                -82,\n                71,\n                -107,\n                126,\n                -113,\n                123,\n                -99,\n                123,\n                -117,\n                110,\n                -119,\n                107,\n                -73,\n                69,\n                -59,\n                54,\n                -76,\n                72,\n                -128,\n                114,\n                -122,\n                124,\n                -98,\n                93,\n                -82,\n                74,\n                -52,\n                46,\n                -50,\n                68,\n                -117,\n                127,\n                -111,\n                121,\n                -60,\n                82,\n                -57,\n                61,\n                -55,\n                59,\n                -111,\n                125,\n                -116,\n                111,\n                -108,\n                108,\n                -101,\n                123,\n                -123,\n                123,\n                -106,\n                84,\n                -123,\n                123,\n                -126,\n                120,\n                -75,\n                91,\n                -60,\n                63,\n                -103,\n                93,\n                -110,\n                121,\n                -125,\n                119,\n                -102,\n                127,\n                -94,\n                88,\n                -116,\n                105,\n                -94,\n                127,\n                -121,\n                126,\n                -126,\n                119,\n                -102,\n                86,\n                -81,\n                67,\n                -73,\n                89,\n                -86,\n                80,\n                -116,\n                126,\n                -104,\n                123,\n                -104,\n                111,\n                -121,\n                122,\n                -90,\n                127,\n                -71,\n                91,\n                -110,\n                125,\n                -116,\n                125,\n                -106,\n                111,\n                -85,\n                83,\n                -113,\n                99,\n                -119,\n                123,\n                -112,\n                123,\n                -106,\n                91,\n                -93,\n                116,\n                -111,\n                125,\n                -97,\n                84,\n                -124,\n                123,\n                -110,\n                124,\n                -76,\n                94,\n                -74,\n                80,\n                -83,\n                74,\n                -76,\n                89,\n                -123,\n                126,\n                -115,\n                126,\n                -119,\n                127,\n                -120,\n                125,\n                -93,\n                109,\n                -114,\n                124,\n                -108,\n                124,\n                -87,\n                73,\n                -110,\n                71,\n                -108,\n                90,\n                -83,\n                94,\n                -116,\n                121,\n                -124,\n                127,\n                -106,\n                88,\n                -108,\n                124,\n                -102,\n                127,\n                -87,\n                104,\n                -110,\n                127,\n                -117,\n                124,\n                -69,\n                83,\n                -73,\n                107,\n                -95,\n                90,\n                -109,\n                117,\n                -106,\n                126,\n                -91,\n                99,\n                -113,\n                127,\n                -108,\n                127,\n                -80,\n                84,\n                -121,\n                125,\n                -116,\n                125,\n                -78,\n                73,\n                -90,\n                96,\n                -115,\n                97,\n                -117,\n                117,\n                -118,\n                111,\n                -120,\n                123,\n                -122,\n                123,\n                -121,\n                126,\n                -86,\n                75,\n                -111,\n                127,\n                -114,\n                126,\n                -85,\n                79,\n                -92,\n                94,\n                -87,\n                88,\n                -92,\n                87,\n                -128,\n                122,\n                -108,\n                127,\n                -97,\n                116,\n                -116,\n                123,\n                -103,\n                127,\n                -112,\n                127,\n                -105,\n                119,\n                -95,\n                90,\n                -94,\n                70,\n                -84,\n                73,\n                -112,\n                85,\n                -128,\n                127,\n                -127,\n                126,\n                -111,\n                124,\n                -114,\n                126,\n                -117,\n                110,\n                -111,\n                115,\n                -125,\n                125,\n                -114,\n                110,\n                -102,\n                127,\n                -117,\n                126,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -96,\n                124,\n                -124,\n                126,\n                -91,\n                119,\n                -108,\n                101,\n                -111,\n                127,\n                -115,\n                124,\n                -124,\n                126,\n                -117,\n                127,\n                -90,\n                109,\n                -78,\n                89,\n                -128,\n                127,\n                -118,\n                109,\n                -109,\n                125,\n                -103,\n                103,\n                -124,\n                97,\n                -102,\n                126,\n                -127,\n                127,\n                -118,\n                127,\n                -112,\n                125,\n                -91,\n                106,\n                -88,\n                95,\n                -125,\n                127,\n                -118,\n                125,\n                -97,\n                126,\n                -123,\n                127,\n                -75,\n                86,\n                -101,\n                72,\n                -124,\n                127,\n                -124,\n                104,\n                -119,\n                127,\n                -116,\n                125,\n                -121,\n                126,\n                -126,\n                127,\n                -124,\n                125,\n                -101,\n                119,\n                -121,\n                121,\n                -100,\n                127,\n                -93,\n                87,\n                -118,\n                117,\n                -117,\n                127,\n                -98,\n                111,\n                -94,\n                97,\n                -90,\n                91,\n                -112,\n                99,\n                -113,\n                127,\n                -114,\n                109,\n                -125,\n                112,\n                -103,\n                127,\n                -86,\n                83,\n                -109,\n                127,\n                -110,\n                124,\n                -93,\n                103,\n                -86,\n                96,\n                -105,\n                101,\n                -101,\n                100,\n                -125,\n                125,\n                -111,\n                126,\n                -99,\n                118,\n                -123,\n                122,\n                -121,\n                121,\n                -119,\n                123,\n                -123,\n                122,\n                -110,\n                127,\n                -100,\n                102,\n                -99,\n                89,\n                -91,\n                106,\n                -123,\n                125,\n                -118,\n                126,\n                -91,\n                109,\n                -121,\n                126,\n                -125,\n                125,\n                -66,\n                88,\n                -105,\n                126,\n                -106,\n                127,\n                -86,\n                73,\n                -103,\n                99,\n                -100,\n                94,\n                -123,\n                127,\n                -127,\n                125,\n                -102,\n                125,\n                -110,\n                123,\n                -103,\n                126,\n                -108,\n                102,\n                -124,\n                124,\n                -122,\n                127,\n                -97,\n                93,\n                -108,\n                119,\n                -101,\n                116,\n                -98,\n                91,\n                -122,\n                122,\n                -123,\n                125,\n                -99,\n                114,\n                -112,\n                126,\n                -100,\n                127,\n                -124,\n                125,\n                -123,\n                127,\n                -95,\n                105,\n                -117,\n                106,\n                -88,\n                101,\n                -106,\n                113,\n                -126,\n                126,\n                -111,\n                126,\n                -113,\n                102,\n                -120,\n                110,\n                -114,\n                117,\n                -97,\n                96,\n                -115,\n                127,\n                -121,\n                123,\n                -98,\n                97,\n                -90,\n                103,\n                -104,\n                98,\n                -122,\n                127,\n                -119,\n                124,\n                -100,\n                114,\n                -117,\n                119,\n                -115,\n                127,\n                -104,\n                122,\n                -124,\n                124,\n                -124,\n                126,\n                -100,\n                85,\n                -109,\n                99,\n                -115,\n                120,\n                -126,\n                127,\n                -128,\n                127,\n                -110,\n                122,\n                -125,\n                127,\n                -103,\n                123,\n                -93,\n                104,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                119,\n                -126,\n                123,\n                -106,\n                120,\n                -104,\n                104,\n                -124,\n                123,\n                -125,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -99,\n                97,\n                -97,\n                90,\n                -117,\n                127,\n                -115,\n                104,\n                -127,\n                127,\n                -126,\n                125,\n                -100,\n                108,\n                -65,\n                76,\n                -50,\n                49,\n                -35,\n                43,\n                -26,\n                19,\n                -12,\n                14,\n                -9,\n                11,\n                -6,\n                7,\n                -4,\n                3,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"An Invasion\",\n            \"slug\": \"wpm091-1\",\n            \"longSlug\": \"wpm091-1-an-invasion-main\",\n            \"originalFilename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900280\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 1,\n            \"versionNumber\": 0,\n            \"bpm\": 100,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"An Invasion\",\n                \"TRACK: Display Title\": \"An Invasion\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Steady and startling, featuring relentless pounding drums and snare roll blasts straight from the battlefield!\",\n                \"TRACK: Number\": \"001\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"132\",\n                \"TRACK: BPM\": \"100\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"98fc8e98508c2356dc7a5f46d607c710154b6151\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900280\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-1\",\n            \"createdAt\": \"2020-08-18T22:17:59.125Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:12\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640599_WPM091_TK001_AN_INVASION_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 132000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059a\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                0,\n                0,\n                0,\n                0,\n                -8,\n                9,\n                -8,\n                8,\n                -6,\n                6,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -2,\n                1,\n                -4,\n                4,\n                -6,\n                5,\n                -11,\n                10,\n                -13,\n                11,\n                -8,\n                9,\n                -6,\n                7,\n                -5,\n                6,\n                -5,\n                5,\n                -5,\n                6,\n                -5,\n                6,\n                -7,\n                7,\n                -7,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -4,\n                6,\n                -5,\n                4,\n                -6,\n                6,\n                -6,\n                7,\n                -7,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                5,\n                -5,\n                4,\n                -10,\n                10,\n                -104,\n                126,\n                -93,\n                90,\n                -112,\n                109,\n                -102,\n                90,\n                -51,\n                45,\n                -25,\n                25,\n                -17,\n                16,\n                -9,\n                9,\n                -16,\n                15,\n                -76,\n                101,\n                -116,\n                125,\n                -120,\n                127,\n                -90,\n                92,\n                -65,\n                72,\n                -47,\n                47,\n                -18,\n                18,\n                -11,\n                9,\n                -6,\n                6,\n                -7,\n                7,\n                -102,\n                126,\n                -80,\n                86,\n                -110,\n                125,\n                -114,\n                110,\n                -62,\n                77,\n                -43,\n                44,\n                -21,\n                19,\n                -22,\n                19,\n                -20,\n                18,\n                -38,\n                36,\n                -89,\n                94,\n                -93,\n                116,\n                -106,\n                127,\n                -84,\n                98,\n                -58,\n                58,\n                -38,\n                41,\n                -28,\n                30,\n                -21,\n                22,\n                -19,\n                25,\n                -24,\n                24,\n                -16,\n                19,\n                -19,\n                18,\n                -20,\n                21,\n                -22,\n                22,\n                -24,\n                22,\n                -17,\n                17,\n                -20,\n                21,\n                -19,\n                19,\n                -16,\n                16,\n                -20,\n                19,\n                -19,\n                20,\n                -19,\n                21,\n                -24,\n                22,\n                -17,\n                16,\n                -16,\n                15,\n                -21,\n                15,\n                -20,\n                20,\n                -17,\n                17,\n                -17,\n                21,\n                -19,\n                18,\n                -18,\n                17,\n                -20,\n                18,\n                -19,\n                17,\n                -19,\n                23,\n                -27,\n                23,\n                -20,\n                20,\n                -18,\n                19,\n                -24,\n                17,\n                -23,\n                22,\n                -16,\n                17,\n                -23,\n                23,\n                -24,\n                26,\n                -23,\n                26,\n                -25,\n                24,\n                -24,\n                20,\n                -21,\n                22,\n                -20,\n                18,\n                -23,\n                25,\n                -16,\n                18,\n                -23,\n                20,\n                -20,\n                20,\n                -24,\n                21,\n                -24,\n                23,\n                -23,\n                26,\n                -20,\n                22,\n                -19,\n                19,\n                -19,\n                18,\n                -21,\n                21,\n                -21,\n                21,\n                -23,\n                25,\n                -17,\n                17,\n                -17,\n                17,\n                -22,\n                21,\n                -24,\n                22,\n                -21,\n                20,\n                -18,\n                19,\n                -20,\n                20,\n                -17,\n                19,\n                -21,\n                24,\n                -20,\n                20,\n                -24,\n                25,\n                -24,\n                26,\n                -22,\n                21,\n                -19,\n                19,\n                -17,\n                21,\n                -23,\n                19,\n                -23,\n                27,\n                -18,\n                17,\n                -21,\n                24,\n                -21,\n                20,\n                -19,\n                18,\n                -24,\n                19,\n                -23,\n                20,\n                -27,\n                28,\n                -31,\n                33,\n                -37,\n                34,\n                -59,\n                43,\n                -58,\n                54,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -115,\n                118,\n                -109,\n                120,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                124,\n                -128,\n                126,\n                -121,\n                127,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                127,\n                -124,\n                127,\n                -122,\n                125,\n                -128,\n                126,\n                -127,\n                125,\n                -125,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -124,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -124,\n                118,\n                -124,\n                123,\n                -127,\n                126,\n                -126,\n                110,\n                -109,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -120,\n                119,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -126,\n                127,\n                -126,\n                111,\n                -128,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -120,\n                126,\n                -122,\n                120,\n                -123,\n                123,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -116,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                119,\n                -120,\n                127,\n                -118,\n                119,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                124,\n                -105,\n                119,\n                -128,\n                127,\n                -125,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -126,\n                127,\n                -124,\n                125,\n                -124,\n                125,\n                -116,\n                124,\n                -124,\n                127,\n                -127,\n                124,\n                -127,\n                127,\n                -122,\n                115,\n                -96,\n                103,\n                -122,\n                123,\n                -104,\n                95,\n                -124,\n                119,\n                -93,\n                79,\n                -83,\n                108,\n                -121,\n                104,\n                -93,\n                98,\n                -106,\n                97,\n                -60,\n                65,\n                -89,\n                86,\n                -56,\n                55,\n                -59,\n                52,\n                -68,\n                73,\n                -69,\n                56,\n                -81,\n                81,\n                -88,\n                87,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                123,\n                -119,\n                127,\n                -121,\n                126,\n                -127,\n                125,\n                -127,\n                127,\n                -119,\n                126,\n                -115,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -126,\n                123,\n                -122,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -123,\n                125,\n                -126,\n                124,\n                -126,\n                124,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                122,\n                -125,\n                127,\n                -119,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -119,\n                124,\n                -127,\n                116,\n                -123,\n                125,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                118,\n                -127,\n                126,\n                -112,\n                126,\n                -125,\n                127,\n                -126,\n                119,\n                -119,\n                121,\n                -122,\n                120,\n                -127,\n                112,\n                -128,\n                127,\n                -126,\n                127,\n                -114,\n                125,\n                -117,\n                124,\n                -104,\n                118,\n                -126,\n                127,\n                -125,\n                111,\n                -117,\n                109,\n                -109,\n                104,\n                -89,\n                102,\n                -128,\n                126,\n                -121,\n                122,\n                -128,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -124,\n                126,\n                -96,\n                104,\n                -81,\n                72,\n                -39,\n                58,\n                -21,\n                23,\n                -18,\n                12,\n                -4,\n                5,\n                -2,\n                3,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640570\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"A Violent End\",\n            \"slug\": \"wpm091-13\",\n            \"longSlug\": \"wpm091-13-a-violent-end-main\",\n            \"originalFilename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900292\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 13,\n            \"versionNumber\": 0,\n            \"bpm\": 80,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"A Violent End\",\n                \"TRACK: Display Title\": \"A Violent End\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A dark, slow-paced and hauntingly atmospheric intro segues into intense, pounding drumming, gradually building towards the finale.\",\n                \"TRACK: Number\": \"013\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"80\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"99a7dd89e954e163eee49516525a559c75da3904\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Halloween, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900292\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"halloween\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-13\",\n            \"createdAt\": \"2020-08-18T22:17:59.132Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059a_WPM091_TK013_A_VIOLENT_END_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Halloween\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Halloween\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059b\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                116,\n                -113,\n                103,\n                -126,\n                126,\n                -122,\n                123,\n                -120,\n                126,\n                -94,\n                98,\n                -114,\n                123,\n                -115,\n                110,\n                -123,\n                127,\n                -126,\n                127,\n                -105,\n                98,\n                -117,\n                105,\n                -127,\n                124,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                116,\n                -123,\n                122,\n                -128,\n                127,\n                -122,\n                125,\n                -126,\n                126,\n                -107,\n                114,\n                -103,\n                111,\n                -127,\n                125,\n                -120,\n                126,\n                -120,\n                125,\n                -101,\n                112,\n                -119,\n                118,\n                -118,\n                107,\n                -119,\n                126,\n                -127,\n                127,\n                -96,\n                91,\n                -119,\n                123,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                125,\n                -123,\n                117,\n                -126,\n                127,\n                -107,\n                92,\n                -126,\n                123,\n                -126,\n                126,\n                -102,\n                102,\n                -126,\n                126,\n                -106,\n                110,\n                -127,\n                126,\n                -118,\n                124,\n                -105,\n                110,\n                -119,\n                122,\n                -122,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -101,\n                97,\n                -126,\n                124,\n                -128,\n                124,\n                -116,\n                97,\n                -127,\n                125,\n                -127,\n                120,\n                -126,\n                127,\n                -125,\n                124,\n                -91,\n                114,\n                -128,\n                127,\n                -128,\n                121,\n                -126,\n                126,\n                -126,\n                127,\n                -123,\n                120,\n                -127,\n                126,\n                -115,\n                126,\n                -118,\n                112,\n                -128,\n                126,\n                -125,\n                126,\n                -106,\n                126,\n                -119,\n                125,\n                -125,\n                126,\n                -128,\n                126,\n                -126,\n                124,\n                -127,\n                127,\n                -118,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -125,\n                125,\n                -121,\n                123,\n                -124,\n                114,\n                -126,\n                120,\n                -127,\n                127,\n                -128,\n                126,\n                -115,\n                126,\n                -126,\n                118,\n                -126,\n                124,\n                -124,\n                127,\n                -125,\n                127,\n                -127,\n                121,\n                -127,\n                120,\n                -125,\n                124,\n                -127,\n                125,\n                -123,\n                126,\n                -122,\n                126,\n                -128,\n                124,\n                -120,\n                123,\n                -127,\n                127,\n                -127,\n                127,\n                -117,\n                116,\n                -127,\n                125,\n                -126,\n                118,\n                -127,\n                126,\n                -125,\n                125,\n                -112,\n                124,\n                -121,\n                115,\n                -125,\n                124,\n                -117,\n                126,\n                -126,\n                127,\n                -110,\n                108,\n                -127,\n                126,\n                -125,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                121,\n                -126,\n                120,\n                -125,\n                126,\n                -109,\n                125,\n                -128,\n                127,\n                -100,\n                101,\n                -79,\n                85,\n                -71,\n                76,\n                -40,\n                42,\n                -89,\n                83,\n                -28,\n                27,\n                -33,\n                41,\n                -66,\n                64,\n                -54,\n                76,\n                -67,\n                68,\n                -29,\n                28,\n                -36,\n                28,\n                -91,\n                91,\n                -54,\n                61,\n                -74,\n                64,\n                -20,\n                19,\n                -56,\n                55,\n                -61,\n                66,\n                -121,\n                126,\n                -88,\n                87,\n                -96,\n                117,\n                -84,\n                88,\n                -103,\n                98,\n                -100,\n                105,\n                -113,\n                105,\n                -78,\n                63,\n                -100,\n                114,\n                -86,\n                103,\n                -90,\n                127,\n                -119,\n                107,\n                -61,\n                57,\n                -103,\n                119,\n                -109,\n                119,\n                -89,\n                103,\n                -93,\n                96,\n                -63,\n                85,\n                -90,\n                115,\n                -100,\n                124,\n                -124,\n                127,\n                -104,\n                120,\n                -93,\n                94,\n                -109,\n                124,\n                -118,\n                125,\n                -102,\n                97,\n                -95,\n                104,\n                -91,\n                97,\n                -96,\n                118,\n                -112,\n                124,\n                -106,\n                126,\n                -124,\n                125,\n                -93,\n                86,\n                -106,\n                123,\n                -80,\n                90,\n                -105,\n                113,\n                -127,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -120,\n                116,\n                -126,\n                127,\n                -126,\n                123,\n                -107,\n                125,\n                -107,\n                123,\n                -126,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                125,\n                -123,\n                125,\n                -120,\n                97,\n                -127,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                123,\n                -113,\n                125,\n                -125,\n                119,\n                -128,\n                125,\n                -126,\n                125,\n                -122,\n                127,\n                -116,\n                119,\n                -125,\n                125,\n                -124,\n                127,\n                -126,\n                127,\n                -123,\n                126,\n                -122,\n                119,\n                -121,\n                127,\n                -124,\n                126,\n                -127,\n                122,\n                -110,\n                107,\n                -118,\n                116,\n                -120,\n                127,\n                -126,\n                127,\n                -128,\n                124,\n                -125,\n                111,\n                -124,\n                127,\n                -127,\n                121,\n                -123,\n                127,\n                -128,\n                127,\n                -106,\n                90,\n                -128,\n                119,\n                -112,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -116,\n                116,\n                -122,\n                125,\n                -127,\n                122,\n                -127,\n                127,\n                -128,\n                122,\n                -120,\n                104,\n                -125,\n                125,\n                -127,\n                120,\n                -127,\n                125,\n                -126,\n                114,\n                -126,\n                123,\n                -125,\n                122,\n                -111,\n                127,\n                -126,\n                126,\n                -123,\n                125,\n                -111,\n                122,\n                -124,\n                120,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -123,\n                107,\n                -127,\n                126,\n                -125,\n                127,\n                -124,\n                124,\n                -123,\n                124,\n                -124,\n                97,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                122,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                125,\n                -126,\n                127,\n                -128,\n                117,\n                -123,\n                127,\n                -117,\n                117,\n                -114,\n                123,\n                -127,\n                127,\n                -128,\n                121,\n                -113,\n                120,\n                -124,\n                117,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -114,\n                114,\n                -124,\n                123,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -110,\n                95,\n                -123,\n                120,\n                -125,\n                127,\n                -128,\n                127,\n                -125,\n                124,\n                -124,\n                126,\n                -120,\n                125,\n                -126,\n                125,\n                -123,\n                127,\n                -124,\n                124,\n                -124,\n                112,\n                -108,\n                124,\n                -126,\n                123,\n                -124,\n                127,\n                -127,\n                127,\n                -128,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -100,\n                98,\n                -91,\n                88,\n                -60,\n                62,\n                -44,\n                44,\n                -29,\n                24,\n                -19,\n                18,\n                -11,\n                11,\n                -9,\n                11,\n                -5,\n                5,\n                -3,\n                4,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2325\",\n                \"5f3c51ce801b650015640562\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634e5\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Gathering Hoard\",\n            \"slug\": \"wpm091-25\",\n            \"longSlug\": \"wpm091-25-the-gathering-hoard-main\",\n            \"originalFilename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900304\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 25,\n            \"versionNumber\": 0,\n            \"bpm\": 85,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Gathering Hoard\",\n                \"TRACK: Display Title\": \"The Gathering Hoard\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"Dark and intense, the layered drums and tambourines breaking down to one ominous tribal drum at the midway point before ending on a heavy, mid-tempo rhythm.\",\n                \"TRACK: Number\": \"025\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"179\",\n                \"TRACK: BPM\": \"85\",\n                \"TRACK: Tempo\": \"Medium\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"46addaa4a408f1e0e121690aa093e48dac864e40\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Mysterious, Mystical, Building, Rising, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900304\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"building\",\n                    \"rising\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-25\",\n            \"createdAt\": \"2020-08-18T22:17:59.138Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:02:59\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059b_WPM091_TK025_THE_GATHERING_HOARD_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Building\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Building\"\n                },\n                {\n                    \"id\": \"Keywords→Rising\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Rising\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"\",\n                    \"name\": \"Medium\"\n                }\n            ],\n            \"durationMs\": 179000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059c\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -127,\n                127,\n                -106,\n                120,\n                -114,\n                88,\n                -79,\n                103,\n                -78,\n                85,\n                -115,\n                127,\n                -126,\n                125,\n                -111,\n                124,\n                -95,\n                107,\n                -82,\n                103,\n                -102,\n                102,\n                -127,\n                127,\n                -115,\n                126,\n                -97,\n                94,\n                -81,\n                93,\n                -93,\n                94,\n                -98,\n                110,\n                -124,\n                127,\n                -113,\n                117,\n                -100,\n                121,\n                -81,\n                90,\n                -100,\n                125,\n                -126,\n                125,\n                -125,\n                124,\n                -111,\n                108,\n                -75,\n                105,\n                -76,\n                76,\n                -106,\n                102,\n                -127,\n                126,\n                -104,\n                122,\n                -106,\n                102,\n                -96,\n                101,\n                -90,\n                96,\n                -125,\n                127,\n                -127,\n                125,\n                -99,\n                103,\n                -91,\n                96,\n                -64,\n                82,\n                -88,\n                106,\n                -127,\n                127,\n                -116,\n                117,\n                -113,\n                104,\n                -87,\n                94,\n                -102,\n                125,\n                -125,\n                123,\n                -126,\n                114,\n                -114,\n                117,\n                -121,\n                105,\n                -86,\n                90,\n                -99,\n                108,\n                -126,\n                127,\n                -119,\n                119,\n                -114,\n                126,\n                -111,\n                93,\n                -114,\n                125,\n                -125,\n                127,\n                -124,\n                110,\n                -120,\n                127,\n                -123,\n                108,\n                -93,\n                112,\n                -88,\n                100,\n                -128,\n                127,\n                -121,\n                118,\n                -127,\n                121,\n                -107,\n                116,\n                -103,\n                124,\n                -127,\n                126,\n                -122,\n                121,\n                -125,\n                108,\n                -113,\n                108,\n                -100,\n                120,\n                -99,\n                99,\n                -125,\n                124,\n                -127,\n                125,\n                -115,\n                125,\n                -112,\n                118,\n                -115,\n                124,\n                -111,\n                117,\n                -126,\n                124,\n                -126,\n                122,\n                -120,\n                107,\n                -99,\n                115,\n                -109,\n                100,\n                -119,\n                119,\n                -127,\n                127,\n                -110,\n                123,\n                -120,\n                123,\n                -103,\n                124,\n                -122,\n                122,\n                -126,\n                127,\n                -123,\n                125,\n                -116,\n                109,\n                -105,\n                119,\n                -113,\n                108,\n                -118,\n                118,\n                -127,\n                125,\n                -125,\n                121,\n                -120,\n                124,\n                -105,\n                122,\n                -113,\n                115,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                125,\n                -99,\n                121,\n                -111,\n                97,\n                -115,\n                120,\n                -128,\n                127,\n                -121,\n                124,\n                -126,\n                127,\n                -118,\n                118,\n                -123,\n                115,\n                -121,\n                127,\n                -125,\n                127,\n                -127,\n                126,\n                -117,\n                112,\n                -108,\n                96,\n                -118,\n                115,\n                -128,\n                127,\n                -118,\n                126,\n                -124,\n                124,\n                -96,\n                90,\n                -114,\n                123,\n                -127,\n                126,\n                -124,\n                117,\n                -112,\n                126,\n                -121,\n                106,\n                -112,\n                119,\n                -114,\n                112,\n                -123,\n                125,\n                -123,\n                125,\n                -124,\n                126,\n                -103,\n                108,\n                -117,\n                125,\n                -127,\n                127,\n                -126,\n                125,\n                -111,\n                113,\n                -101,\n                93,\n                -92,\n                96,\n                -83,\n                96,\n                -78,\n                76,\n                -100,\n                109,\n                -101,\n                72,\n                -57,\n                61,\n                -97,\n                60,\n                -60,\n                62,\n                -126,\n                127,\n                -105,\n                105,\n                -102,\n                94,\n                -69,\n                89,\n                -73,\n                68,\n                -61,\n                80,\n                -73,\n                100,\n                -66,\n                54,\n                -56,\n                72,\n                -91,\n                79,\n                -92,\n                86,\n                -126,\n                127,\n                -113,\n                93,\n                -102,\n                109,\n                -81,\n                95,\n                -68,\n                96,\n                -87,\n                76,\n                -92,\n                76,\n                -80,\n                80,\n                -62,\n                57,\n                -110,\n                71,\n                -78,\n                81,\n                -126,\n                127,\n                -86,\n                92,\n                -80,\n                75,\n                -88,\n                70,\n                -74,\n                100,\n                -64,\n                67,\n                -63,\n                66,\n                -66,\n                89,\n                -71,\n                69,\n                -92,\n                72,\n                -62,\n                60,\n                -127,\n                127,\n                -123,\n                116,\n                -87,\n                87,\n                -116,\n                98,\n                -76,\n                88,\n                -90,\n                97,\n                -66,\n                78,\n                -86,\n                96,\n                -104,\n                113,\n                -93,\n                69,\n                -62,\n                68,\n                -128,\n                127,\n                -103,\n                109,\n                -101,\n                92,\n                -125,\n                100,\n                -71,\n                88,\n                -80,\n                89,\n                -64,\n                85,\n                -76,\n                94,\n                -84,\n                75,\n                -112,\n                94,\n                -96,\n                86,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -119,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -120,\n                127,\n                -128,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -121,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -125,\n                126,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -116,\n                127,\n                -119,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -117,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -126,\n                127,\n                -125,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                124,\n                -126,\n                127,\n                -121,\n                126,\n                -123,\n                127,\n                -127,\n                124,\n                -126,\n                127,\n                -128,\n                127,\n                -122,\n                123,\n                -105,\n                120,\n                -123,\n                126,\n                -100,\n                118,\n                -119,\n                117,\n                -127,\n                126,\n                -120,\n                122,\n                -98,\n                94,\n                -81,\n                90,\n                -55,\n                55,\n                -51,\n                47,\n                -51,\n                44,\n                -63,\n                59,\n                -88,\n                85,\n                -84,\n                80,\n                -84,\n                68,\n                -65,\n                70,\n                -63,\n                75,\n                -79,\n                67,\n                -80,\n                73,\n                -80,\n                56,\n                -48,\n                47,\n                -48,\n                52,\n                -38,\n                37,\n                -35,\n                35,\n                -30,\n                30,\n                -33,\n                32,\n                -21,\n                20,\n                -15,\n                15,\n                -9,\n                10,\n                -8,\n                7,\n                -5,\n                4,\n                -4,\n                4,\n                -2,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                -1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"The Hunt\",\n            \"slug\": \"wpm091-4\",\n            \"longSlug\": \"wpm091-4-the-hunt-main\",\n            \"originalFilename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900283\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 4,\n            \"versionNumber\": 0,\n            \"bpm\": 135,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"The Hunt\",\n                \"TRACK: Display Title\": \"The Hunt\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An intense, high-energy track featuring hypnotic, multi-layered tribal drums and disquieting synth drones.\",\n                \"TRACK: Number\": \"004\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"199\",\n                \"TRACK: BPM\": \"135\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"8a55db4b2567868ab8b08d39941c7d62951bbc98\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900283\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-4\",\n            \"createdAt\": \"2020-08-18T22:17:59.151Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:19\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059c_WPM091_TK004_THE_HUNT_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 199000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059d\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -46,\n                48,\n                -72,\n                57,\n                -60,\n                49,\n                -48,\n                45,\n                -68,\n                60,\n                -71,\n                55,\n                -47,\n                51,\n                -56,\n                50,\n                -52,\n                48,\n                -55,\n                73,\n                -58,\n                66,\n                -68,\n                50,\n                -68,\n                56,\n                -127,\n                127,\n                -118,\n                124,\n                -126,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -124,\n                125,\n                -119,\n                127,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                126,\n                -123,\n                127,\n                -119,\n                120,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -122,\n                127,\n                -128,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                126,\n                -119,\n                106,\n                -128,\n                127,\n                -123,\n                127,\n                -126,\n                127,\n                -126,\n                126,\n                -126,\n                126,\n                -125,\n                125,\n                -106,\n                121,\n                -128,\n                127,\n                -128,\n                127,\n                -122,\n                125,\n                -124,\n                127,\n                -127,\n                123,\n                -127,\n                121,\n                -127,\n                127,\n                -125,\n                125,\n                -123,\n                127,\n                -125,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -123,\n                123,\n                -124,\n                127,\n                -128,\n                127,\n                -119,\n                125,\n                -122,\n                127,\n                -123,\n                120,\n                -113,\n                124,\n                -128,\n                127,\n                -110,\n                123,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -126,\n                127,\n                -122,\n                125,\n                -114,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -125,\n                125,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                127,\n                -117,\n                126,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -125,\n                119,\n                -127,\n                125,\n                -127,\n                127,\n                -127,\n                125,\n                -125,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -111,\n                124,\n                -127,\n                127,\n                -125,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -127,\n                125,\n                -127,\n                123,\n                -126,\n                127,\n                -127,\n                125,\n                -115,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -128,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -127,\n                124,\n                -125,\n                126,\n                -125,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -122,\n                127,\n                -126,\n                127,\n                -110,\n                125,\n                -128,\n                126,\n                -127,\n                127,\n                -127,\n                125,\n                -126,\n                127,\n                -126,\n                123,\n                -128,\n                127,\n                -125,\n                126,\n                -126,\n                127,\n                -122,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -122,\n                127,\n                -124,\n                122,\n                -128,\n                127,\n                -126,\n                125,\n                -104,\n                127,\n                -128,\n                127,\n                -124,\n                111,\n                -76,\n                85,\n                -50,\n                56,\n                -37,\n                31,\n                -25,\n                21,\n                -17,\n                19,\n                -17,\n                17,\n                -16,\n                16,\n                -12,\n                13,\n                -9,\n                10,\n                -14,\n                12,\n                -12,\n                11,\n                -11,\n                13,\n                -8,\n                8,\n                -10,\n                8,\n                -7,\n                8,\n                -9,\n                8,\n                -12,\n                9,\n                -13,\n                13,\n                -16,\n                15,\n                -20,\n                22,\n                -21,\n                21,\n                -20,\n                20,\n                -17,\n                18,\n                -18,\n                18,\n                -73,\n                75,\n                -72,\n                59,\n                -61,\n                60,\n                -67,\n                112,\n                -66,\n                77,\n                -65,\n                70,\n                -50,\n                47,\n                -78,\n                73,\n                -87,\n                77,\n                -58,\n                58,\n                -102,\n                104,\n                -68,\n                74,\n                -64,\n                60,\n                -52,\n                49,\n                -81,\n                87,\n                -55,\n                56,\n                -49,\n                57,\n                -21,\n                22,\n                -15,\n                15,\n                -8,\n                9,\n                -11,\n                10,\n                -11,\n                13,\n                -11,\n                10,\n                -8,\n                8,\n                -9,\n                13,\n                -11,\n                12,\n                -12,\n                12,\n                -126,\n                127,\n                -125,\n                124,\n                -127,\n                126,\n                -125,\n                125,\n                -123,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -125,\n                126,\n                -125,\n                124,\n                -126,\n                126,\n                -126,\n                126,\n                -123,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -118,\n                124,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                121,\n                -127,\n                127,\n                -123,\n                127,\n                -127,\n                127,\n                -120,\n                126,\n                -126,\n                127,\n                -115,\n                125,\n                -100,\n                98,\n                -128,\n                127,\n                -125,\n                117,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -127,\n                124,\n                -127,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -127,\n                127,\n                -125,\n                124,\n                -124,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -124,\n                126,\n                -127,\n                126,\n                -122,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                124,\n                -128,\n                127,\n                -119,\n                127,\n                -100,\n                115,\n                -128,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -123,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -124,\n                127,\n                -128,\n                127,\n                -122,\n                127,\n                -122,\n                124,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -125,\n                122,\n                -127,\n                127,\n                -126,\n                125,\n                -127,\n                127,\n                -124,\n                126,\n                -126,\n                124,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                125,\n                -120,\n                125,\n                -121,\n                125,\n                -116,\n                127,\n                -121,\n                127,\n                -127,\n                127,\n                -107,\n                107,\n                -120,\n                98,\n                -102,\n                106,\n                -108,\n                95,\n                -79,\n                73,\n                -126,\n                126,\n                -117,\n                110,\n                -103,\n                100,\n                -100,\n                101,\n                -91,\n                93,\n                -111,\n                99,\n                -99,\n                103,\n                -126,\n                126,\n                -100,\n                107,\n                -95,\n                110,\n                -52,\n                67,\n                -48,\n                49,\n                -45,\n                41,\n                -34,\n                37,\n                -31,\n                31,\n                -23,\n                19,\n                -19,\n                16,\n                -12,\n                14,\n                -11,\n                8,\n                -7,\n                7,\n                -5,\n                5,\n                -3,\n                3,\n                -2,\n                2,\n                -1,\n                2,\n                -1,\n                1,\n                -1,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5dd3d83ccebea900148b726e\",\n                \"5f3c51ce801b650015640569\",\n                \"5f3c51ce801b650015640571\",\n                \"5e3c524d94532a0014a05a07\",\n                \"5e3c524d94532a0014a059f4\",\n                \"5ed79cc394e6680014c1cf69\",\n                \"5dd3d83cae2b950014ef234d\",\n                \"5ec6598dcd35e20014b8d0b7\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef233b\",\n                \"5dd3d83cae2b950014ef2332\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5e3c524d94532a0014a05a08\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634c2\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Battleground\",\n            \"slug\": \"wpm091-10\",\n            \"longSlug\": \"wpm091-10-battleground-main\",\n            \"originalFilename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900289\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 10,\n            \"versionNumber\": 0,\n            \"bpm\": 119,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Battleground\",\n                \"TRACK: Display Title\": \"Battleground\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"An ominous, mid-tempo track featuring steady, pounding drums with dark layered synths that eventually give way to a beautifully ambient, guitar led finale.\",\n                \"TRACK: Number\": \"010\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"191\",\n                \"TRACK: BPM\": \"119\",\n                \"TRACK: Tempo\": \"Medium-Fast\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense, Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"04355e38594b78825f8ca834214c558c7c4af9ef\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Dark, Gloomy, Negative, Haunting, Aggressive, Hard, Heavy, Tough, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Military, War, Video Games, Action, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Horror\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900289\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-fast\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"dark\",\n                    \"gloomy\",\n                    \"negative\",\n                    \"haunting\",\n                    \"aggressive\",\n                    \"hard\",\n                    \"heavy\",\n                    \"tough\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"military\",\n                    \"war\",\n                    \"video-games\",\n                    \"action\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"horror\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-10\",\n            \"createdAt\": \"2020-08-18T22:17:59.157Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:11\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059d_WPM091_TK010_BATTLEGROUND_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Dark\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dark\"\n                },\n                {\n                    \"id\": \"Genre→Gloomy\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Gloomy\"\n                },\n                {\n                    \"id\": \"Mood→Negative\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Negative\"\n                },\n                {\n                    \"id\": \"Keywords→Haunting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Haunting\"\n                },\n                {\n                    \"id\": \"Keywords→Aggressive\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Aggressive\"\n                },\n                {\n                    \"id\": \"Mood→Hard\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Hard\"\n                },\n                {\n                    \"id\": \"Keywords→Heavy\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Heavy\"\n                },\n                {\n                    \"id\": \"Mood→Tough\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tough\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Keywords→Military\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Military\"\n                },\n                {\n                    \"id\": \"Keywords→War\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"War\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Keywords→Horror\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Horror\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Fast\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Fast\"\n                }\n            ],\n            \"durationMs\": 191000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        },\n        {\n            \"_id\": \"5f3c5397801b65001564059e\",\n            \"isPublished\": true,\n            \"state\": \"available\",\n            \"waveformData\": [\n                -126,\n                127,\n                -101,\n                109,\n                -123,\n                124,\n                -113,\n                106,\n                -96,\n                109,\n                -127,\n                125,\n                -95,\n                108,\n                -99,\n                114,\n                -98,\n                108,\n                -95,\n                110,\n                -126,\n                126,\n                -90,\n                112,\n                -103,\n                102,\n                -114,\n                115,\n                -106,\n                110,\n                -126,\n                124,\n                -94,\n                109,\n                -109,\n                103,\n                -99,\n                114,\n                -97,\n                109,\n                -127,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -108,\n                114,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                127,\n                -79,\n                94,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -96,\n                90,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -84,\n                103,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -104,\n                123,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -95,\n                105,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -96,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -116,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                125,\n                -126,\n                127,\n                -90,\n                119,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                126,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -87,\n                96,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -84,\n                105,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                106,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -124,\n                126,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                125,\n                -128,\n                127,\n                -128,\n                127,\n                -117,\n                122,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -113,\n                110,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                125,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -117,\n                126,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                123,\n                -125,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -90,\n                96,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                126,\n                -86,\n                101,\n                -127,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -121,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                127,\n                -127,\n                127,\n                -124,\n                125,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                127,\n                -116,\n                119,\n                -127,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -105,\n                116,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -102,\n                124,\n                -127,\n                127,\n                -128,\n                127,\n                -123,\n                127,\n                -128,\n                127,\n                -103,\n                125,\n                -127,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -84,\n                110,\n                -128,\n                126,\n                -126,\n                127,\n                -127,\n                127,\n                -126,\n                127,\n                -91,\n                101,\n                -125,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -128,\n                126,\n                -121,\n                127,\n                -128,\n                127,\n                -127,\n                127,\n                -128,\n                127,\n                -99,\n                118,\n                -116,\n                102,\n                -121,\n                122,\n                -118,\n                121,\n                -127,\n                124,\n                -126,\n                114,\n                -101,\n                114,\n                -115,\n                110,\n                -112,\n                118,\n                -103,\n                110,\n                -127,\n                127,\n                -126,\n                125,\n                -126,\n                126,\n                -128,\n                127,\n                -126,\n                126,\n                -127,\n                126,\n                -126,\n                126,\n                -122,\n                125,\n                -126,\n                126,\n                -127,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -126,\n                126,\n                -127,\n                125,\n                -128,\n                127,\n                -127,\n                127,\n                -119,\n                117,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                116,\n                -125,\n                125,\n                -125,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -101,\n                122,\n                -127,\n                125,\n                -113,\n                126,\n                -117,\n                119,\n                -127,\n                127,\n                -124,\n                125,\n                -126,\n                126,\n                -126,\n                126,\n                -107,\n                105,\n                -127,\n                126,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                127,\n                -128,\n                125,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -127,\n                126,\n                -126,\n                125,\n                -122,\n                125,\n                -127,\n                126,\n                -128,\n                127,\n                -128,\n                126,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                125,\n                -127,\n                127,\n                -127,\n                127,\n                -125,\n                127,\n                -121,\n                123,\n                -126,\n                126,\n                -124,\n                119,\n                -127,\n                127,\n                -126,\n                126,\n                -125,\n                121,\n                -128,\n                127,\n                -125,\n                107,\n                -128,\n                127,\n                -124,\n                127,\n                -127,\n                127,\n                -127,\n                126,\n                -126,\n                126,\n                -128,\n                127,\n                -106,\n                126,\n                -126,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -128,\n                127,\n                -102,\n                125,\n                -127,\n                125,\n                -127,\n                126,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                126,\n                -127,\n                127,\n                -128,\n                127,\n                -128,\n                127,\n                -126,\n                126,\n                -128,\n                127,\n                -125,\n                125,\n                -127,\n                126,\n                -127,\n                126,\n                -126,\n                106,\n                -128,\n                126,\n                -128,\n                127,\n                -128,\n                127,\n                -112,\n                126,\n                -125,\n                125,\n                -126,\n                127,\n                -127,\n                127,\n                -116,\n                124,\n                -127,\n                126,\n                -126,\n                126,\n                -126,\n                126,\n                -36,\n                40,\n                -21,\n                22,\n                -10,\n                10,\n                -7,\n                7,\n                -5,\n                5,\n                -5,\n                4,\n                -4,\n                3,\n                -4,\n                3,\n                -2,\n                2,\n                -1,\n                1,\n                0,\n                1,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0,\n                0\n            ],\n            \"tagIds\": [\n                \"5dd3d83cae2b950014ef2326\",\n                \"5dd3d83cae2b950014ef231d\",\n                \"5f3c5396801b650015640597\",\n                \"5f3c51ce801b65001564056f\",\n                \"5e3c529994532a0014a05a4c\",\n                \"5e3c529994532a0014a05a45\",\n                \"5e3c524d94532a0014a059eb\",\n                \"5ddff02594ffd500144634b4\",\n                \"5e3959c3ea2aff00141202ba\",\n                \"5ddff02594ffd50014463497\",\n                \"5e3c524d94532a0014a059e9\",\n                \"5e3c524d94532a0014a059ea\",\n                \"5dd3d83ccebea900148b7279\",\n                \"5ed7e0232f47de00149639f0\",\n                \"5ed7e0252f47de0014963a40\",\n                \"5f3c51ce801b650015640563\",\n                \"5e3c529b94532a0014a05b00\",\n                \"5f3c51ce801b650015640566\",\n                \"5e3c524d94532a0014a05a12\",\n                \"5f3c51ce801b650015640567\",\n                \"5dd3d83cae2b950014ef2323\",\n                \"5dd3d83cae2b950014ef234f\",\n                \"5f3c5396801b650015640595\",\n                \"5dd3d83cae2b950014ef231b\",\n                \"5f3c51ce801b65001564056d\",\n                \"5ed79cc394e6680014c1cf72\",\n                \"5f3c51ce801b650015640565\",\n                \"5ddff02594ffd500144634d0\",\n                \"5ec6598dcd35e20014b8d0cb\",\n                \"5f3c5396801b650015640594\",\n                \"5f3c51ce801b650015640575\",\n                \"5f23eb754fb37f0015aa2ff7\",\n                \"5f3c51ce801b650015640561\",\n                \"5dd3d83ccebea900148b7274\",\n                \"5f3c51ce801b650015640564\",\n                \"5ed7e0232f47de00149639c2\",\n                \"5f23eb754fb37f0015aa2ffd\",\n                \"5f3c5396801b650015640596\",\n                \"5f3c51ce801b65001564056e\",\n                \"5e3959c4ea2aff0014120337\",\n                \"5ed79b9994e6680014c1cf22\",\n                \"5ddff02594ffd500144634aa\",\n                \"5f3c51ce801b650015640568\"\n            ],\n            \"groupIds\": [\n                \"6631178b607beed7317eb159\",\n                \"5d5ea84b3a452e00148959ac\",\n                \"5e3a98fa934e030014c98d19\"\n            ],\n            \"composerIds\": [\n                \"5f3c5396801b650015640593\"\n            ],\n            \"title\": \"Ultramarine\",\n            \"slug\": \"wpm091-16\",\n            \"longSlug\": \"wpm091-16-ultramarine-main\",\n            \"originalFilename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n            \"versionTitle\": \"Main\",\n            \"orgSlug\": \"demo\",\n            \"isMain\": true,\n            \"catalogueNumber\": \"WPM091\",\n            \"releaseDate\": \"2019-09-20\",\n            \"releaseTitleEn\": \"Mark Heaney's Cine Drums\",\n            \"isrc\": \"GBUDZ1900295\",\n            \"lyrics\": \"\",\n            \"trackNumber\": 16,\n            \"versionNumber\": 0,\n            \"bpm\": 71,\n            \"rawImport\": {\n                \"LIBRARY: Name\": \"WRONG PLANET\",\n                \"ALBUM: Code\": \"WPM091\",\n                \"ALBUM: Identity\": \"36f9bec1ddacb27ec49d10978f635dc733065b73\",\n                \"ALBUM: Title\": \"Mark Heaney's Cine Drums\",\n                \"ALBUM: Display Title\": \"WPM091 - Mark Heaney's Cine Drums\",\n                \"ALBUM: Description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"ALBUM: Keywords\": \"\",\n                \"ALBUM: Tags\": \"\",\n                \"ALBUM: Styles\": \"\",\n                \"ALBUM: Release Date\": \"2019-09-20\",\n                \"ALBUM: Artwork Filename\": \"albumart.jpg\",\n                \"TRACK: Title\": \"Ultramarine\",\n                \"TRACK: Display Title\": \"Ultramarine\",\n                \"TRACK: Alternate Title\": \"\",\n                \"TRACK: Description\": \"A pensive, dream-like track featuring a simple, atmospheric synth and pounding bass drum Ð swiftly joined by a quick-step, snare-led drum beat.\",\n                \"TRACK: Number\": \"016\",\n                \"TRACK: Is Main\": \"Y\",\n                \"TRACK: Main Track Number\": \"\",\n                \"TRACK: Version\": \"Main\",\n                \"TRACK: Duration\": \"206\",\n                \"TRACK: BPM\": \"71\",\n                \"TRACK: Tempo\": \"Medium-Slow\",\n                \"TRACK: Genre\": \"Solo Drums, Soundtrack, Sound Design, Trailer\",\n                \"TRACK: Mixout\": \"\",\n                \"TRACK: Instrumentation\": \"Percussion, Synth, Acoustic Drums, Electronic Drums\",\n                \"TRACK: Keywords\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense, Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"TRACK: Lyrics\": \"\",\n                \"TRACK: Identity\": \"a45cbb14fd4e039b9aaa51f25e470bc22b93f193\",\n                \"TRACK: Category Codes\": \"\",\n                \"TRACK: Composer(s)\": \"Mark Heaney\",\n                \"TRACK: Publisher(s)\": \"Keep Clear Music Ltd\",\n                \"TRACK: Artist(s)\": \"Mark Heaney\",\n                \"TRACK: Audio Filename\": \"WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n                \"TRACK: Mood\": \"Confident, Cool, Dramatic, Exciting, Energetic, Lively, Dynamic, Cinematic, Epic, Tense, Suspenseful, Uneasy, Neutral, Emotionless, Mysterious, Mystical, Intense\",\n                \"TRACK: Music For\": \"Drama, Video Games, Action, Documentaries, Science Fiction, Trailers, Promo, Adventure, Fantasy, Chase Scenes, Tension, Automotive, Driving, Commercials, Advertising, Crime\",\n                \"WRITER:1: First Name\": \"Mark\",\n                \"WRITER:1: Middle Name\": \"\",\n                \"WRITER:1: Last Name\": \"Heaney\",\n                \"WRITER:1: Capacity\": \"Composer\",\n                \"WRITER:1: Society\": \"PRS\",\n                \"WRITER:1: IPI\": \"603389552\",\n                \"WRITER:1: Territory\": \"WORLD\",\n                \"WRITER:1: Owner Performance Share %\": \"100.00\",\n                \"WRITER:1: Owner Mechanical Share %\": \"0.00\",\n                \"WRITER:1: Original Publisher\": \"Keep Clear Music Ltd\",\n                \"WRITER:2: First Name\": \"\",\n                \"WRITER:2: Middle Name\": \"\",\n                \"WRITER:2: Last Name\": \"\",\n                \"WRITER:2: Capacity\": \"\",\n                \"WRITER:2: Society\": \"\",\n                \"WRITER:2: IPI\": \"\",\n                \"WRITER:2: Territory\": \"\",\n                \"WRITER:2: Owner Performance Share %\": \"\",\n                \"WRITER:2: Owner Mechanical Share %\": \"\",\n                \"WRITER:2: Original Publisher\": \"\",\n                \"WRITER:3: First Name\": \"\",\n                \"WRITER:3: Middle Name\": \"\",\n                \"WRITER:3: Last Name\": \"\",\n                \"WRITER:3: Capacity\": \"\",\n                \"WRITER:3: Society\": \"\",\n                \"WRITER:3: IPI\": \"\",\n                \"WRITER:3: Territory\": \"\",\n                \"WRITER:3: Owner Performance Share %\": \"\",\n                \"WRITER:3: Owner Mechanical Share %\": \"\",\n                \"WRITER:3: Original Publisher\": \"\",\n                \"WRITER:4: First Name\": \"\",\n                \"WRITER:4: Middle Name\": \"\",\n                \"WRITER:4: Last Name\": \"\",\n                \"WRITER:4: Capacity\": \"\",\n                \"WRITER:4: Society\": \"\",\n                \"WRITER:4: IPI\": \"\",\n                \"WRITER:4: Territory\": \"\",\n                \"WRITER:4: Owner Performance Share %\": \"\",\n                \"WRITER:4: Owner Mechanical Share %\": \"\",\n                \"WRITER:4: Original Publisher\": \"\",\n                \"PUBLISHER:1: Name\": \"Keep Clear Music Ltd\",\n                \"PUBLISHER:1: Capacity\": \"Original Publisher\",\n                \"PUBLISHER:1: Society\": \"PRS\",\n                \"PUBLISHER:1: IPI\": \"750546346\",\n                \"PUBLISHER:1: Territory\": \"WORLD\",\n                \"PUBLISHER:1: Owner Performance Share %\": \"100.00\",\n                \"PUBLISHER:1: Owner Mechanical Share %\": \"100.00\",\n                \"ATTRIBUTE: SM Category\": \"\",\n                \"ATTRIBUTE: SM Subcategory\": \"\",\n                \"CODE: ISWC\": \"\",\n                \"CODE: ISRC\": \"GBUDZ1900295\",\n                \"_tags\": [\n                    \"percussion\",\n                    \"synth\",\n                    \"acoustic-drums\",\n                    \"electronic-drums\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"solo-drums\",\n                    \"soundtrack\",\n                    \"sound-design\",\n                    \"trailer\",\n                    \"medium-slow\",\n                    \"confident\",\n                    \"cool\",\n                    \"dramatic\",\n                    \"exciting\",\n                    \"energetic\",\n                    \"lively\",\n                    \"dynamic\",\n                    \"cinematic\",\n                    \"epic\",\n                    \"tense\",\n                    \"suspenseful\",\n                    \"uneasy\",\n                    \"neutral\",\n                    \"emotionless\",\n                    \"mysterious\",\n                    \"mystical\",\n                    \"intense\",\n                    \"drama\",\n                    \"video-games\",\n                    \"action\",\n                    \"documentaries\",\n                    \"science-fiction\",\n                    \"trailers\",\n                    \"promo\",\n                    \"adventure\",\n                    \"fantasy\",\n                    \"chase-scenes\",\n                    \"tension\",\n                    \"automotive\",\n                    \"driving\",\n                    \"commercials\",\n                    \"advertising\",\n                    \"crime\",\n                    \"wrong-planet\"\n                ],\n                \"_releaseTags\": [\n                    \"wrong-planet\"\n                ],\n                \"_releaseLabel\": \"wrong-planet\",\n                \"_composers\": [\n                    \"mark-heaney-603389552\"\n                ]\n            },\n            \"releaseId\": \"5f3c5397801b650015640598\",\n            \"shortSlug\": \"wpm091-16\",\n            \"createdAt\": \"2020-08-18T22:17:59.163Z\",\n            \"updatedAt\": \"2025-05-06T13:50:19.414Z\",\n            \"__v\": 0,\n            \"totalTracks\": 2,\n            \"bitDepth\": 16,\n            \"duration\": \"00:03:26\",\n            \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd.wav\",\n            \"originalFormat\": \"wav\",\n            \"sampleRate\": 44100,\n            \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b65001564059e_WPM091_TK016_ULTRAMARINE_Mark_Heaney_Keep_Clear_Music_Ltd_lo.mp3\",\n            \"tags\": [\n                {\n                    \"id\": \"Instrumentation→Percussion\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Percussion\"\n                },\n                {\n                    \"id\": \"Instrumentation→Synth\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Synth\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Acoustic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Acoustic Drums\"\n                },\n                {\n                    \"id\": \"Instrumentation→Drums→Electronic Drums\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"Drums\",\n                    \"name\": \"Electronic Drums\"\n                },\n                {\n                    \"id\": \"Keywords→Confident\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Confident\"\n                },\n                {\n                    \"id\": \"Keywords→Cool\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cool\"\n                },\n                {\n                    \"id\": \"Keywords→Dramatic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dramatic\"\n                },\n                {\n                    \"id\": \"Keywords→exciting\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"exciting\"\n                },\n                {\n                    \"id\": \"Keywords→Energetic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Energetic\"\n                },\n                {\n                    \"id\": \"Keywords→lively\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"lively\"\n                },\n                {\n                    \"id\": \"Keywords→Dynamic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Dynamic\"\n                },\n                {\n                    \"id\": \"Keywords→Cinematic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Cinematic\"\n                },\n                {\n                    \"id\": \"Keywords→Epic\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Epic\"\n                },\n                {\n                    \"id\": \"Keywords→tense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"tense\"\n                },\n                {\n                    \"id\": \"Keywords→suspenseful\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"suspenseful\"\n                },\n                {\n                    \"id\": \"Mood→Tension\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Tension\"\n                },\n                {\n                    \"id\": \"Keywords→Neutral\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Neutral\"\n                },\n                {\n                    \"id\": \"Mood→Emotionless\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Emotionless\"\n                },\n                {\n                    \"id\": \"Keywords→Mysterious\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Mysterious\"\n                },\n                {\n                    \"id\": \"Mood→Mystical\",\n                    \"category\": \"Mood\",\n                    \"parent\": \"\",\n                    \"name\": \"Mystical\"\n                },\n                {\n                    \"id\": \"Keywords→Intense\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Intense\"\n                },\n                {\n                    \"id\": \"Genre→Drama\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Drama\"\n                },\n                {\n                    \"id\": \"Music For→Video Games\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Video Games\"\n                },\n                {\n                    \"id\": \"Genre→Action\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Action\"\n                },\n                {\n                    \"id\": \"Music For→Documentaries\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Documentaries\"\n                },\n                {\n                    \"id\": \"Music For→Science Fiction\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Science Fiction\"\n                },\n                {\n                    \"id\": \"Music For→Trailers\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailers\"\n                },\n                {\n                    \"id\": \"Keywords→promo\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"promo\"\n                },\n                {\n                    \"id\": \"Music For→Adventure\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Adventure\"\n                },\n                {\n                    \"id\": \"Music For→Fantasy\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Fantasy\"\n                },\n                {\n                    \"id\": \"Music For→Chase Scenes\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Chase Scenes\"\n                },\n                {\n                    \"id\": \"Music For→Automotive\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Automotive\"\n                },\n                {\n                    \"id\": \"Keywords→Driving\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Driving\"\n                },\n                {\n                    \"id\": \"Music For→Commercials\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Commercials\"\n                },\n                {\n                    \"id\": \"Music For→Advertising\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Advertising\"\n                },\n                {\n                    \"id\": \"Music For→Crime\",\n                    \"category\": \"Music For\",\n                    \"parent\": \"\",\n                    \"name\": \"Crime\"\n                },\n                {\n                    \"id\": \"Genre→Solo Drums\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Solo Drums\"\n                },\n                {\n                    \"id\": \"Genre→Soundtrack\",\n                    \"category\": \"Genre\",\n                    \"parent\": \"\",\n                    \"name\": \"Soundtrack\"\n                },\n                {\n                    \"id\": \"Instrumentation→Sound Design\",\n                    \"category\": \"Instrumentation\",\n                    \"parent\": \"\",\n                    \"name\": \"Sound Design\"\n                },\n                {\n                    \"id\": \"Keywords→Trailer\",\n                    \"category\": \"Keywords\",\n                    \"parent\": \"\",\n                    \"name\": \"Trailer\"\n                },\n                {\n                    \"id\": \"Tempo→Medium→Medium Slow\",\n                    \"category\": \"Tempo\",\n                    \"parent\": \"Medium\",\n                    \"name\": \"Medium Slow\"\n                }\n            ],\n            \"durationMs\": 206000,\n            \"releaseCode\": \"WPM091\",\n            \"composers\": [\n                {\n                    \"_id\": \"5f3c5396801b650015640593\",\n                    \"middleName\": \"\",\n                    \"orgSlug\": \"demo\",\n                    \"slug\": \"mark-heaney-603389552\",\n                    \"firstName\": \"Mark\",\n                    \"lastName\": \"Heaney\",\n                    \"ipi\": \"603389552\",\n                    \"pro\": \"PRS\"\n                }\n            ],\n            \"groups\": [\n                {\n                    \"_id\": \"6631178b607beed7317eb159\",\n                    \"slug\": \"production-music\",\n                    \"name\": \"Production music\",\n                    \"orgSlug\": \"demo\",\n                    \"category\": \"industry\"\n                },\n                {\n                    \"_id\": \"5d5ea84b3a452e00148959ac\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"demo\"\n                },\n                {\n                    \"_id\": \"5e3a98fa934e030014c98d19\",\n                    \"name\": \"Main Catalogue\",\n                    \"slug\": \"main-catalogue\",\n                    \"orgSlug\": \"wrongplanetmusic\"\n                }\n            ],\n            \"parent\": {},\n            \"release\": {\n                \"_id\": \"5f3c5397801b650015640598\",\n                \"isPublished\": true,\n                \"totalTracks\": 10,\n                \"state\": \"available\",\n                \"groupIds\": [\n                    \"6631178b607beed7317eb159\",\n                    \"5d5ea84b3a452e00148959ac\"\n                ],\n                \"title\": \"Mark Heaney's Cine Drums\",\n                \"slug\": \"wpm091\",\n                \"description\": \"Epic drum scores for movies and trailers by legendary British drummer, Mark Heaney.\",\n                \"orgSlug\": \"demo\",\n                \"catalogueNumber\": \"WPM091\",\n                \"releaseDate\": \"2019-09-20\",\n                \"labelId\": \"5f3a46def524240015dbd853\",\n                \"packshot\": {\n                    \"original\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                    \"300w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_300w.jpg\",\n                    \"750w\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10_750w.jpg\"\n                },\n                \"tags\": [],\n                \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/5f3c5397801b650015640598_750w-10.jpg\",\n                \"code\": \"WPM091\",\n                \"totalVersions\": 30,\n                \"labelGroupIds\": [\n                    \"5e3a98fa934e030014c98d19\"\n                ],\n                \"label\": {\n                    \"_id\": \"5f3a46def524240015dbd853\",\n                    \"title\": \"WRONG PLANET\",\n                    \"orgSlug\": \"wrongplanetmusic\",\n                    \"slug\": \"wrong-planet\",\n                    \"code\": \"WPM\",\n                    \"gemacode\": \"\"\n                },\n                \"labelGroups\": [\n                    {\n                        \"_id\": \"5e3a98fa934e030014c98d19\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"wrongplanetmusic\"\n                    }\n                ],\n                \"groups\": [\n                    {\n                        \"_id\": \"6631178b607beed7317eb159\",\n                        \"slug\": \"production-music\",\n                        \"name\": \"Production music\",\n                        \"orgSlug\": \"demo\",\n                        \"category\": \"industry\"\n                    },\n                    {\n                        \"_id\": \"5d5ea84b3a452e00148959ac\",\n                        \"name\": \"Main Catalogue\",\n                        \"slug\": \"main-catalogue\",\n                        \"orgSlug\": \"demo\"\n                    }\n                ]\n            }\n        }\n    ]\n}"}],"_postman_id":"b28c3e7c-99a8-4305-955f-8bd27f54fce2"},{"name":"Track","id":"3e3e1093-9a01-44b8-b51b-cc6649338f98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":"{{hostAdmin}}/tracks/{{trackId}}","urlObject":{"path":["tracks","{{trackId}}"],"host":["{{hostAdmin}}"],"query":[],"variable":[]}},"response":[{"id":"aff7d736-6b5f-4614-8955-ac09c207393b","name":"Track","originalRequest":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":"{{hostAdmin}}/tracks/{{trackId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Allow","value":"GET,POST,PUT,PATCH,DELETE"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Etag","value":"W/\"4588-EB++CfO9zNgajwGeeKbwSzidS1g\""},{"key":"Content-Encoding","value":"gzip"},{"key":"Date","value":"Mon, 28 Feb 2022 17:24:13 GMT"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"62008cb70015bab2a52f0144\",\n    \"isPublished\": true,\n    \"state\": \"available\",\n    \"waveformData\": [0, -3, -6, 10, ..., 9, 23, 22, -25],\n    \"tagIds\": [],\n    \"groupIds\": [\n        \"5c662bf987e122b1001454fb\"\n    ],\n    \"composerIds\": [\n        \"5cca8527e100143931a12ff3\",\n        \"5eb41c65400538e0c0014864\"\n    ],\n    \"aiState\": \"initial\",\n    \"title\": \"Crestfallen\",\n    \"slug\": \"ams039-1\",\n    \"longSlug\": \"cb039-1-crestfallen-main\",\n    \"originalFilename\": \"CB039_001_Crestfallen\",\n    \"description\": \"Angelic xylophone plunks as a woosh of woodwind swirls around an ambient background. Deep woodwind layers nudge the synthscape to the back and wash in hums and buzzes that mesh and rumble to a tense close.\",\n    \"versionTitle\": \"Main\",\n    \"orgSlug\": \"demo\",\n    \"isMain\": true,\n    \"catalogueNumber\": \"CB039\",\n    \"releaseCode\": \"CB039\",\n    \"releaseDate\": \"2021-01-20\",\n    \"releaseTitleEn\": \"Sora\",\n    \"isrc\": \"QM-XXX-99-12345\",\n    \"lyrics\": \"\",\n    \"trackNumber\": 1,\n    \"versionNumber\": 0,\n    \"bpm\": 110,\n    \"rawImport\": \"[please do not use this prop / it is undocumented, unsupported, and will change without notice]\",\n    \"tags\": [\n        {\n            \"id\": \"Catalog→Studio Series\",\n            \"category\": \"Catalog\",\n            \"parent\": \"\",\n            \"name\": \"Studio Series\"\n        },\n        {\n            \"id\": \"Elements→Breath\",\n            \"category\": \"Elements\",\n            \"parent\": \"\",\n            \"name\": \"Breath\"\n        },\n        {\n            \"id\": \"Genre→Documentary\",\n            \"category\": \"Genre\",\n            \"parent\": \"\",\n            \"name\": \"Documentary\"\n        },\n        {\n            \"id\": \"Hidden→Underscore\",\n            \"category\": \"Hidden\",\n            \"parent\": \"\",\n            \"name\": \"Underscore\"\n        },\n        {\n            \"id\": \"Hidden→Vibraphone\",\n            \"category\": \"Hidden\",\n            \"parent\": \"\",\n            \"name\": \"Vibraphone\"\n        },\n        {\n            \"id\": \"Instrumentation→Woodwinds→Flute\",\n            \"category\": \"Instrumentation\",\n            \"parent\": \"Woodwinds\",\n            \"name\": \"Flute\"\n        },\n        {\n            \"id\": \"Instrumentation→Woodwinds→Clarinet\",\n            \"category\": \"Instrumentation\",\n            \"parent\": \"Woodwinds\",\n            \"name\": \"Clarinet\"\n        },\n        {\n            \"id\": \"Instrumentation→Woodwinds→Bass Clarinet\",\n            \"category\": \"Instrumentation\",\n            \"parent\": \"Woodwinds\",\n            \"name\": \"Bass Clarinet\"\n        },\n        {\n            \"id\": \"Instrumentation→Ostinato\",\n            \"category\": \"Instrumentation\",\n            \"parent\": \"\",\n            \"name\": \"Ostinato\"\n        },\n        {\n            \"id\": \"Key→B\",\n            \"category\": \"Key\",\n            \"parent\": \"\",\n            \"name\": \"B\"\n        },\n        {\n            \"id\": \"Key→Minor\",\n            \"category\": \"Key\",\n            \"parent\": \"\",\n            \"name\": \"Minor\"\n        },\n        {\n            \"id\": \"Keywords→Airy\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Airy\"\n        },\n        {\n            \"id\": \"Keywords→Introspective\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Introspective\"\n        },\n        {\n            \"id\": \"Keywords→Sad\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Sad\"\n        },\n        {\n            \"id\": \"Keywords→Slow\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Slow\"\n        },\n        {\n            \"id\": \"Keywords→Calm\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Calm\"\n        },\n        {\n            \"id\": \"Keywords→Minimal\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Minimal\"\n        },\n        {\n            \"id\": \"Keywords→Ambient\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Ambient\"\n        },\n        {\n            \"id\": \"Keywords→Beautiful\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Beautiful\"\n        },\n        {\n            \"id\": \"Keywords→Emotional\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Emotional\"\n        },\n        {\n            \"id\": \"Keywords→Intro\",\n            \"category\": \"Keywords\",\n            \"parent\": \"\",\n            \"name\": \"Intro\"\n        },\n        {\n            \"id\": \"Library Name→Cadenzabox\",\n            \"category\": \"Library Name\",\n            \"parent\": \"\",\n            \"name\": \"Cadenzabox\"\n        },\n        {\n            \"id\": \"Music Master Genres→MMG_Ambient Introspective Drama\",\n            \"category\": \"Music Master Genres\",\n            \"parent\": \"\",\n            \"name\": \"MMG_Ambient Introspective Drama\"\n        },\n        {\n            \"id\": \"Musical Styles→Underscore→Fantasy\",\n            \"category\": \"Musical Styles\",\n            \"parent\": \"Underscore\",\n            \"name\": \"Fantasy\"\n        },\n        {\n            \"id\": \"Type→Music\",\n            \"category\": \"Type\",\n            \"parent\": \"\",\n            \"name\": \"Music\"\n        }\n    ],\n    \"releaseId\": \"600bab2a52f700158cb01243\",\n    \"labelId\": \"5fc85f62b9b00155b73692d2\",\n    \"shortSlug\": \"ams039-1\",\n    \"createdAt\": \"2021-01-21T00:32:43.713Z\",\n    \"updatedAt\": \"2022-01-26T19:02:14.349Z\",\n    \"__v\": 0,\n    \"totalTracks\": 7,\n    \"bitDepth\": 24,\n    \"duration\": \"00:03:09\",\n    \"originalAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/cd039/CB039_001_Crestfallen.aif\",\n    \"originalFormat\": \"aif\",\n    \"sampleRate\": 48000,\n    \"webAudio\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/cb039/CB039_001_Crestfallen_lo.mp3\",\n    \"parent\": {},\n    \"groups\": [\n        {\n            \"_id\": \"5c6be122b1001454f987f62b\",\n            \"name\": \"Main Catalog\",\n            \"orgSlug\": \"cadenzabox\",\n            \"slug\": \"main-catalogue\"\n        }\n    ],\n    \"composers\": [\n        {\n            \"_id\": \"5e0538e0c00148b41c066544\",\n            \"middleName\": \"\",\n            \"orgSlug\": \"cadenzabox\",\n            \"slug\": \"dan-mavis-975383990\",\n            \"firstName\": \"Dan\",\n            \"lastName\": \"Mavis\",\n            \"ipi\": \"975383990\",\n            \"pro\": \"ASCAP\"\n        }\n    ],\n    \"label\": {\n        \"_id\": \"5f5f62b9b00155bc692873d2\",\n        \"title\": \"Cadenzabox\",\n        \"orgSlug\": \"cadenzabox\",\n        \"slug\": \"cadenzabox\",\n        \"code\": \"\"\n    },\n    \"release\": {\n        \"_id\": \"6008c70015b01bab2a52f243\",\n        \"isPublished\": true,\n        \"totalTracks\": 12,\n        \"state\": \"available\",\n        \"groupIds\": [\n            \"5c6b122b1001454ff987e62b\"\n        ],\n        \"labelGroupIds\": [],\n        \"title\": \"Sora\",\n        \"slug\": \"cb039\",\n        \"description\": \"Glimmering, evolving cycles of woodwind motifs, tuned percussion and hypnotic swells create luxurious and soothing atmospheres, rich with reedy texture, light, intricate movement and an intriguing, esoteric tone.\",\n        \"orgSlug\": \"demo\",\n        \"catalogueNumber\": \"AMS039\",\n        \"code\": \"AMS039\",\n        \"releaseDate\": \"2021-01-20\",\n        \"tags\": [\n            \"Catalog→Studio Series\",\n            \"Keywords→Light Wondrous Ambient Drama\",\n            \"Library Name→Cadenzabox\"\n        ],\n        \"labelId\": \"5fcb001569285f62b95b73d2\",\n        \"packshotUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/demo/Sora.jpg\",\n        \"totalVersions\": 94,\n        \"labelGroups\": [],\n        \"groups\": [\n            {\n                \"_id\": \"5c6bf987e122b1001454f62b\",\n                \"name\": \"Main Catalog\",\n                \"orgSlug\": \"demo\",\n                \"slug\": \"main-catalogue\"\n            }\n        ],\n        \"label\": {\n            \"_id\": \"5fc695b73285f62b9b0015d2\",\n            \"title\": \"Cadenzabox\",\n            \"orgSlug\": \"demo\",\n            \"slug\": \"cadenzabox\",\n            \"code\": \"\"\n        }\n    }\n}"}],"_postman_id":"3e3e1093-9a01-44b8-b51b-cc6649338f98"},{"name":"Get original audio URL","id":"cd0ae211-a3ac-4b59-9037-c5eeefe5ec9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":"{{hostAdmin}}/download-audio/track/{{trackId}}","urlObject":{"path":["download-audio","track","{{trackId}}"],"host":["{{hostAdmin}}"],"query":[],"variable":[]}},"response":[{"id":"a422521a-d1d1-43b6-a632-744c9e2c6a8c","name":"Get original audio URL","originalRequest":{"method":"GET","header":[{"disabled":true,"key":"Origin","value":"{{origin}}"},{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":"{{hostAdmin}}/download-audio/track/{{trackId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Server","value":"Cowboy"},{"key":"Connection","value":"keep-alive"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Dns-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-Xss-Protection","value":"1; mode=block"},{"key":"Allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Vary","value":"Accept, Accept-Encoding"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"696"},{"key":"Etag","value":"W/\"2b8-CC2l4oKmj2Bo2NhJF516iYM7ndE\""},{"key":"Date","value":"Thu, 19 Jan 2023 13:35:00 GMT"},{"key":"Via","value":"1.1 vegur"}],"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"61f3c435142b060016dfcb26\",\n    \"downloadUrl\": \"https://storage.googleapis.com/cadenzabox-prod-bucket/...\"\n}"}],"_postman_id":"cd0ae211-a3ac-4b59-9037-c5eeefe5ec9f"}],"id":"7f2956e7-ab12-4a7a-b857-d542c1e5812e","_postman_id":"7f2956e7-ab12-4a7a-b857-d542c1e5812e","description":""},{"name":"Composers","item":[{"name":"Composers","id":"ae80c80f-f544-4ee8-b52a-f2a2010cbd11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/composers?$skip=0&$limit=5","urlObject":{"path":["composers"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>Skip documents</p>\n","type":"text/plain"},"key":"$skip","value":"0"},{"description":{"content":"<p>Limit response size</p>\n","type":"text/plain"},"key":"$limit","value":"5"},{"disabled":true,"description":{"content":"<p>Sort by recently updated</p>\n","type":"text/plain"},"key":"$sort[updatedAt]","value":"-1"},{"disabled":true,"description":{"content":"<p>Updated after date / datetime</p>\n","type":"text/plain"},"key":"updatedAt[$gte]","value":"2025-01-06"},{"disabled":true,"description":{"content":"<p>Query by lastName</p>\n","type":"text/plain"},"key":"lastName","value":"Woodman"},{"disabled":true,"description":{"content":"<p>Query by ipi</p>\n","type":"text/plain"},"key":"ipi","value":"632037186"}],"variable":[]}},"response":[{"id":"b3d485e1-3f7c-4a4d-930a-848e561fc4a2","name":"Composers","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":{"raw":"{{hostAdmin}}/composers?$skip=0&$limit=5","host":["{{hostAdmin}}"],"path":["composers"],"query":[{"key":"$skip","value":"0"},{"key":"$limit","value":"5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 18 Jul 2025 10:39:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Content-Encoding","value":"gzip"},{"key":"etag","value":"W/\"5b9-Xh0XeD0giZVVfrUMkf2gPLrDytg\""},{"key":"rndr-id","value":"f9ee5921-7003-4192"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"vary","value":"Accept, Accept-Encoding"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-render-origin-server","value":"Render"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=ZkdXwRXhxcplwybESZOa87ecbwdeCdLGLXrhT1cHgLQTKglVavfFLekj05XdtDs6UKHFv07QVsi442To2gouECD4SnuZPRtvH8Xs8pGFuxRgn8%2FQFA4l4mdlKvi1fZXHV962S7qt0tjz6Q%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"96115af23811bd9f-LHR"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=24298&min_rtt=14908&rtt_var=9465&sent=56&recv=52&lost=0&retrans=0&sent_bytes=12905&recv_bytes=3146&delivery_rate=350223&cwnd=258&unsent_bytes=0&cid=76c9248718ea6c06&ts=38578&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 216,\n    \"limit\": 5,\n    \"skip\": 0,\n    \"data\": [\n        {\n            \"_id\": \"63e227f6dec7adfb48c26e93\",\n            \"slug\": \"abderraouf-djeffel-729992092\",\n            \"orgSlug\": \"sandbox\",\n            \"firstName\": \"Abderraouf\",\n            \"middleName\": \"\",\n            \"lastName\": \"Djeffel\",\n            \"pro\": \"BMI\",\n            \"ipi\": \"729992092\",\n            \"lastCsvImport\": \"644a42ae2812494e3a567cbf\",\n            \"createdAt\": \"2023-02-07T10:29:10.926Z\",\n            \"updatedAt\": \"2023-04-27T09:38:54.620Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"61951146af407e001612ba4f\",\n            \"firstName\": \"Abigail\",\n            \"middleName\": \"May\",\n            \"lastName\": \"Woodman\",\n            \"orgSlug\": \"sandbox\",\n            \"slug\": \"abigail-may-woodman-632037186\",\n            \"ipi\": \"632037186\",\n            \"pro\": \"PRS\",\n            \"createdAt\": \"2021-11-17T14:27:18.820Z\",\n            \"updatedAt\": \"2021-11-17T14:27:18.820Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"63c93079e116dc8d3a1037a7\",\n            \"slug\": \"adam-huxley-prs-835572028\",\n            \"orgSlug\": \"sandbox\",\n            \"firstName\": \"Adam\",\n            \"middleName\": \"\",\n            \"lastName\": \"Huxley (PRS)\",\n            \"pro\": \"PRS\",\n            \"ipi\": \"835572028\",\n            \"lastCsvImport\": \"63c93513e116dc8d3a1068ed\",\n            \"createdAt\": \"2023-01-19T11:58:49.819Z\",\n            \"updatedAt\": \"2023-01-19T12:18:28.115Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"611fbcf8a470be0016536d1e\",\n            \"firstName\": \"Al\",\n            \"middleName\": \"\",\n            \"lastName\": \"Swettenham\",\n            \"orgSlug\": \"sandbox\",\n            \"slug\": \"al-swettenham-550298057\",\n            \"ipi\": \"550298057\",\n            \"pro\": \"PRS\",\n            \"createdAt\": \"2021-08-20T14:32:24.159Z\",\n            \"updatedAt\": \"2021-08-20T14:32:24.159Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"602fcd806c2a47001542fafe\",\n            \"middleName\": \"\",\n            \"orgSlug\": \"sandbox\",\n            \"slug\": \"alessandro-ciani-458886784\",\n            \"firstName\": \"Alessandro\",\n            \"lastName\": \"Ciani\",\n            \"ipi\": \"458886784\",\n            \"pro\": \"PRS\",\n            \"createdAt\": \"2021-02-19T14:38:56.164Z\",\n            \"updatedAt\": \"2021-02-19T14:38:56.164Z\",\n            \"__v\": 0\n        }\n    ]\n}"}],"_postman_id":"ae80c80f-f544-4ee8-b52a-f2a2010cbd11"},{"name":"Composer","id":"ff4285e2-5ce8-40f0-8de5-ed128874f506","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/composers/63e227f6dec7adfb48c26e93","urlObject":{"path":["composers","63e227f6dec7adfb48c26e93"],"host":["{{hostAdmin}}"],"query":[],"variable":[]}},"response":[{"id":"76ea1167-6912-4b95-a24e-b5f425ae4300","name":"Composer","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/composers/63e227f6dec7adfb48c26e93"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 18 Jul 2025 10:40:09 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"etag","value":"W/\"139-DtDYz5KzHTUj2Qk8TejdF7Xb0as\""},{"key":"rndr-id","value":"bf56385e-1963-4095"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"vary","value":"Accept, Accept-Encoding"},{"key":"vary","value":"Accept-Encoding"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-render-origin-server","value":"Render"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=z19afkG1ThkipfQod8BFbL3lACOLo%2BqQdvDHEgUp8TD977vt1PGySIgWXcdbAAs84naWtzpNhs26zZ4SUA%2FPiiGcWGL90Wlhwk5uu%2FufOMirSJuPruhnT5lJw0kzVPID%2BlcU6gPP5LJKhw%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"96115bfa6deabd9f-LHR"},{"key":"Content-Encoding","value":"br"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=20877&min_rtt=14908&rtt_var=7322&sent=103&recv=97&lost=0&retrans=0&sent_bytes=16699&recv_bytes=4392&delivery_rate=350223&cwnd=258&unsent_bytes=0&cid=76c9248718ea6c06&ts=80863&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"_id\": \"63e227f6dec7adfb48c26e93\",\n    \"slug\": \"abderraouf-djeffel-729992092\",\n    \"orgSlug\": \"sandbox\",\n    \"firstName\": \"Abderraouf\",\n    \"middleName\": \"\",\n    \"lastName\": \"Djeffel\",\n    \"pro\": \"BMI\",\n    \"ipi\": \"729992092\",\n    \"lastCsvImport\": \"644a42ae2812494e3a567cbf\",\n    \"createdAt\": \"2023-02-07T10:29:10.926Z\",\n    \"updatedAt\": \"2023-04-27T09:38:54.620Z\",\n    \"__v\": 0\n}"}],"_postman_id":"ff4285e2-5ce8-40f0-8de5-ed128874f506"}],"id":"c7348cb5-7f9e-4756-bac8-98d01079d4b3","_postman_id":"c7348cb5-7f9e-4756-bac8-98d01079d4b3","description":""},{"name":"Tags","item":[{"name":"Tag Categories","id":"8709456c-9c41-4438-96df-b0d9a33a90df","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tag-categories?$skip=0&$limit=50","urlObject":{"path":["tag-categories"],"host":["{{hostAdmin}}"],"query":[{"key":"$skip","value":"0"},{"key":"$limit","value":"50"}],"variable":[]}},"response":[{"id":"767ec77f-e4ae-4166-87fa-18f5a9ad84c3","name":"Tag Categories","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":{"raw":"{{hostAdmin}}/tag-categories?$skip=0&$limit=50","host":["{{hostAdmin}}"],"path":["tag-categories"],"query":[{"key":"$skip","value":"0"},{"key":"$limit","value":"50"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 18 Jul 2025 10:53:07 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Content-Encoding","value":"gzip"},{"key":"etag","value":"W/\"7951-jrc7cA6xDr/yAs5ca964EjP74oE\""},{"key":"rndr-id","value":"ff925c56-acab-4bf9"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"vary","value":"Accept, Accept-Encoding"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-render-origin-server","value":"Render"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=YgGRTE02gMB%2B2dFZ8D1I2heULCn8zrV3hhdg2gBJYVCksqx8LxmMgX4hYPJASFZohBNihzCzJCg84Sqt7DSjsN9t7z%2FnIhtH1oz6LKz6DPqFvo1BSqyqOanIkmgowmMuMAOMR81BtjVAAg%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"96116ef7f957f656-LHR"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=15421&min_rtt=15028&rtt_var=1162&sent=116&recv=111&lost=0&retrans=0&sent_bytes=10733&recv_bytes=3717&delivery_rate=361660&cwnd=257&unsent_bytes=0&cid=e2b721c73953d6a2&ts=100485&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"total\": 130,\n    \"limit\": 50,\n    \"skip\": 0,\n    \"data\": [\n        {\n            \"_id\": \"630f728ce0071ec526b20714\",\n            \"slug\": \"album-genre\",\n            \"name\": \"Album Genre\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"630f728ce0071ec526b206ee\",\n            \"createdAt\": \"2022-08-31T14:39:08.975Z\",\n            \"updatedAt\": \"2022-08-31T14:39:08.975Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"630f728ce0071ec526b20717\",\n            \"slug\": \"album-instrumentation\",\n            \"name\": \"Album Instrumentation\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"630f728ce0071ec526b206ee\",\n            \"createdAt\": \"2022-08-31T14:39:08.976Z\",\n            \"updatedAt\": \"2022-08-31T14:39:08.976Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"630f728ce0071ec526b20715\",\n            \"slug\": \"album-mood\",\n            \"name\": \"Album Mood\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"630f728ce0071ec526b206ee\",\n            \"createdAt\": \"2022-08-31T14:39:08.975Z\",\n            \"updatedAt\": \"2022-08-31T14:39:08.975Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"630f728ce0071ec526b20716\",\n            \"slug\": \"album-music-for\",\n            \"name\": \"Album Music For\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"630f728ce0071ec526b206ee\",\n            \"createdAt\": \"2022-08-31T14:39:08.975Z\",\n            \"updatedAt\": \"2022-08-31T14:39:08.975Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"603f9d74681ee200159d0ebd\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Album series\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-03T14:30:12.290Z\",\n            \"updatedAt\": \"2021-03-03T14:30:12.290Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"621cbead57e9aa0016a17f96\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"orgSlug\": \"sandbox\",\n            \"name\": \"Beds\",\n            \"lastCsvImport\": \"621cbeab57e9aa0016a17f84\",\n            \"slug\": \"beds\",\n            \"createdAt\": \"2022-02-28T12:23:09.760Z\",\n            \"updatedAt\": \"2022-02-28T12:23:09.760Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"604baad98777db0015dccacc\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"COUNTRY LIST\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-12T17:54:33.161Z\",\n            \"updatedAt\": \"2021-03-12T17:54:33.161Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"60e45915403163001567313c\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Canoga\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-07-06T13:22:29.374Z\",\n            \"updatedAt\": \"2021-07-06T13:22:29.374Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"60e455f74031630015673111\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Catalog\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-07-06T13:09:11.902Z\",\n            \"updatedAt\": \"2021-07-06T13:09:11.902Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"604ba7d58777db0015dcc88b\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Category\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-12T17:41:41.272Z\",\n            \"updatedAt\": \"2021-03-12T17:41:41.272Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fb65f759620790015042e9a\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Characteristics\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2020-11-19T12:05:09.345Z\",\n            \"updatedAt\": \"2020-11-19T12:05:09.345Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"621cbead57e9aa0016a17f97\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"orgSlug\": \"sandbox\",\n            \"name\": \"Code\",\n            \"lastCsvImport\": \"621cbeab57e9aa0016a17f84\",\n            \"slug\": \"code\",\n            \"createdAt\": \"2022-02-28T12:23:09.760Z\",\n            \"updatedAt\": \"2022-02-28T12:23:09.760Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fb65f759620790015042e9c\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Collection\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2020-11-19T12:05:09.361Z\",\n            \"updatedAt\": \"2020-11-19T12:05:09.361Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"630f728ce0071ec526b2071a\",\n            \"slug\": \"country-culture\",\n            \"name\": \"Country/Culture\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"630f728ce0071ec526b206ee\",\n            \"createdAt\": \"2022-08-31T14:39:08.976Z\",\n            \"updatedAt\": \"2022-08-31T14:39:08.976Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a65fb41cfc9e970e68c327\",\n            \"slug\": \"cue-typ\",\n            \"name\": \"Cue Typ\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"65a65fb41cfc9e970e68c30b\",\n            \"createdAt\": \"2024-01-16T10:51:32.893Z\",\n            \"updatedAt\": \"2024-01-16T10:51:32.893Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"60e455f74031630015673110\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Cue Type\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-07-06T13:09:11.893Z\",\n            \"updatedAt\": \"2021-07-06T13:09:11.893Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"602fdbc06c2a47001542fb8c\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Dances\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-02-19T15:39:44.988Z\",\n            \"updatedAt\": \"2021-02-19T15:39:44.988Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a65d7f1cfc9e970e68bc62\",\n            \"slug\": \"display-stems\",\n            \"name\": \"Display Stems?\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"65a65d7f1cfc9e970e68bc40\",\n            \"createdAt\": \"2024-01-16T10:42:07.409Z\",\n            \"updatedAt\": \"2024-01-16T10:42:07.409Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"6061d46f5473bf0015a14b79\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Duration\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-29T13:21:51.724Z\",\n            \"updatedAt\": \"2021-03-29T13:21:51.724Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"604baad98777db0015dccac9\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"ERAS\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-12T17:54:33.130Z\",\n            \"updatedAt\": \"2021-03-12T17:54:33.130Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"630f728ce0071ec526b20713\",\n            \"slug\": \"edit-type\",\n            \"name\": \"Edit Type\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"630f728ce0071ec526b206ee\",\n            \"createdAt\": \"2022-08-31T14:39:08.975Z\",\n            \"updatedAt\": \"2022-08-31T14:39:08.975Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"60e45915403163001567313d\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Elements\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-07-06T13:22:29.383Z\",\n            \"updatedAt\": \"2021-07-06T13:22:29.383Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fb52815d125380015c3c59d\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Emotion\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2020-11-18T13:56:37.266Z\",\n            \"updatedAt\": \"2020-11-18T13:56:37.266Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fb65f759620790015042e9d\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Energy\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2020-11-19T12:05:09.367Z\",\n            \"updatedAt\": \"2020-11-19T12:05:09.367Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"602fdbc06c2a47001542fb82\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Ensembles\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-02-19T15:39:44.904Z\",\n            \"updatedAt\": \"2021-02-19T15:39:44.904Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fa2b4e64cafc391e712a0c4\",\n            \"name\": \"Era\",\n            \"orgSlug\": \"sandbox\",\n            \"__v\": 0,\n            \"createdAt\": \"2020-11-04T14:04:20.921Z\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": false,\n                    \"cloud\": false,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"updatedAt\": \"2020-11-04T14:05:01.297Z\"\n        },\n        {\n            \"_id\": \"602fdbc06c2a47001542fb86\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Eras\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-02-19T15:39:44.929Z\",\n            \"updatedAt\": \"2021-02-19T15:39:44.929Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"64369e079ee39018cd411af1\",\n            \"slug\": \"fx-tags\",\n            \"name\": \"FX Tags\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"64369e059ee39018cd411ae1\",\n            \"createdAt\": \"2023-04-12T12:03:19.971Z\",\n            \"updatedAt\": \"2023-04-12T12:03:19.971Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"602fcd806c2a47001542fb02\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Feel\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-02-19T14:38:56.274Z\",\n            \"updatedAt\": \"2021-02-19T14:38:56.274Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"60e45915403163001567313f\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Format\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-07-06T13:22:29.399Z\",\n            \"updatedAt\": \"2021-07-06T13:22:29.399Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fa2b4e64cafc391e712a070\",\n            \"name\": \"Genre\",\n            \"orgSlug\": \"sandbox\",\n            \"__v\": 0,\n            \"createdAt\": \"2020-11-04T14:04:20.921Z\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": false,\n                    \"cloud\": false,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"updatedAt\": \"2020-11-04T14:05:01.297Z\"\n        },\n        {\n            \"_id\": \"677bf6adc33601b77fce619b\",\n            \"slug\": \"genre-de\",\n            \"name\": \"Genre (DE)\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"677bf6acc33601b77fce617d\",\n            \"createdAt\": \"2025-01-06T15:28:45.491Z\",\n            \"updatedAt\": \"2025-01-06T15:28:45.491Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"677bf6adc33601b77fce619c\",\n            \"slug\": \"genre-es\",\n            \"name\": \"Genre (ES)\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"677bf6acc33601b77fce617d\",\n            \"createdAt\": \"2025-01-06T15:28:45.491Z\",\n            \"updatedAt\": \"2025-01-06T15:28:45.491Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"677bf6adc33601b77fce619d\",\n            \"slug\": \"genre-pt\",\n            \"name\": \"Genre (PT)\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"677bf6acc33601b77fce617d\",\n            \"createdAt\": \"2025-01-06T15:28:45.491Z\",\n            \"updatedAt\": \"2025-01-06T15:28:45.491Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"602fdbc06c2a47001542fb81\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Genres\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-02-19T15:39:44.887Z\",\n            \"updatedAt\": \"2021-02-19T15:39:44.887Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a65fb41cfc9e970e68c328\",\n            \"slug\": \"german-keywords\",\n            \"name\": \"German Keywords\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"65a65fb41cfc9e970e68c30b\",\n            \"createdAt\": \"2024-01-16T10:51:32.893Z\",\n            \"updatedAt\": \"2024-01-16T10:51:32.893Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"60e455f74031630015673113\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"Has vocals\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-07-06T13:09:11.914Z\",\n            \"updatedAt\": \"2021-07-06T13:09:11.914Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fa2b4e64cafc391e712a0bd\",\n            \"name\": \"Hidden\",\n            \"orgSlug\": \"sandbox\",\n            \"__v\": 0,\n            \"createdAt\": \"2020-11-04T14:04:20.921Z\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": false,\n                    \"cloud\": false,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"updatedAt\": \"2020-11-04T14:05:01.297Z\"\n        },\n        {\n            \"_id\": \"604baad98777db0015dccac8\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"INSTRUMENTS\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-12T17:54:33.125Z\",\n            \"updatedAt\": \"2021-03-12T17:54:33.125Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"603fa873681ee200159d16b4\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"In the style of\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-03T15:17:07.209Z\",\n            \"updatedAt\": \"2021-03-03T15:17:07.209Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"603f9d74681ee200159d0ec0\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"name\": \"In the style of...\",\n            \"orgSlug\": \"sandbox\",\n            \"createdAt\": \"2021-03-03T14:30:12.316Z\",\n            \"updatedAt\": \"2021-03-03T14:30:12.316Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fa2b4e64cafc391e712a0aa\",\n            \"name\": \"Instrumentation\",\n            \"orgSlug\": \"sandbox\",\n            \"__v\": 0,\n            \"createdAt\": \"2020-11-04T14:04:20.921Z\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": false,\n                    \"cloud\": false,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"updatedAt\": \"2020-11-04T14:05:01.297Z\"\n        },\n        {\n            \"_id\": \"677bf6adc33601b77fce619e\",\n            \"slug\": \"instrumentation-de\",\n            \"name\": \"Instrumentation (DE)\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"677bf6acc33601b77fce617d\",\n            \"createdAt\": \"2025-01-06T15:28:45.491Z\",\n            \"updatedAt\": \"2025-01-06T15:28:45.491Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"677bf6adc33601b77fce619f\",\n            \"slug\": \"instrumentation-es\",\n            \"name\": \"Instrumentation (ES)\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"677bf6acc33601b77fce617d\",\n            \"createdAt\": \"2025-01-06T15:28:45.491Z\",\n            \"updatedAt\": \"2025-01-06T15:28:45.491Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"677bf6adc33601b77fce61a0\",\n            \"slug\": \"instrumentation-pt\",\n            \"name\": \"Instrumentation (PT)\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"677bf6acc33601b77fce617d\",\n            \"createdAt\": \"2025-01-06T15:28:45.491Z\",\n            \"updatedAt\": \"2025-01-06T15:28:45.491Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a65fb41cfc9e970e68c329\",\n            \"slug\": \"instrumente\",\n            \"name\": \"Instrumente\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"65a65fb41cfc9e970e68c30b\",\n            \"createdAt\": \"2024-01-16T10:51:32.893Z\",\n            \"updatedAt\": \"2024-01-16T10:51:32.893Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"65a65fb41cfc9e970e68c32a\",\n            \"slug\": \"instrumentierung\",\n            \"name\": \"Instrumentierung\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"releases\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                },\n                \"playlists\": {\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    },\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"65a65fb41cfc9e970e68c30b\",\n            \"createdAt\": \"2024-01-16T10:51:32.893Z\",\n            \"updatedAt\": \"2024-01-16T10:51:32.893Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"630f728ce0071ec526b20719\",\n            \"slug\": \"instruments\",\n            \"name\": \"Instruments\",\n            \"orgSlug\": \"sandbox\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"filterByLanguageEnabled\": false,\n            \"filterByLanguage\": [],\n            \"lastCsvImport\": \"630f728ce0071ec526b206ee\",\n            \"createdAt\": \"2022-08-31T14:39:08.976Z\",\n            \"updatedAt\": \"2022-08-31T14:39:08.976Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"621cbead57e9aa0016a17fc0\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": true,\n                    \"cloud\": true,\n                    \"useForSimilarity\": true,\n                    \"singleSelect\": false,\n                    \"allowAutoTagging\": false,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"orgSlug\": \"sandbox\",\n            \"name\": \"Jingles & Themes\",\n            \"lastCsvImport\": \"621cbeab57e9aa0016a17f84\",\n            \"slug\": \"jingles-themes\",\n            \"createdAt\": \"2022-02-28T12:23:09.861Z\",\n            \"updatedAt\": \"2022-02-28T12:23:09.861Z\",\n            \"__v\": 0\n        },\n        {\n            \"_id\": \"5fa2b4e64cafc391e712a07e\",\n            \"name\": \"Key\",\n            \"orgSlug\": \"sandbox\",\n            \"__v\": 0,\n            \"createdAt\": \"2020-11-04T14:04:20.921Z\",\n            \"settings\": {\n                \"tracks\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"releases\": {\n                    \"autosuggest\": false,\n                    \"cloud\": false,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                },\n                \"playlists\": {\n                    \"autosuggest\": false,\n                    \"cloud\": true,\n                    \"order\": 0,\n                    \"limit\": 30,\n                    \"deliveries\": {\n                        \"soundmouse\": true,\n                        \"aims\": true\n                    }\n                }\n            },\n            \"updatedAt\": \"2020-11-04T14:05:01.297Z\"\n        }\n    ]\n}"}],"_postman_id":"8709456c-9c41-4438-96df-b0d9a33a90df"},{"name":"Tags by Category / Parent","id":"7395d534-975f-44f8-9504-4c344e94d046","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tag-manager/Genre?$limit=500","description":"<p>For any category or parent tag, a summary of the tags under that category can be provided with the counts for each of these tags.</p>\n<p>The <code>children</code> property lists all sub tags of a category or parent with theire counts.</p>\n<p>Note: The <code>dimmed</code> property of each child is a flag for front end integration and can be ignored.</p>\n","urlObject":{"path":["tag-manager","Genre"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>Limits can accomodate fetching all tags in most contexts</p>\n","type":"text/plain"},"key":"$limit","value":"500"},{"disabled":true,"description":{"content":"<p>Paginate through children if needed</p>\n","type":"text/plain"},"key":"$skip","value":"20"}],"variable":[]}},"response":[{"id":"68471cc6-1ae9-4108-b1c9-09b11247e00d","name":"Tags by Category / Parent","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{accessTokenAdmin}}","type":"text"}],"url":"{{hostAdmin}}/tag-manager/Moods"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 18 Jul 2025 10:55:12 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"access-control-allow-origin","value":"*"},{"key":"allow","value":"GET,POST,PATCH,PUT,DELETE"},{"key":"Content-Encoding","value":"gzip"},{"key":"etag","value":"W/\"1827-/F0i1Q8o2yBIxj18w7fusLG11Z4\""},{"key":"rndr-id","value":"36cab7aa-6957-4b9b"},{"key":"strict-transport-security","value":"max-age=15552000; includeSubDomains"},{"key":"vary","value":"Accept, Accept-Encoding"},{"key":"x-content-type-options","value":"nosniff"},{"key":"x-dns-prefetch-control","value":"off"},{"key":"x-download-options","value":"noopen"},{"key":"x-frame-options","value":"SAMEORIGIN"},{"key":"x-render-origin-server","value":"Render"},{"key":"x-xss-protection","value":"1; mode=block"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Report-To","value":"{\"endpoints\":[{\"url\":\"https:\\/\\/a.nel.cloudflare.com\\/report\\/v4?s=BM1%2Bwywg1IpBvuWRBScX5rwH53s7QVrhUv4QrQg3YP5n58YL13SxGyK%2FnrqOdPCjv3r0ykj06X5SYyLLH2ljc2KsDN%2BoJ25fhcKKM0TYhctaaMozsaW2tv2UhVDLqbfJd6rlzoZrfCYgSQ%3D%3D\"}],\"group\":\"cf-nel\",\"max_age\":604800}"},{"key":"NEL","value":"{\"success_fraction\":0,\"report_to\":\"cf-nel\",\"max_age\":604800}"},{"key":"Server","value":"cloudflare"},{"key":"CF-RAY","value":"96117202e9d69880-LHR"},{"key":"server-timing","value":"cfL4;desc=\"?proto=TCP&rtt=15601&min_rtt=15481&rtt_var=4552&sent=4&recv=6&lost=0&retrans=0&sent_bytes=2822&recv_bytes=1191&delivery_rate=178303&cwnd=251&unsent_bytes=0&cid=5231d7fd38b1dec8&ts=496&x=0\""}],"cookie":[],"responseTime":null,"body":"{\n    \"tag\": \"Moods\",\n    \"id\": \"Moods\",\n    \"category\": \"Moods\",\n    \"parent\": \"\",\n    \"name\": \"\",\n    \"count\": 50,\n    \"isParent\": false,\n    \"children\": {\n        \"total\": 50,\n        \"skip\": 0,\n        \"limit\": 50,\n        \"data\": [\n            {\n                \"id\": \"Moods→adventurous\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"adventurous\",\n                \"isParent\": false,\n                \"count\": 6,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→aggressive\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"aggressive\",\n                \"isParent\": false,\n                \"count\": 6,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Atmospheric\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Atmospheric\",\n                \"isParent\": true,\n                \"count\": 11,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Beauty\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Beauty\",\n                \"isParent\": true,\n                \"count\": 9,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→bold\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"bold\",\n                \"isParent\": false,\n                \"count\": 6,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→bright\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"bright\",\n                \"isParent\": false,\n                \"count\": 32,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→busy\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"busy\",\n                \"isParent\": false,\n                \"count\": 21,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→chic\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"chic\",\n                \"isParent\": false,\n                \"count\": 41,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→COMICAL & HUMOROUS\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"COMICAL & HUMOROUS\",\n                \"isParent\": true,\n                \"count\": 20,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Comical/Humorous\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Comical/Humorous\",\n                \"isParent\": true,\n                \"count\": 101,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Confident\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Confident\",\n                \"isParent\": true,\n                \"count\": 49,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→cool\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"cool\",\n                \"isParent\": false,\n                \"count\": 43,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→dancing\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"dancing\",\n                \"isParent\": false,\n                \"count\": 41,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→determined\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"determined\",\n                \"isParent\": false,\n                \"count\": 32,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→DRAMATIC\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"DRAMATIC\",\n                \"isParent\": true,\n                \"count\": 24,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→driving\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"driving\",\n                \"isParent\": false,\n                \"count\": 78,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→dynamic\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"dynamic\",\n                \"isParent\": false,\n                \"count\": 40,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Emotional\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Emotional\",\n                \"isParent\": true,\n                \"count\": 67,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→energetic\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"energetic\",\n                \"isParent\": false,\n                \"count\": 117,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→ENERGETIC & EXCITING\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"ENERGETIC & EXCITING\",\n                \"isParent\": true,\n                \"count\": 71,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→exciting\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"exciting\",\n                \"isParent\": false,\n                \"count\": 30,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→FANTASY\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"FANTASY\",\n                \"isParent\": true,\n                \"count\": 51,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Feel/Vibe\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Feel/Vibe\",\n                \"isParent\": true,\n                \"count\": 41,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→futuristic\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"futuristic\",\n                \"isParent\": false,\n                \"count\": 40,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→grooving\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"grooving\",\n                \"isParent\": false,\n                \"count\": 49,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→HAPPY & POSITIVE\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"HAPPY & POSITIVE\",\n                \"isParent\": true,\n                \"count\": 84,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→inspirational\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"inspirational\",\n                \"isParent\": false,\n                \"count\": 15,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Laid Back/Relaxed\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Laid Back/Relaxed\",\n                \"isParent\": true,\n                \"count\": 18,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→LIGHT & SMOOTH\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"LIGHT & SMOOTH\",\n                \"isParent\": true,\n                \"count\": 13,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→lively\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"lively\",\n                \"isParent\": false,\n                \"count\": 27,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Love\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Love\",\n                \"isParent\": true,\n                \"count\": 15,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Mellow\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Mellow\",\n                \"isParent\": true,\n                \"count\": 21,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→MOTION & MOVEMENT\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"MOTION & MOVEMENT\",\n                \"isParent\": true,\n                \"count\": 84,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→motivational\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"motivational\",\n                \"isParent\": false,\n                \"count\": 90,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Movement\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Movement\",\n                \"isParent\": true,\n                \"count\": 15,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→optimistic\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"optimistic\",\n                \"isParent\": false,\n                \"count\": 30,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→positive\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"positive\",\n                \"isParent\": false,\n                \"count\": 83,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Positive/Optimistic\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Positive/Optimistic\",\n                \"isParent\": true,\n                \"count\": 44,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→powerful\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"powerful\",\n                \"isParent\": false,\n                \"count\": 24,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→PROUD & STRENGTH\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"PROUD & STRENGTH\",\n                \"isParent\": true,\n                \"count\": 59,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→rhythmic\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"rhythmic\",\n                \"isParent\": false,\n                \"count\": 49,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→ROMANTIC\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"ROMANTIC\",\n                \"isParent\": true,\n                \"count\": 71,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→Romantic/Sexy\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"Romantic/Sexy\",\n                \"isParent\": true,\n                \"count\": 18,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→SAD\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"SAD\",\n                \"isParent\": true,\n                \"count\": 7,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→sexy\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"sexy\",\n                \"isParent\": false,\n                \"count\": 31,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→sunny\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"sunny\",\n                \"isParent\": false,\n                \"count\": 18,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"MOODS→TEXTURES & ATMOSPHERES\",\n                \"category\": \"MOODS\",\n                \"parent\": \"\",\n                \"name\": \"TEXTURES & ATMOSPHERES\",\n                \"isParent\": true,\n                \"count\": 84,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→trendy\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"trendy\",\n                \"isParent\": false,\n                \"count\": 96,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→uplifting\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"uplifting\",\n                \"isParent\": false,\n                \"count\": 145,\n                \"dimmed\": false\n            },\n            {\n                \"id\": \"Moods→urban\",\n                \"category\": \"Moods\",\n                \"parent\": \"\",\n                \"name\": \"urban\",\n                \"isParent\": false,\n                \"count\": 55,\n                \"dimmed\": false\n            }\n        ]\n    }\n}"}],"_postman_id":"7395d534-975f-44f8-9504-4c344e94d046"}],"id":"6ab0dc86-2e5a-44b1-acda-68d0f19cccf7","description":"<p>Tags in Cadenzabox are stored direclty on tracks to accomodate our advanced search and aggregation needs.</p>\n<p>These endpoints show summaries of tags across tracks.</p>\n<p>Please note counts can be imprecise at certain scales (eg ~200,000 tracks).</p>\n","_postman_id":"6ab0dc86-2e5a-44b1-acda-68d0f19cccf7"},{"name":"Transactions","id":"034c9526-7309-4efc-b36a-188dc4e2a0eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","type":"text","value":"{{accessTokenAdmin}}"}],"url":"{{hostAdmin}}/transactions?$sort[updatedAt]=-1","urlObject":{"path":["transactions"],"host":["{{hostAdmin}}"],"query":[{"description":{"content":"<p>newest first</p>\n","type":"text/plain"},"key":"$sort[updatedAt]","value":"-1"}],"variable":[]}},"response":[],"_postman_id":"034c9526-7309-4efc-b36a-188dc4e2a0eb"}],"event":[{"listen":"prerequest","script":{"id":"cf0e4a88-2171-4068-abe0-f53df594f0ab","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4fe5d386-1c70-4e0b-baf4-c4c0cde55dcf","type":"text/javascript","exec":[""]}}]}