diff --git a/README.md b/README.md
index 12ab045..0eae2df 100644
--- a/README.md
+++ b/README.md
@@ -1,52 +1,61 @@
-# YouTube Comment Filter Script
-Script that filters unwanted comments.
+# YouTube Comment Filter Script 2.4-分叉成五毛評論過濾器
+原作者是TomONeill開發的留言過濾器,本人只是改寫針對五毛特化而已
-Enjoy.
+簡言之,還我清淨的Youtube。
-Version 2.4
+# 功能描述
+針對Youyube上惱人的五毛與屁孩訊息做過濾,可實現過濾字詞、屏蔽帳號等功能,可自行讀說明進行添加與設定規則。
+五毛名單來自黄智贤的夜问、CCTV等五毛熱門影片的幾千則留言名單。
+
+# 截圖
+
+
+
-INSTALL
+# 安裝步驟1
+Chrome請安裝附加元件Tampermonkey
+Firefox請安裝Greasemonkey
+# 安裝步驟2 YouTube Comment Filter Script-五毛評論過濾器
+點我安裝
-# Screenshots
-
-
-
-
-# Description
-This repository includes a userscript for Greasemonkey and Tampermonkey that tries to find and remove stupid comments like "first" and "I'm early".
-
-# How it works
-The script does a very simple job by comparing each comment with hardcoded commonly used comments (or commonly used word combinations). It checks every now and then (configurable in the code) for new comments (which means that when you scroll down it will look for comments which weren't there before or after clicking the "Load more comments" button) and filters the annoying ones out.
-
-# Turn off certain 'rules'
-You can simply turn some of the rules off if you don't like what they are doing. For example if you don't want first comments to be filtered out, simply click the script and find (somewhere above) REMOVE_FIRST. Change true to false and you are good to go :)
-Available rules with their default values (everything true by default):
-
- const MIN_COMMENT_LENGTH = 5; // Removes any comment that has less than # characters
- const MIN_COMMENT_WORDS = 2; // Removes any comment that has less than # words
- const MIN_COMMENT_WORDS_FILTER = 3; // Removes any comment that has less than # characters words in combination with any (non-aggressive) filter
-
- const REMOVE_FIRST = true; // Removes any comment with suspected combinations of "first"
- const REMOVE_EARLY = true; // Removes any comment with suspected combinations of "early"
- const REMOVE_EARLY_AGGRESSIVE = true; // Removes any comment with "early" without looking at MIN_COMMENT_WORDS_FILTER
- const REMOVE_CRINGE_AGGRESSIVE = true; // Removes any comment with "cringe" without looking at MIN_COMMENT_WORDS_FILTER
- const REMOVE_SELF_LIKES = true; // Removes any comment which has suspicion of asking for likes
- const REMOVE_SELF_PROMO = true; // Removes any comment which has suspicion of asking for subscribers
- const REMOVE_ATTENTION_SEEKERS = true; // Removes any comment which has suspicion of seeking attention/is unrelated to the video
+
+# 設定方法
+
+ const FLAIR_INSTEAD_OF_REMOVE = true; // true會淡化處理五毛留言,false會直接過濾處理五毛留言,強烈建議在確認效果後使用false
- const FLAIR_INSTEAD_OF_REMOVE = true; // Instead of removing comments, show a "spam" flair
+ const MIN_COMMENT_LENGTH = 0;// 刪除少於#個字符的任何回應
+ const MIN_COMMENT_WORDS = 0; //刪除少於#個單詞的任何回應
+ const MIN_COMMENT_WORDS_FILTER = 100; //刪除任何少於#個字符的回應,並與任何(非攻擊性)過濾器結合使用
+
+ const REMOVE_FIRST = true; //刪除帶有“ first”組合的任何註釋
+ const REMOVE_EARLY = true; //刪除所有帶有“early”組合的評論
+ const REMOVE_EARLY_AGGRESSIVE = false; //刪除所有帶有“early”的評論,而無需查看MIN_COMMENT_WORDS_FILTER
+ const REMOVE_CRINGE_AGGRESSIVE = false; //刪除所有帶有“CRINGE”的評論,而無需查看MIN_COMMENT_WORDS_FILTER
+ const REMOVE_SELF_LIKES = false; //刪除任何懷疑喜歡的評論
+ const REMOVE_SELF_PROMO = false; //刪除任何懷疑要求訂閱者的評論
+ const REMOVE_ATTENTION_SEEKERS = false; //刪除所有可能引起關注或與視頻無關的評論
*New*:
Ability to block users by their url (right click on user name and select "Copy url", paste it in this list within quotes)
const BLOCKED_USER_URLS = [
- // EXAMPLE: "https://www.youtube.com/channel/abcdefghijklmnop"
- ""
+ // 可以自行添加網址,右鍵E可以複製連結,如下這些是五毛個人頁面。
+"https://www.youtube.com/channel/UC_9MEREuQIYD50JYM1ODkyQ",
+"https://www.youtube.com/channel/UCoxz3ojUv_LtKg9szPcOWbA",
+"https://www.youtube.com/channel/UChtHOF58i5mAuiQbYK9t8Bw",
+"https://www.youtube.com/channel/UCfdX80qUCSS0vmVA8-Yiv7g",
+"https://www.youtube.com/channel/UCH4tTq1pvv8uBzeml4krf3A",
+"https://www.youtube.com/channel/UCOzgx6RTUq4WUCj6VTK1jyg"
];
-
-# Changelog
-View changelog
-# Donate
+
+# 更新記錄
+View changelog
+# 我不是原作者,喜歡本應用,麻煩協助提供我五毛帳號
+[我是五毛帳號收集區](https://github.com/TomONeill/youtube-comment-filter-script/pull/2)
+
+
+
+# 贊助原作者TomONeill
If you like my work so much you feel like doing something nice for me, a complete stranger of the internet, you can.
Donate here.
diff --git a/screenshots/1.gif b/screenshots/1.gif
new file mode 100644
index 0000000..47f0922
Binary files /dev/null and b/screenshots/1.gif differ
diff --git a/screenshots/2019-10-08_001.jpg b/screenshots/2019-10-08_001.jpg
new file mode 100644
index 0000000..1d5b04e
Binary files /dev/null and b/screenshots/2019-10-08_001.jpg differ
diff --git a/screenshots/5m.gif b/screenshots/5m.gif
new file mode 100644
index 0000000..ccf3370
Binary files /dev/null and b/screenshots/5m.gif differ
diff --git a/yt-comment-filter-latest.user.js b/yt-comment-filter-latest.user.js
index b9ab8ef..67cbd6f 100644
--- a/yt-comment-filter-latest.user.js
+++ b/yt-comment-filter-latest.user.js
@@ -1,4 +1,4 @@
-// ==UserScript==
+// ==UserScript==
// @name YouTube Comment Filter
// @namespace https://www.youtube.com/
// @version 2.4
@@ -22,33 +22,3593 @@ $(function() {
// - Test YT's commentfilter properly.
// CHANGE THESE SETTINGS TO YOUR LIKING:
- const FLAIR_INSTEAD_OF_REMOVE = true; // Instead of removing comments, show a "spam" flair
-
- const MIN_COMMENT_LENGTH = 5; // Removes any comment that has less than # characters
- const MIN_COMMENT_WORDS = 2; // Removes any comment that has less than # words
- const MIN_COMMENT_WORDS_FILTER = 3; // Removes any comment that has less than # characters words in combination with any (non-aggressive) filter
-
- const REMOVE_FIRST = true; // Removes any comment with suspected combinations of "first"
- const REMOVE_EARLY = true; // Removes any comment with suspected combinations of "early"
- const REMOVE_EARLY_AGGRESSIVE = true; // Removes any comment with "early" without looking at MIN_COMMENT_WORDS_FILTER
- const REMOVE_CRINGE_AGGRESSIVE = true; // Removes any comment with "cringe" without looking at MIN_COMMENT_WORDS_FILTER
- const REMOVE_SELF_LIKES = true; // Removes any comment which has suspicion of asking for likes
- const REMOVE_SELF_PROMO = true; // Removes any comment which has suspicion of asking for subscribers
- const REMOVE_ATTENTION_SEEKERS = true; // Removes any comment which has suspicion of seeking attention/is unrelated to the video
+ const FLAIR_INSTEAD_OF_REMOVE = true; // true會淡化處理五毛留言,false會直接過濾處理五毛留言
+
+ const MIN_COMMENT_LENGTH = 0;// 刪除少於#個字符的任何回應
+ const MIN_COMMENT_WORDS = 0; //刪除少於#個單詞的任何回應
+ const MIN_COMMENT_WORDS_FILTER = 100; //刪除任何少於#個字符的回應,並與任何(非攻擊性)過濾器結合使用
+ const REMOVE_FIRST = true; //刪除帶有“ first”組合的任何註釋
+ const REMOVE_EARLY = true; //刪除所有帶有“early”組合的評論
+ const REMOVE_EARLY_AGGRESSIVE = false; //刪除所有帶有“early”的評論,而無需查看MIN_COMMENT_WORDS_FILTER
+ const REMOVE_CRINGE_AGGRESSIVE = false; //刪除所有帶有“CRINGE”的評論,而無需查看MIN_COMMENT_WORDS_FILTER
+ const REMOVE_SELF_LIKES = false; //刪除任何懷疑喜歡的評論
+ const REMOVE_SELF_PROMO = false; //刪除任何懷疑要求訂閱者的評論
+ const REMOVE_ATTENTION_SEEKERS = false; //刪除所有可能引起關注或與視頻無關的評論
+ //const FLAG_INSTEAD_OF_REMOVE = false
const BLOCKED_USER_URLS = [
// EXAMPLE: "https://www.youtube.com/channel/abcdefghijklmnop"
- ""
+"https://www.youtube.com/channel/UC_9MEREuQIYD50JYM1ODkyQ",
+"https://www.youtube.com/channel/UCoxz3ojUv_LtKg9szPcOWbA",
+"https://www.youtube.com/channel/UChtHOF58i5mAuiQbYK9t8Bw",
+"https://www.youtube.com/channel/UCfdX80qUCSS0vmVA8-Yiv7g",
+"https://www.youtube.com/channel/UCH4tTq1pvv8uBzeml4krf3A",
+"https://www.youtube.com/channel/UCOzgx6RTUq4WUCj6VTK1jyg",
+"https://www.youtube.com/channel/UC9XEgZxYEdMqvmrxGufT2JQ",
+"https://www.youtube.com/channel/UCXAzDYIwqKvOpLkuujn-i_A",
+"https://www.youtube.com/channel/UCDPUp1dNSBSVMZVZNEdILgQ",
+"https://www.youtube.com/channel/UCQmFtHQzx7U66i3lQ_SlueQ",
+"https://www.youtube.com/channel/UCn-C5BneFJEqpWPn1igWY6A",
+"https://www.youtube.com/channel/UCsRtAUmC3ewXFFCSLejKL7Q",
+"https://www.youtube.com/channel/UC3-3poWKR8eX7-_whMLKOog",
+"https://www.youtube.com/channel/UCKn0EEWRi1xxv7h1DWQicRg",
+"https://www.youtube.com/channel/UC0AWtStG4ftJaCueGEwpvYg",
+"https://www.youtube.com/channel/UCnzSnEld1NHU2g9UjpL2Rpg",
+"https://www.youtube.com/channel/UCdGZbnVuJm3Do8hkLUN45Vw",
+"https://www.youtube.com/channel/UC7l5evya93r2YnQbQtUYztA",
+"https://www.youtube.com/channel/UCm8vlO0WLuwbaNse_uB2wXQ",
+"https://www.youtube.com/channel/UCkf3L4ioAL_u_t2IZ7ixllQ",
+"https://www.youtube.com/channel/UCkJ3f2gOiEdLf1jJXw7GY-Q",
+"https://www.youtube.com/channel/UCYsSOeWnH7OzYGTkHmQEqPA",
+"https://www.youtube.com/channel/UCaok-uoR1huAVOUCierFnFA",
+"https://www.youtube.com/channel/UCIkLHgizD9jAzxyC86_7Cwg",
+"https://www.youtube.com/channel/UC50Z3uKRvl2RHmbEgT8WrCw",
+"https://www.youtube.com/channel/UCChgrlsIRQ1tvzl1ouJtfuw",
+"https://www.youtube.com/channel/UCMOm7CStP9ZftK_kz4QWivw",
+"https://www.youtube.com/channel/UCY_4grkTj5u2Rv8mVXKgUpg",
+"https://www.youtube.com/channel/UCUGMhgUo6Iic12CPEIO1WUg",
+"https://www.youtube.com/channel/UCuYR295iv-ID2PceAFHQzJA",
+"https://www.youtube.com/channel/UCSDYrkcG-2yWZnMvL8eMtmQ",
+"https://www.youtube.com/channel/UC047cKmDquJSfrkFA9k4b2Q",
+"https://www.youtube.com/channel/UCimH221MutxRtAaXyvJT0QQ",
+"https://www.youtube.com/channel/UCEECpi8wkQ0poxz9vH20yVg",
+"https://www.youtube.com/channel/UC3D_-hHsHoGoKbhKpklRNMw",
+"https://www.youtube.com/channel/UC-dxSWeZtdwhiwgGBgsagNA",
+"https://www.youtube.com/channel/UCBizsz4N1h0fpBK68ln8_ZQ",
+"https://www.youtube.com/channel/UC1Z-BGfVudM0gComRcO4bDg",
+"https://www.youtube.com/channel/UC9jSfhpigWGDNcdpWbwOgrA",
+"https://www.youtube.com/channel/UCW3dz-ob3kpnifSQy_7lqtg",
+"https://www.youtube.com/channel/UCKQ_Jev1KQM4wRIEsHMQsuQ",
+"https://www.youtube.com/channel/UCj8IdodovLtI2yy1hE7mI6g",
+"https://www.youtube.com/channel/UCufEy0T3LuO2Cgl0foKdFuw",
+"https://www.youtube.com/channel/UCJTKBKzPiQaGSCBrVp5oi7Q",
+"https://www.youtube.com/channel/UCuoxNjUenK4vq0SMNwhfFFw",
+"https://www.youtube.com/channel/UCDdtv097y769nXr6WOWTYeQ",
+"https://www.youtube.com/channel/UCUGh0owo-idkwXtvU4y9rBw",
+"https://www.youtube.com/channel/UCGLBD41Ccknfg1E88qn7CIQ",
+"https://www.youtube.com/channel/UC6ziCQt3GCDbag6KMmxtACQ",
+"https://www.youtube.com/channel/UCvXH7o15MqRN0LFH7Jd-q9g",
+"https://www.youtube.com/channel/UCEfRRwKsVAD66y2sdvMkwmw",
+"https://www.youtube.com/channel/UCmtjbOMULdQgRji7eKq_gdQ",
+"https://www.youtube.com/channel/UCQpvrgbiPU3ZljOKmNYZ_oA",
+"https://www.youtube.com/channel/UCchoh9WrIfl0-2wCZdpQ2Gw",
+"https://www.youtube.com/channel/UClgeJikr86mkVczpEvuVkZg",
+"https://www.youtube.com/channel/UCAcH2iOPbkYe2Bh-WNZMIGw",
+"https://www.youtube.com/channel/UCf42H-clnnMJ7HeRtSwvdVw",
+"https://www.youtube.com/channel/UCJLFhxVRZDMetLhj2fA9RmQ",
+"https://www.youtube.com/channel/UCqZJkbmjB1hjcxkiXJgaL4w",
+"https://www.youtube.com/channel/UCadSJ5VRKRqE6EBEB4n0wGA",
+"https://www.youtube.com/channel/UCP0PEMORQgtKPymMq6Y0kYg",
+"https://www.youtube.com/channel/UC8wc-mtVlPg1WLys5zl0uKg",
+"https://www.youtube.com/channel/UCf7fbdBH-zWgDEVMuiJHxMw",
+"https://www.youtube.com/channel/UCq4vaY7lLw2VHWikwSPgLmw",
+"https://www.youtube.com/channel/UCOQW-rQVfb-MP10Mfi48LRw",
+"https://www.youtube.com/channel/UCtQE5jUBWQnCYqppbB4OZ6g",
+"https://www.youtube.com/channel/UCBvOzT0jPALPXwUFXSxI3Fg",
+"https://www.youtube.com/channel/UCz8dV9aW0KMdIfmFFKxOPKw",
+"https://www.youtube.com/channel/UCU5JG5fRnGp04pmzYzEfpJw",
+"https://www.youtube.com/channel/UC4Etxkl_hJYLIyV5iln9a8A",
+"https://www.youtube.com/channel/UCmCJiCNATZ_1PzddrzSw-7A",
+"https://www.youtube.com/channel/UCfpRmhLGoybfwXHNCl0h5wQ",
+"https://www.youtube.com/channel/UCF7EXxHTmop35CNCO0Z_tlw",
+"https://www.youtube.com/channel/UChBKUdHpAE2isI_6prLVZ1Q",
+"https://www.youtube.com/channel/UCvRh1yqWsXGayUnDNEYWgFw",
+"https://www.youtube.com/channel/UC6RdAB9UNZj5bBu-7dug9UQ",
+"https://www.youtube.com/channel/UCavqzrIg5ubEH_9KnGCJs9g",
+"https://www.youtube.com/channel/UCCLDYB91ZQyUbyrPM4CldLw",
+"https://www.youtube.com/channel/UCw9ETaZvdNq36899LyPlsxg",
+"https://www.youtube.com/channel/UCOKtXSZFnxhQXuuumb-eREA",
+"https://www.youtube.com/channel/UC40Le18FqZ1AHTUsNmfZ14A",
+"https://www.youtube.com/channel/UCnAiFDPiDwmcTiYH_NIu2ng",
+"https://www.youtube.com/channel/UCvdFYf588vCzpgStV7HfRyg",
+"https://www.youtube.com/channel/UChUV6Z7LKMw62RzfN4vvjhQ",
+"https://www.youtube.com/channel/UCOzv_AKFqPQzoWG2ecPd_Rw",
+"https://www.youtube.com/channel/UCvsT4GPoeb1ACdwpWPQyBCQ",
+"https://www.youtube.com/channel/UC8BXrbBS7N3FaHvUB4pI8IA",
+"https://www.youtube.com/channel/UCEryXc7XyiSi03btkp81ajQ",
+"https://www.youtube.com/channel/UCnLd80LPgiujDsONgEyOg1w",
+"https://www.youtube.com/channel/UCs80lpeZkv-vQabOvOwAnQg",
+"https://www.youtube.com/channel/UCVcswkDpirgFV7bS3IICwrw",
+"https://www.youtube.com/channel/UCeaOVRt0Y9gEXfdMLhmQ9ZQ",
+"https://www.youtube.com/channel/UC5Vevd14DhYP3je1dAwgBew",
+"https://www.youtube.com/channel/UCTnh2_v1aNlQPMxeH6f2P9Q",
+"https://www.youtube.com/channel/UCojiiB3ZhWRsdvH6aNVfyTA",
+"https://www.youtube.com/channel/UCexNS5F4k4uvVzL4WD5qZZg",
+"https://www.youtube.com/channel/UCTge4i7PBDn2aXxQVfxcC_Q",
+"https://www.youtube.com/channel/UCyDCT_U8YeiCnOP7g105qQw",
+"https://www.youtube.com/channel/UCgRdHxKUT4hk4bbH0TmKVzg",
+"https://www.youtube.com/channel/UCFXL7fsHx9wB7bGrMitGxwQ",
+"https://www.youtube.com/channel/UCuthHDUDDyqfgfE0tayOFRA",
+"https://www.youtube.com/channel/UCki14B3PXgKgtW6kbDN09Lg",
+"https://www.youtube.com/channel/UCaWS1UYxWVwSSzuVgMVMLdQ",
+"https://www.youtube.com/channel/UCzrobWGtFO5Fgjr_UzyycGw",
+"https://www.youtube.com/channel/UCDY767IqJEfFhLqyjcCzpdg",
+"https://www.youtube.com/channel/UCjbD_m_OscLkhOVfOCC14TA",
+"https://www.youtube.com/channel/UCqL4CaOriJuodQzK_92H39A",
+"https://www.youtube.com/channel/UCiBf639Ggq_GuRRUW3ygeTw",
+"https://www.youtube.com/channel/UCptviOAslbbjz7rf6ZgxxqQ",
+"https://www.youtube.com/channel/UCqOHnW5y4ERCVFIhpEqs50g",
+"https://www.youtube.com/channel/UCneXcbXGPoozdC88TEcpPuA",
+"https://www.youtube.com/channel/UCzVRhjh9l8TSbVF_mOE5Fig",
+"https://www.youtube.com/channel/UCrmBTwIYNO5fc_JUIPe9MOg",
+"https://www.youtube.com/channel/UCqrowV92nYcYrl1DWhhs-5A",
+"https://www.youtube.com/channel/UCiDZIV5c9LNP0c1u9lATOZw",
+"https://www.youtube.com/channel/UCuq1CCiWaK5qXhjz87L6iQg",
+"https://www.youtube.com/channel/UClHD6yeLyLuD1ERdur-suBg",
+"https://www.youtube.com/channel/UCqfp6W5tZ_XzR0boEh2CS3g",
+"https://www.youtube.com/channel/UCsLiMyPnP2Xd0Rlnblag1ww",
+"https://www.youtube.com/channel/UC2JSfX5yfe-EwkaIblpRiUw",
+"https://www.youtube.com/channel/UCqblhVSCF0jUj6XYriTnexw",
+"https://www.youtube.com/channel/UC4z4vIzrcUi0BKja_3223gA",
+"https://www.youtube.com/channel/UCyCeZX0lvQpfpQ5sZ7pp5aw",
+"https://www.youtube.com/channel/UC92hM8y-I-2Vq_bOH3oRJFQ",
+"https://www.youtube.com/channel/UCCYkWBMMK9IaHjiShbbDjEg",
+"https://www.youtube.com/channel/UCiATUHzIQxZoUFyGhvBQ-hA",
+"https://www.youtube.com/channel/UC4XTKWjlhwHwN1-XQhKQofw",
+"https://www.youtube.com/channel/UCSMUw9BGBK9xtZzPcw3T0-w",
+"https://www.youtube.com/channel/UCqYXmA9diUWvg21jQNdi3aw",
+"https://www.youtube.com/channel/UCAseiw-v6UcXpi7-e8PwtXA",
+"https://www.youtube.com/channel/UCr2H9PcnAKTeiJIOlPYd_2A",
+"https://www.youtube.com/channel/UCJ7ZSXmyW2oj5QZM0xmErzw",
+"https://www.youtube.com/channel/UCuLBpCFdIb0Q9CGb747X85g",
+"https://www.youtube.com/channel/UCMQW4cjfxWTsmbpxFAuYeTA",
+"https://www.youtube.com/channel/UCk_6aOIeKnBnSvMAU83Jkkg",
+"https://www.youtube.com/channel/UC0S68LoIjQ3Rle0IIOG-URw",
+"https://www.youtube.com/channel/UCageDnxXdH0W3n0ISR1kKQQ",
+"https://www.youtube.com/channel/UCDqzNhU79bzeb-40t2Hv71w",
+"https://www.youtube.com/channel/UCaFxlEwz2H1VZAGYNulE7vA",
+"https://www.youtube.com/channel/UCbaR2xaiCCGfC-1HKg7nnxw",
+"https://www.youtube.com/channel/UCvL3LstCmhcJjUSEmaM6HBw",
+"https://www.youtube.com/channel/UCIWvMSsaA5wtmPZ50vhfZnw",
+"https://www.youtube.com/channel/UCf7qM9B0ES1Ye0Sbks53FGA",
+"https://www.youtube.com/channel/UCt6dys60tUHkt_Y-Du98gXQ",
+"https://www.youtube.com/channel/UCc_F9Z_4uRAf1CToUwESiVQ",
+"https://www.youtube.com/channel/UC37YoA3avyxMnT_lOYEKtQg",
+"https://www.youtube.com/channel/UCE8Gb8IpdlB66jlr_Lfuh4A",
+"https://www.youtube.com/channel/UC1mB7w69tHXJjLcUKHkYNjg",
+"https://www.youtube.com/channel/UCU1kxlRtpg-oKRfFP1g488Q",
+"https://www.youtube.com/channel/UCWbbxi_wwYQwLHGMY_P8xpQ",
+"https://www.youtube.com/channel/UCP8LI3EI1II-mRMxaBDOaeA",
+"https://www.youtube.com/channel/UCzQyEro9UzdHiQF1JPyvnAA",
+"https://www.youtube.com/channel/UC0FZ4EQlfqc41clR6z0YY8A",
+"https://www.youtube.com/channel/UCbKphPuKF97LSagQTf8jgrw",
+"https://www.youtube.com/channel/UCeyXE3Tx-92-I0_VYlAywqw",
+"https://www.youtube.com/channel/UCArDGv7dVy-2l2NP0RmV2fA",
+"https://www.youtube.com/channel/UCOwZOcaLc92JZasmu6LfR4g",
+"https://www.youtube.com/channel/UC6bNJ2ucvatE_sDgiV734SQ",
+"https://www.youtube.com/channel/UC0o4koE3Pp3n-igyRK5mHlw",
+"https://www.youtube.com/channel/UCF2UacT6Xa8acY8B9JqtEcA",
+"https://www.youtube.com/channel/UCLPJzOJ3Lov7_swa-dypc9Q",
+"https://www.youtube.com/channel/UCKCBnZ0sR9r1SvYEyXjF0DA",
+"https://www.youtube.com/channel/UCrJs3zDzp43cCveflrl86mw",
+"https://www.youtube.com/channel/UCAHT8Makze0uXbc6rjGnIzg",
+"https://www.youtube.com/channel/UC3IWZkPxJaeQE5E1njMBj3A",
+"https://www.youtube.com/channel/UCj-zfQ2cHoL-LVD43I38HQw",
+"https://www.youtube.com/channel/UCzTBMdIfIZ1xZdMkN23zOVw",
+"https://www.youtube.com/channel/UCtzzTngMhjv2hm87o_Ymnpw",
+"https://www.youtube.com/channel/UCzPZI-6WRsk7JxcVT4FkcIA",
+"https://www.youtube.com/channel/UCZPvbauLBSMEIgpSYJjQhQw",
+"https://www.youtube.com/channel/UCjNqFs9x80ymJmD44NlMDxQ",
+"https://www.youtube.com/channel/UC228WDpmpNILp2ItuhIdWTg",
+"https://www.youtube.com/channel/UCEQc8Hlbpq3PZ8OKYNavLHQ",
+"https://www.youtube.com/channel/UCauJoyTMNl7JR6L_tETd17g",
+"https://www.youtube.com/channel/UC0-BzsGkP5d9wGVm9pQCyxw",
+"https://www.youtube.com/channel/UC4WG17uw0LSQ1v8Pw3K-eQQ",
+"https://www.youtube.com/channel/UCuQPY35DHYoE7DqIXYqL85g",
+"https://www.youtube.com/channel/UCVp45mSoL1J1R7EnEYUuojg",
+"https://www.youtube.com/channel/UCj4bvVVgX-AwIDG5DJHIELw",
+"https://www.youtube.com/channel/UCvR7jcbIPMYWvSNyulkW-6g",
+"https://www.youtube.com/channel/UC8uQj_Hf7OtLzQbJberOF1w",
+"https://www.youtube.com/channel/UCkXEo6IRmeAP1qIMLhL-ogA",
+"https://www.youtube.com/channel/UCa0qnFW7YyqIkmg-x50Ld4w",
+"https://www.youtube.com/channel/UCy4LIPxqvYqi_bT-qKlYEGw",
+"https://www.youtube.com/channel/UCCpKIry8QLpwL8SSk1h1vjA",
+"https://www.youtube.com/channel/UCSwY-GvzQe4EBbF9HtdQmkw",
+"https://www.youtube.com/channel/UCkUlWnpyPICNmKNd87ykZrg",
+"https://www.youtube.com/channel/UCx0YjOJlGQjnWr7WEhmeYjw",
+"https://www.youtube.com/channel/UCoef9ZeiPLS9fAg3wuFmAkw",
+"https://www.youtube.com/channel/UCzcCYR7rdVWainmKOHdkyWg",
+"https://www.youtube.com/channel/UC3ejLwoVWU57dLG3w2YxkHQ",
+"https://www.youtube.com/channel/UCCHEnUdrNT-4-Ht__ebsSvw",
+"https://www.youtube.com/channel/UCCvItwy204YLBKcYksWzwAA",
+"https://www.youtube.com/channel/UCKhtP9Wb4UvWK-H50Bk_Xhg",
+"https://www.youtube.com/channel/UC6NsoZsOVi_DqK0rLPJJ80Q",
+"https://www.youtube.com/channel/UCVMchl0my9iYe-EkY31YHJg",
+"https://www.youtube.com/channel/UCP5ZwP_6fbBfofvSXsD4x4A",
+"https://www.youtube.com/channel/UCvYF4COvhlsN4AUeHwXdcLQ",
+"https://www.youtube.com/channel/UCSKRB53P8e2Xl4Oce6aP7Qw",
+"https://www.youtube.com/channel/UC34m95mVsHeDudoQK7L4UCA",
+"https://www.youtube.com/channel/UCPJMHYNEbqXO62VEiqu7MmA",
+"https://www.youtube.com/channel/UCOD3sx_CDXYYOJQjM3ALxSw",
+"https://www.youtube.com/channel/UCkAHep8FX54KkE-faD65NJw",
+"https://www.youtube.com/channel/UC_cMy6psio8mOjx5TkSLPlA",
+"https://www.youtube.com/channel/UC_3m8w3Fm5800qtIpiAagZw",
+"https://www.youtube.com/channel/UCykmbuEDLdEeYRnKK1yYEcA",
+"https://www.youtube.com/channel/UCKg1hgnfqn5L-ra8GRDGN0g",
+"https://www.youtube.com/channel/UCmsaTIgT7DCFBXaBWDKf5Ig",
+"https://www.youtube.com/channel/UCvMybAEXJHuL-l2qF4nnr0w",
+"https://www.youtube.com/channel/UCHe283AGuZ2wpXjix4lH4Rw",
+"https://www.youtube.com/channel/UC9H5YNaRZIWjOoKyGCA4XZw",
+"https://www.youtube.com/channel/UCCADNbBfU31n-5CkLk3YPxA",
+"https://www.youtube.com/channel/UCSSR1R-dV_Bg1fi5cXpFj1w",
+"https://www.youtube.com/channel/UCM1c6R_YNm6DVIF1GpKkfCg",
+"https://www.youtube.com/channel/UChP_fUssGOl7PWqc8c3wsMQ",
+"https://www.youtube.com/channel/UC4Lq_Jgkk9zCK0jlf-bntxA",
+"https://www.youtube.com/channel/UChwc2FlXU7Tysp-MX_XUWoQ",
+"https://www.youtube.com/channel/UCr0W02XOOvq_m_1JbSj-4Og",
+"https://www.youtube.com/channel/UCbQsBHyeth_dFyz5iheWu9w",
+"https://www.youtube.com/channel/UCewuYt_-HPRotN1rx-YHlFg",
+"https://www.youtube.com/channel/UCPjlrblk4ptWRDXUrblalxg",
+"https://www.youtube.com/channel/UCHcGVdVy3LVOjQ2mq1cYWiQ",
+"https://www.youtube.com/channel/UCYnG8HC_nDOuSZgGNAGcuzw",
+"https://www.youtube.com/channel/UC6Tlo7B-B4GSvAyT263Lezg",
+"https://www.youtube.com/channel/UC5tANjxaL3xiltLC31_H0Sg",
+"https://www.youtube.com/channel/UCLHzqNIppVjzYogMxAzhtTA",
+"https://www.youtube.com/channel/UCXV8a9NXPkGzbETktTm11oQ",
+"https://www.youtube.com/channel/UCwQAIlLL7wDeG-yZTEg8T5g",
+"https://www.youtube.com/channel/UCJGnVVxisqjqrbKjq6s0ZaA",
+"https://www.youtube.com/channel/UC1BUzuGd_EgrE0coArJioFw",
+"https://www.youtube.com/channel/UCX6XtbnZMHKN_trTXtpd72w",
+"https://www.youtube.com/channel/UCH6ajgmJyYzVa8BuZkOke1Q",
+"https://www.youtube.com/channel/UCWBNFmVMN_M_gLCvUZ33-Lg",
+"https://www.youtube.com/channel/UC9eWSLBZQxqPSSkQqyAdKDw",
+"https://www.youtube.com/channel/UCxAgeAl9glzBCi5kQfBNrUQ",
+"https://www.youtube.com/channel/UC0AqCSh1n65uq5Kvd400Axg",
+"https://www.youtube.com/channel/UCJttRUSHFdjhVv-jGVNIpFw",
+"https://www.youtube.com/channel/UCtdHhbmKmoo31QX0EF8oZoA",
+"https://www.youtube.com/channel/UCTlSZ-DQXZw7eDfqFZtbWyw",
+"https://www.youtube.com/channel/UCTmDiItSv-KSPZCwF62ePYg",
+"https://www.youtube.com/channel/UCLsvc9I2HxFPif_WfPT1jzg",
+"https://www.youtube.com/channel/UC07qsRJmdqgcNZ0jg-v5C8Q",
+"https://www.youtube.com/channel/UC3tTWhlFHXdRomz5U8z8VxA",
+"https://www.youtube.com/channel/UC38fgKcE0bu8oPD9RNdDSEw",
+"https://www.youtube.com/channel/UCY1CvMHGwntDdpuQ7NkYW2Q",
+"https://www.youtube.com/channel/UC9n4kyLxWxhFqhT_-W9D3aA",
+"https://www.youtube.com/channel/UCvA9BgR3z49uRxwGOtRwe4A",
+"https://www.youtube.com/channel/UCaQeTDIAxGusPucjCEI-dnw",
+"https://www.youtube.com/channel/UCKk8GmYfqgkoDCisJlGtn0w",
+"https://www.youtube.com/channel/UCndTnYI-flBecyG3FK9LoWA",
+"https://www.youtube.com/channel/UCoGE5pCWJup4JqTTluQDVcQ",
+"https://www.youtube.com/channel/UCSZDdo3JzEDrWpmocW3ZIOg",
+"https://www.youtube.com/channel/UCqRqc4ZMdvQbSBALebDr4vw",
+"https://www.youtube.com/channel/UCTMX4uZlBN5uyyny_7euYfQ",
+"https://www.youtube.com/channel/UCYJ81x8aypiwD4-wAfinTEg",
+"https://www.youtube.com/channel/UCLDciPTwdhcHm9ujqIWSTVQ",
+"https://www.youtube.com/channel/UCVPn9jAn9B00PR-P84Mis8A",
+"https://www.youtube.com/channel/UCxgse9uiLOs00B6Lg2VH1og",
+"https://www.youtube.com/channel/UCoKzWL6ftul500Kld81Nx4Q",
+"https://www.youtube.com/channel/UCqJDMnvTXmRrViGfPpyxd5w",
+"https://www.youtube.com/channel/UCDJgx1HPUzTKSAH_oJpM6Vw",
+"https://www.youtube.com/channel/UC0FJcm7E3vCwnLpVSYTctVg",
+"https://www.youtube.com/channel/UCbtb6qSRP6LpAVGWDg8kByA",
+"https://www.youtube.com/channel/UCSebvw8p6SLasdMfAvEJz3w",
+"https://www.youtube.com/channel/UCPLvUXqxXSS_ntrx7b9Wd8Q",
+"https://www.youtube.com/channel/UCrpt6RhR6QAredyXfIx3_zg",
+"https://www.youtube.com/channel/UC_9oUNNlSGBtSJKnfaU8Ekw",
+"https://www.youtube.com/channel/UC-ycCI1KrBOeEEE5STvhifA",
+"https://www.youtube.com/channel/UCXLOam5YOytDSk2v4UhcPZA",
+"https://www.youtube.com/channel/UCKY2X_x9PYZjyrjtoFtKqxA",
+"https://www.youtube.com/channel/UCGPkNQiNvNmasv4sOvaRtuA",
+"https://www.youtube.com/channel/UCWL4ZfTfatY1TuJD1I-w3iQ",
+"https://www.youtube.com/channel/UCS6HHo5707os7N2jL-OYwyw",
+"https://www.youtube.com/channel/UCa9FnvML4Q-qfKwpJ5wS2kg",
+"https://www.youtube.com/channel/UC6d7ONgRlEoC2dCjgQS2fnw",
+"https://www.youtube.com/channel/UCcDzZTCpPmRsNjDUmKr3zig",
+"https://www.youtube.com/channel/UCImsp3FepiBOChGn8PbbPxg",
+"https://www.youtube.com/channel/UCnb3e4067u9Ublk-cUSnL1Q",
+"https://www.youtube.com/channel/UCyj1Lg1DMbuq7vHxneytqFw",
+"https://www.youtube.com/channel/UCcJJCoNq1L0Zx_oAIFnxF2g",
+"https://www.youtube.com/channel/UCpVvriOzpSgXR1po8aNZiLQ",
+"https://www.youtube.com/channel/UC5pCgdthwjK9z_9ZtLI8eWQ",
+"https://www.youtube.com/channel/UCjJZUYINrakZMGsgAEp-2mQ",
+"https://www.youtube.com/channel/UCUMO6en1XWI9K8EvsH3WfcQ",
+"https://www.youtube.com/channel/UCiJeMUTmEyXfkAlKTG5HyXw",
+"https://www.youtube.com/channel/UC0r6fWfWHfUFZjmGm-rFKUA",
+"https://www.youtube.com/channel/UCJc0DliVidg3lQKZwODUD9g",
+"https://www.youtube.com/channel/UCt-eOZK402y-T22q2zorZIA",
+"https://www.youtube.com/channel/UCuHXYYniF8eTs-yEjmPYh5w",
+"https://www.youtube.com/channel/UCP1kOgZzdfGVxQDKaF7XReg",
+"https://www.youtube.com/channel/UCpCyWj4eYYuWtxV6Hd9UkJA",
+"https://www.youtube.com/channel/UC3QgenVLlAO9Q4kMpQGB_ow",
+"https://www.youtube.com/channel/UC8L3YsjVbFKWrn3JbfC2duQ",
+"https://www.youtube.com/channel/UCa1wQO16NnBzoxWi5yWNWLg",
+"https://www.youtube.com/channel/UCBNG_Ap5xH5BnzKoPjhG5iw",
+"https://www.youtube.com/channel/UCyQfjxrvoWzkQsvE_uoRDbw",
+"https://www.youtube.com/channel/UClExonp0gnjrAdiWzhipAiw",
+"https://www.youtube.com/channel/UCaSq0son6p3K0HaEfjgzbTA",
+"https://www.youtube.com/channel/UCMEPl5eqIBI2lZSH_bB7MHA",
+"https://www.youtube.com/channel/UCt1ScyVYSEgKpEc3uBzxx8w",
+"https://www.youtube.com/channel/UC57jfgPkIuwKf11-Lv8hnXQ",
+"https://www.youtube.com/channel/UCj3YyoHS27k10Rp5JjwhF4g",
+"https://www.youtube.com/channel/UCQCpNEwYL8X5O8t-ahnQdKw",
+"https://www.youtube.com/channel/UCPIH1QQdrQyR1SGacyu7-wg",
+"https://www.youtube.com/channel/UCXvEHm41mMZH2X91JRw1aVw",
+"https://www.youtube.com/channel/UCQihsLoa8rBvlVumXvjAFdw",
+"https://www.youtube.com/channel/UCN7Qos0cejOJOXtroJXXfqA",
+"https://www.youtube.com/channel/UCL_EOMafp01QYkBiFifaSIw",
+"https://www.youtube.com/channel/UCi1EfTUpAsLHp5XG9DiLCcA",
+"https://www.youtube.com/channel/UCtDeGhSNog5UNF21I1kEgaA",
+"https://www.youtube.com/channel/UCe48xt9oWhDeiAAC-pb03RQ",
+"https://www.youtube.com/channel/UCiA-Yr-dnao9LIuj-BTkMzQ",
+"https://www.youtube.com/channel/UCli4vEpoL0gGDBAY4zAErwQ",
+"https://www.youtube.com/channel/UCG0MKYbU2NlQwkDB-8lY6nQ",
+"https://www.youtube.com/channel/UCZ9IEmX_iv3smN-ArAP-Bww",
+"https://www.youtube.com/channel/UCBh_OTBKYHzR2XTzgo9SJBg",
+"https://www.youtube.com/channel/UCV8ezWgYYPbeucN7orDtZ4g",
+"https://www.youtube.com/channel/UC3l-6h1JWm18ymbMVIftAXA",
+"https://www.youtube.com/channel/UCo04-axsoDGlZlkllmdZYdA",
+"https://www.youtube.com/channel/UCk867XLrSGJWHPR7QFLaIVg",
+"https://www.youtube.com/channel/UCgORbIOPCVxprIHbuoY6A0w",
+"https://www.youtube.com/channel/UCLRMCdnnGr1kpprEmrBWpBA",
+"https://www.youtube.com/channel/UCMBi7sdmduofbltybcRAs9g",
+"https://www.youtube.com/channel/UCRTTAK85ezj7Jjt3C11A2kQ",
+"https://www.youtube.com/channel/UC8YS44bKbOivJB-avFjgZoQ",
+"https://www.youtube.com/channel/UCVdB35H8e6yjRSjgd3X8tRw",
+"https://www.youtube.com/channel/UClSssN-AKRiovcC6CtUhi4g",
+"https://www.youtube.com/channel/UCyAP3m_aa63ncyhxW8py-Ag",
+"https://www.youtube.com/channel/UCxEe-NwfPGp-cEUx2dG4IlA",
+"https://www.youtube.com/channel/UCB1CWficw29usolmSizuNOg",
+"https://www.youtube.com/channel/UCVP6fvXk1tU1GK2XbCr_dNg",
+"https://www.youtube.com/channel/UCxP4-FvubHdW3adjmMFqfEg",
+"https://www.youtube.com/channel/UCMjPqLl1rDV6hLdzH-KPElQ",
+"https://www.youtube.com/channel/UCWNyx5Af5cvv5eGlM-LFGhA",
+"https://www.youtube.com/channel/UC6RMnTC_2QE4E262N-FUukA",
+"https://www.youtube.com/channel/UCRXEHnYMqDG6rrB-80gaZlQ",
+"https://www.youtube.com/channel/UCeyITZGFMrf6obehR1UmVrw",
+"https://www.youtube.com/channel/UC0Jo74RUk3G-HoRdChCdORw",
+"https://www.youtube.com/channel/UCASps6fB5Dt6PNM85JOTxTA",
+"https://www.youtube.com/channel/UCmuoiCawZ-W3wRmTIBobjbQ",
+"https://www.youtube.com/channel/UCBn3nobeRvjgLVrzLHa5P2Q",
+"https://www.youtube.com/channel/UCkJdzh5WsE-SyZdcL2WnMzQ",
+"https://www.youtube.com/channel/UCPvKSGMfnwCQCYxrNniucaA",
+"https://www.youtube.com/channel/UCJy0j_l3OmiEEOeriHsgFdg",
+"https://www.youtube.com/channel/UCGBEjBG6ZP_TV_ecuaYNWuQ",
+"https://www.youtube.com/channel/UCFHAVTWeT8Rxao1jR5DtnZw",
+"https://www.youtube.com/channel/UCoWdh6rQhrdGhF8LwOQi-Zw",
+"https://www.youtube.com/channel/UCwHcMK5aL3qwIrnDIvL6oWw",
+"https://www.youtube.com/channel/UCyuHUTQJP9V1i8_kUWlF9YQ",
+"https://www.youtube.com/channel/UCW7vPm7ZlPei05E0l1tooRg",
+"https://www.youtube.com/channel/UCuW8lU5TYxJZYNTcUE8KB1A",
+"https://www.youtube.com/channel/UCMU0WGRnogfnWiYYXdmYYAQ",
+"https://www.youtube.com/channel/UCQh9QZDWwWW83PnQtjeVl-g",
+"https://www.youtube.com/channel/UCPkrkfczHH8-a6QopKWqytw",
+"https://www.youtube.com/channel/UChzh_je1lN8sUY2_Y27UJkw",
+"https://www.youtube.com/channel/UCf2lQyP2e9-DNuSCS_k4Esw",
+"https://www.youtube.com/channel/UCOQV_A-33UbxBALQuTAWKrg",
+"https://www.youtube.com/channel/UCC0qmnc2QpOBYG-dS16jA-A",
+"https://www.youtube.com/channel/UCkg29nv9QZbJqfpr5V28rcg",
+"https://www.youtube.com/channel/UCJI_u39QIvxS0sRaSkDTklA",
+"https://www.youtube.com/channel/UCzge4m0kItBQZcd9YDvrThQ",
+"https://www.youtube.com/channel/UC0fGy12UnjwmxyRk72AYGnA",
+"https://www.youtube.com/channel/UCvDvRaRYBvLatjMc_g7f-eA",
+"https://www.youtube.com/channel/UC0j259nZfveJW-Cko3ldlOQ",
+"https://www.youtube.com/channel/UCnthhOIkB7M4aWjH3WBMBTA",
+"https://www.youtube.com/channel/UCTnVw743ITw29-khyAo3r8Q",
+"https://www.youtube.com/channel/UCIzB34XFTFvC1og2ZMwH5mQ",
+"https://www.youtube.com/channel/UC5dmcTLHassVPfzDFWIoPZQ",
+"https://www.youtube.com/channel/UCao2dEcdWeq6nVa3hMo_ryA",
+"https://www.youtube.com/channel/UCjGjIH6-wSoH9JunceqbTTg",
+"https://www.youtube.com/channel/UCaX-QLiSFhd82weeibVsXqA",
+"https://www.youtube.com/channel/UCWWYR_L8oqagcmh_rTH9OTA",
+"https://www.youtube.com/channel/UCdlZElcmim5qdxUZWPh9Ujg",
+"https://www.youtube.com/channel/UCGDVkBVLOd2humTYu8QbUNg",
+"https://www.youtube.com/channel/UCzYicTLNh5phKvCnC3pLDKQ",
+"https://www.youtube.com/channel/UCKTBYG3XSCJwW3MHyi-OnCw",
+"https://www.youtube.com/channel/UCKENf1edHSHSqaH42oxGUng",
+"https://www.youtube.com/channel/UCVPB7WyolrZFOZ0tZDAbVhg",
+"https://www.youtube.com/channel/UC-DfqwjyNYi5NuHSmu7EsWA",
+"https://www.youtube.com/channel/UCKa_pfn7cGOxe7Aw0BTfcKw",
+"https://www.youtube.com/channel/UCM4BPk9dv2qQIsg_icA02DQ",
+"https://www.youtube.com/channel/UClOlGE-zZgVHmItLyuNxm3w",
+"https://www.youtube.com/channel/UCy52V2ddZ73VtS8ajQ_Z-eA",
+"https://www.youtube.com/channel/UCrk9nbw1CNYHA9GIUk0--_Q",
+"https://www.youtube.com/channel/UC1ymT6a05cdhY3JMvT8kSDQ",
+"https://www.youtube.com/channel/UCAJbI2r-4stMh8OhzhKv5SQ",
+"https://www.youtube.com/channel/UCty0wkjvSMuQ4UpzgyPCffA",
+"https://www.youtube.com/channel/UCVYYYlZwaHHKYMMqfEV0WlQ",
+"https://www.youtube.com/channel/UCbofQtk-XjOIZFOZAtvKjqw",
+"https://www.youtube.com/channel/UC5UI0AQpWX-21fIscVb1HLg",
+"https://www.youtube.com/channel/UCswqnSZdkkZQ9kxpsjNEdcA",
+"https://www.youtube.com/channel/UCcU_igT7wPkQi2_CIEVwmpQ",
+"https://www.youtube.com/channel/UCBM5q9ZS7hN5yZKIFGesKFw",
+"https://www.youtube.com/channel/UCNJJgLCLjbVSP7KneE3pzKA",
+"https://www.youtube.com/channel/UCwc6XHlRy_zYhCLTf5v0jkg",
+"https://www.youtube.com/channel/UC-UrFbSBHLWYekPYNlGG_BA",
+"https://www.youtube.com/channel/UC2KW4XZc09okNnhGKwi7JSw",
+"https://www.youtube.com/channel/UCLr-nY6mdg5e1YIyMdkwoXw",
+"https://www.youtube.com/channel/UCFe3_FjoORUZRp_asDOaaEA",
+"https://www.youtube.com/channel/UCWh6RZzB64XYSybBNqfFZfA",
+"https://www.youtube.com/channel/UCz3Op-q-1R82Dwq9Q6ShHYg",
+"https://www.youtube.com/channel/UCgF5NIOlzyhTdGaE0oLbV3A",
+"https://www.youtube.com/channel/UCXc6np470oJ_oN3doCX29sQ",
+"https://www.youtube.com/channel/UCQn5DRShiveV3LHeCOSUgfw",
+"https://www.youtube.com/channel/UCzVfoiXiphA1Vy7hWZjUpCQ",
+"https://www.youtube.com/channel/UCd3kXrGDSlKjRhe98owNJ1g",
+"https://www.youtube.com/channel/UCLoIzDgJ_DOyiK6axg6GxDA",
+"https://www.youtube.com/channel/UCn8zPM_LqmTW3Q0G69EjYOw",
+"https://www.youtube.com/channel/UCafeSwka4XYI9bIyiXne62A",
+"https://www.youtube.com/channel/UCGyvAuiun7ksK31124u9aYg",
+"https://www.youtube.com/channel/UCDN9HmfgRBY29jIqMoJ4I1g",
+"https://www.youtube.com/channel/UCqvMub5CEhQDk1typAzOH0Q",
+"https://www.youtube.com/channel/UCycuCwK9Bgimxy2hpU15zkg",
+"https://www.youtube.com/channel/UCOgjWL4TOr-dN2ghov3bhsA",
+"https://www.youtube.com/channel/UCiuWHKY8wyu8AMpDH3W6iJQ",
+"https://www.youtube.com/channel/UC7O27Si7efKYXDoFnz2zzEQ",
+"https://www.youtube.com/channel/UCPyfM7ONGn0nLMzakb8rseA",
+"https://www.youtube.com/channel/UCtomDhkusXaYQW1WGfgE5MQ",
+"https://www.youtube.com/channel/UC6O-SXIFwOjqvwVnUk2xY0A",
+"https://www.youtube.com/channel/UCqRG-7x7eqiBDeaVLfnt7kw",
+"https://www.youtube.com/channel/UCsF2g9eLsxDmNdUXq6TyXqg",
+"https://www.youtube.com/channel/UCUM4Ttzy1Ac8_tT15BzZ7jg",
+"https://www.youtube.com/channel/UCOzsMDc3YYwmRIPpvaAtj0w",
+"https://www.youtube.com/channel/UCRDX_hszt3MfnffeM0C6B0w",
+"https://www.youtube.com/channel/UC83wkG-XY33bcWvUncLK3Mg",
+"https://www.youtube.com/channel/UC2_8LYK100YEtshtEapN4xg",
+"https://www.youtube.com/channel/UC4ApxoEy1Z255hOiGULqjwg",
+"https://www.youtube.com/channel/UCggpgPUNudrFX8E3VAsrtRA",
+"https://www.youtube.com/channel/UCeiiU5uDWeKVGFDkOyg_yvA",
+"https://www.youtube.com/channel/UCE3ZOUjw5-rAtik0raDvqpw",
+"https://www.youtube.com/channel/UCIpA6zgliJeLFKw8JL1bWyw",
+"https://www.youtube.com/channel/UC7K8grNZcqvCeyQY6V9B3Qw",
+"https://www.youtube.com/channel/UC2eDGZ0T88r3TsY0ncmIfjw",
+"https://www.youtube.com/channel/UCG1b1hZiFhB4rueITWQNx4w",
+"https://www.youtube.com/channel/UCt3ZmeZecHPPkXAp5Lf5KVA",
+"https://www.youtube.com/channel/UC7IznvG-nP861Zuq_PZADnQ",
+"https://www.youtube.com/channel/UCt6mq01oHLSLpLtXfW0fVuA",
+"https://www.youtube.com/channel/UC44zsib6z6Lt33K-l42TcUQ",
+"https://www.youtube.com/channel/UClOuA-4v6uE09hHHm4mMx4Q",
+"https://www.youtube.com/channel/UCJBKNAADyc9kB9NUBWdtflw",
+"https://www.youtube.com/channel/UCrdcobkWCfhJpq7heidk2WQ",
+"https://www.youtube.com/channel/UCoj61YDim4HaLdEjKvD70qg",
+"https://www.youtube.com/channel/UCeDk4_9OqNoBy0YidTmtXYQ",
+"https://www.youtube.com/channel/UCNah1ooo2jsXRcYDXVhzYgQ",
+"https://www.youtube.com/channel/UCWbe0nM_BT78AAAHjmGALwA",
+"https://www.youtube.com/channel/UCWs57xSjoyti-O9xT6oKa8w",
+"https://www.youtube.com/channel/UCcgO2OAlTp6Y4t5tu6T-xRw",
+"https://www.youtube.com/channel/UCCQYZ_Cd4Sr0dYC8qdP6wbQ",
+"https://www.youtube.com/channel/UC4TWOhoYQ24SqnrqJEegu8Q",
+"https://www.youtube.com/channel/UC9Ij7ea3U3fOkJ7Xp1SMgOw",
+"https://www.youtube.com/channel/UC359xfuux09MK5-IJJNRQag",
+"https://www.youtube.com/channel/UC0mkbT2wVKsJn3zS__1hQhw",
+"https://www.youtube.com/channel/UCIiUsekUtvxuOeRyFN4PZJQ",
+"https://www.youtube.com/channel/UC2lbLi2ZbrjXqtX325PCGjg",
+"https://www.youtube.com/channel/UCnWEeGlwZzjIz9ESyXYFdmw",
+"https://www.youtube.com/channel/UCTd10xO-4hgpjDdt6iBL_Wg",
+"https://www.youtube.com/channel/UCLvy2HnhebqkryisrciPm7A",
+"https://www.youtube.com/channel/UC1rdeLrw5XovLXT6GxxFwAg",
+"https://www.youtube.com/channel/UCgkhZF2GjWVdLN5ZE7oCR0g",
+"https://www.youtube.com/channel/UCuJ0YgYMCF9MkbgCLG0oc3A",
+"https://www.youtube.com/channel/UCTuUcusBC833iswvYkbkVsw",
+"https://www.youtube.com/channel/UCATJLKP4qTX7P5ewBo_ZZfg",
+"https://www.youtube.com/channel/UCcGPtx437bRwm4V4ajCyrzw",
+"https://www.youtube.com/channel/UCSB5Ont1Y113NxEMHSPcJ4Q",
+"https://www.youtube.com/channel/UClkXTkcGat9dQb99EBLvRUQ",
+"https://www.youtube.com/channel/UCJWRpIt6kNYbdbtPBDslYgg",
+"https://www.youtube.com/channel/UCvq7WivexlCg9CMtj7_ymfg",
+"https://www.youtube.com/channel/UCjNWv6bLEIi_aZ4vuEaL_Ag",
+"https://www.youtube.com/channel/UCix2V7p9_Q44nG4afgwKSbw",
+"https://www.youtube.com/channel/UCjpCo5QMTR3-Pb32rkeb-kw",
+"https://www.youtube.com/channel/UCF21CAzec3V2CvgMBxkhcIg",
+"https://www.youtube.com/channel/UChmth9J1gO3f9el_B4a3sDw",
+"https://www.youtube.com/channel/UCmsabRj8vbnGlfO-F92m4XQ",
+"https://www.youtube.com/channel/UCZVwz8VCu1AKKcrIWgAFCmw",
+"https://www.youtube.com/channel/UC1grpe07dv2AXSsUQuvuHYA",
+"https://www.youtube.com/channel/UCQmZmrAi4VRmtDlm0m4EqzA",
+"https://www.youtube.com/channel/UCRvOGaIdRWIUF5Xgs4mQQzg",
+"https://www.youtube.com/channel/UCK9fM-PhaDmRqc1ndNjUmqA",
+"https://www.youtube.com/channel/UCPgqsMq90eGPKWR0PsB7kFw",
+"https://www.youtube.com/channel/UCmqJzjbzFbtcQwagFgaAWBw",
+"https://www.youtube.com/channel/UCoWgnMJwUxpmv_7WYkJ0-UQ",
+"https://www.youtube.com/channel/UCaRQmOK-6NOMiq9jJev5lPg",
+"https://www.youtube.com/channel/UCpYZCddmQsW-oBzpaPloVfg",
+"https://www.youtube.com/channel/UCGnBUXNjhu_n_ojfHl1w_1w",
+"https://www.youtube.com/channel/UCdm_q7RjbS3lMADBY58OpJg",
+"https://www.youtube.com/channel/UCnuwHfZvWjNRMxCROmvJQtA",
+"https://www.youtube.com/channel/UCfauyOCcY3t7oMVEfLkeSDg",
+"https://www.youtube.com/channel/UCULUJgQjAkqkvkqEMBV3lWg",
+"https://www.youtube.com/channel/UCKvtbIkNYe67_3-FX5LbK_w",
+"https://www.youtube.com/channel/UC0V1mTZd7UY2hInTnpOcrRg",
+"https://www.youtube.com/channel/UCZvKNWGj2MA-7PvvW-vPUjQ",
+"https://www.youtube.com/channel/UCO2GNkxkKXIBVb4qd8K5Rig",
+"https://www.youtube.com/channel/UC7j5_8QCedk1aRgEfv-U25g",
+"https://www.youtube.com/channel/UCpn_bo1j4yT5sbkpflIK37w",
+"https://www.youtube.com/channel/UCFIWLpt-qfnd2PIxkAnOCgw",
+"https://www.youtube.com/channel/UCOnfMSUnQ09eYKqMeb9JdZg",
+"https://www.youtube.com/channel/UC2hn9CCW4NdCHSv3h1nt9vw",
+"https://www.youtube.com/channel/UCjLkyZHdM9w46bbEZALH-Uw",
+"https://www.youtube.com/channel/UCphrZwxasA9bnJWkzjX2Bpg",
+"https://www.youtube.com/channel/UCZb7bmOfTCvaMLOKvvxDKOw",
+"https://www.youtube.com/channel/UCiguW3NjzReTLeNqZthqBoQ",
+"https://www.youtube.com/channel/UCxY5DcdQsk1aHDIbAvnGXjQ",
+"https://www.youtube.com/channel/UCQapRSGCC8ZP9irN58hwDsA",
+"https://www.youtube.com/channel/UCzZYlcETXcp4koEVXt7J0fw",
+"https://www.youtube.com/channel/UCR-L6aAf_bPVF2mNPs9N3wg",
+"https://www.youtube.com/channel/UCd7YiKcgRuXW6KRHCRBmTzQ",
+"https://www.youtube.com/channel/UCPZ3Z6liLLk7PSvjv2G4tmg",
+"https://www.youtube.com/channel/UC_BVnUxKtuM3rKnfQ_wGqHQ",
+"https://www.youtube.com/channel/UCKfpw5zl2hZ6eBUr0BdCW4Q",
+"https://www.youtube.com/channel/UCWvNlUPeNiqnTXNRtkXOcbA",
+"https://www.youtube.com/channel/UCBC34R5H9jDWPw_YuQ4Vd0w",
+"https://www.youtube.com/channel/UCPiyegkQK3hkr0Wq4gInvqg",
+"https://www.youtube.com/channel/UCt-ALuVLL_XMOH8mBiqPTVg",
+"https://www.youtube.com/channel/UCN5fyUGSL8EaDOkLEHqvfpA",
+"https://www.youtube.com/channel/UCiSPowsVr3bzvQLZZsoO9Xw",
+"https://www.youtube.com/channel/UCAunX_ovgbg0jYtIzKKJ_ug",
+"https://www.youtube.com/channel/UC00zwoYHuBW9F9Z8x3MG_Bg",
+"https://www.youtube.com/channel/UCds4UgTPX7ZilNTvxMsHWbQ",
+"https://www.youtube.com/channel/UCBy2lNPwqEzC9lgPdkS5yzA",
+"https://www.youtube.com/channel/UCS3_rB7eYlznyvsN-yRiQ4g",
+"https://www.youtube.com/channel/UCNAa2NEBRXTXg03L-meiP_A",
+"https://www.youtube.com/channel/UCl4aXM78KnNNzMlzgZH4JmQ",
+"https://www.youtube.com/channel/UCVEe3TDDnD-MQ0QF7vSHjcQ",
+"https://www.youtube.com/channel/UCIuBZoViJ5ZPc86aM40MMUw",
+"https://www.youtube.com/channel/UCXns2DnwSt8AeNNo-K9bQjg",
+"https://www.youtube.com/channel/UCWHnmUTaMwMOfE6rgllNIQQ",
+"https://www.youtube.com/channel/UCGFht4V-TpJX4cuwbInPsRA",
+"https://www.youtube.com/channel/UCL6_7M0JzzxQ_4sXOi7QXeQ",
+"https://www.youtube.com/channel/UC4aTNH7jpbwNVB4y1rvIbDQ",
+"https://www.youtube.com/channel/UCAtGEBcogzRCXpSg88n3AHQ",
+"https://www.youtube.com/channel/UCEitppQRPKU-mpA0Cs9N6-g",
+"https://www.youtube.com/channel/UC6zr8fIJBUFXnRTJ5wXfkfA",
+"https://www.youtube.com/channel/UCMZoX5xm-mgLoQErCWe3Jig",
+"https://www.youtube.com/channel/UCpKHeZqobS5qt71BthKFZbg",
+"https://www.youtube.com/channel/UCv2BqV__9PnZBoU4uOKFaig",
+"https://www.youtube.com/channel/UCUr2b0Q4TATjvK9iOWdRruQ",
+"https://www.youtube.com/channel/UCuRYTLeq43EHxHanyfgNEHA",
+"https://www.youtube.com/channel/UCGtldgXTB-zQjfHirpn9agQ",
+"https://www.youtube.com/channel/UC2tIPIcgbHQLl2KJooQNigw",
+"https://www.youtube.com/channel/UC60stspLMtR2CvF3yiDgazw",
+"https://www.youtube.com/channel/UCR97yU5NCzEIvJSfHt6fy9A",
+"https://www.youtube.com/channel/UCetFEWS2yO75eJT-WNGwFZQ",
+"https://www.youtube.com/channel/UCdzu6uaYAFPQH-4DEVHqXmg",
+"https://www.youtube.com/channel/UCv7ct6MrpG8U5u70yLu8JvQ",
+"https://www.youtube.com/channel/UC4y1uHRe40KpkM-GfwGqy5Q",
+"https://www.youtube.com/channel/UCH0tv1zJ6g6qa5d6QYgrlRQ",
+"https://www.youtube.com/channel/UCURes72wqcEpid6EKNXWfxw",
+"https://www.youtube.com/channel/UCbFf7xsFxQ8EzthhdQRsp6A",
+"https://www.youtube.com/channel/UCImj5I3JFU6aZ98rVO-Yo5w",
+"https://www.youtube.com/channel/UCewL2TI7lmroIFmTR421VCg",
+"https://www.youtube.com/channel/UC8FHYhBo4P7_-lfHuDMfNoQ",
+"https://www.youtube.com/channel/UC7C5FoV0AFcyNckpDXdpeuA",
+"https://www.youtube.com/channel/UCLoBHOybH_x3PHyR90SVpzw",
+"https://www.youtube.com/channel/UCBmUHRDV5WfP3ulbFfJVLgA",
+"https://www.youtube.com/channel/UCJCmp3ruIIp-WwrzLik8tZQ",
+"https://www.youtube.com/channel/UCxOiL0TU9fTyj7s6rtJy-Zw",
+"https://www.youtube.com/channel/UCTlRIK1wDJyAJS4iWSDLyMg",
+"https://www.youtube.com/channel/UCxqcV8Xv09D7NV7_RBkYBCQ",
+"https://www.youtube.com/channel/UCm-zStzo2XbyzGMdztQ10ig",
+"https://www.youtube.com/channel/UCRiYddg2blgATBxyitXwMVg",
+"https://www.youtube.com/channel/UCCXFcl0FNqQwxn4WFz4tpqg",
+"https://www.youtube.com/channel/UCS8IKjrl2RP8fAKTsccLaQw",
+"https://www.youtube.com/channel/UCRMLnR-Etr9jhhdWa_P0B0Q",
+"https://www.youtube.com/channel/UCIps-T3ikEhhIdcGvqWhdCw",
+"https://www.youtube.com/channel/UCkTAqDlyz1RCjLn_psxryDA",
+"https://www.youtube.com/channel/UCZtpBkyAuBhXu1VOgTRNKIA",
+"https://www.youtube.com/channel/UCfIyi93rf75pZHVKAanJsfw",
+"https://www.youtube.com/channel/UCpspGGqbJe9IA65gQucU5Nw",
+"https://www.youtube.com/channel/UCuaNZ7fgpWGGCURIoN540TQ",
+"https://www.youtube.com/channel/UCzh7xD0Jq6iIFaaSmXXP9cw",
+"https://www.youtube.com/channel/UCatCGGzSfynl40oxd0ESwYw",
+"https://www.youtube.com/channel/UCGYRpcmzJOnAVQVf-pRyyrw",
+"https://www.youtube.com/channel/UCnwhijxeIaL4tDv6iBVQpSQ",
+"https://www.youtube.com/channel/UCDhykycwRb-NibqO_yziLcQ",
+"https://www.youtube.com/channel/UCwY3A5H3ko8qeY4oWxbwNLA",
+"https://www.youtube.com/channel/UClyY_DjKVsIB9qjvJB5lRVw",
+"https://www.youtube.com/channel/UC9fRPBgT_JoMUBdFnQwbfbQ",
+"https://www.youtube.com/channel/UCMCy213QeusOkmQVDBIiLoA",
+"https://www.youtube.com/channel/UCF7HeUoGgl-A4CRdLNZFhOQ",
+"https://www.youtube.com/channel/UCeFaUq9PEwPfuQ0aS32_WmQ",
+"https://www.youtube.com/channel/UC0MnFKDz63E_zzE25_SrW8w",
+"https://www.youtube.com/channel/UCHa03CXIU00XJWvwlrMAueA",
+"https://www.youtube.com/channel/UCaSUGPNxldNk4UgyNOy646Q",
+"https://www.youtube.com/channel/UCa5sBvtZo5PS6WDDjEETacA",
+"https://www.youtube.com/channel/UCIJK2veDExT4sKto7cS3dMA",
+"https://www.youtube.com/channel/UCS7W4-HM9ggoV1FlzhHXfHQ",
+"https://www.youtube.com/channel/UCc6rfOXMhKCIhE4es1cqzGw",
+"https://www.youtube.com/channel/UCAdFmFzOyQLX83HjjVmtyZQ",
+"https://www.youtube.com/channel/UCYWYNCiYTUXTmwxakVNJPWw",
+"https://www.youtube.com/channel/UCF_ZzUWAyfrDuQxA7ol8EJw",
+"https://www.youtube.com/channel/UCHpLCfifq9OJCphJdnkSmgA",
+"https://www.youtube.com/channel/UCLQPY_wH9Nb40IFBclZo3Pg",
+"https://www.youtube.com/channel/UCWSr9MR9VZC7EivaHhyI7wA",
+"https://www.youtube.com/channel/UCqZsLPGElt1YKNw-CDwMcqA",
+"https://www.youtube.com/channel/UCfNXRaAAsUHJerEc57Zck0Q",
+"https://www.youtube.com/channel/UCm860TW3yHz7EUV4MIXxrUQ",
+"https://www.youtube.com/channel/UCKL7fwi0jHkTzAUM9nHMsVQ",
+"https://www.youtube.com/channel/UCAa5B6VKon_X3RQ50iuLjpQ",
+"https://www.youtube.com/channel/UC_2Hf9SxbN8JF27-DfYTKSg",
+"https://www.youtube.com/channel/UCi6A6Q5-Q1VyzfK7VBE_eYQ",
+"https://www.youtube.com/channel/UCcMCllzpS6Gu9WAFvR2260A",
+"https://www.youtube.com/channel/UC3rG7m0VLggudpZXtwO44sQ",
+"https://www.youtube.com/channel/UC9-uo2lsbEGn4zMrou8EFXA",
+"https://www.youtube.com/channel/UCb6jI_EFokhUCu4CHViLo3Q",
+"https://www.youtube.com/channel/UCOA6fVNxGdB_5uy8TMlJM3g",
+"https://www.youtube.com/channel/UC3GN0bSQcwbbFPhi7pM_DaA",
+"https://www.youtube.com/channel/UCtRviow2IfbUjfoWd-mTzAg",
+"https://www.youtube.com/channel/UCOwQ1vMG8o0F4lCB6d-UkyQ",
+"https://www.youtube.com/channel/UCXFPD4XtQ-B6mJXnu0soTUQ",
+"https://www.youtube.com/channel/UCd-CAn8MLIeb-SIdF5iw67Q",
+"https://www.youtube.com/channel/UCroeUIgnSe_NsGTWClYjKMw",
+"https://www.youtube.com/channel/UCXLrOCvGSWbLHg3EGPoT7xg",
+"https://www.youtube.com/channel/UCYz8Jc2ireEr8yRMsgKe9Jw",
+"https://www.youtube.com/channel/UCeWDmbAx27GO7ByGKzfD7hg",
+"https://www.youtube.com/channel/UC9IS1ikJj_Zznbdq5OSuzew",
+"https://www.youtube.com/channel/UCdSUQOe2RnwU12XFW9Rschg",
+"https://www.youtube.com/channel/UCW7t6xyjYDwFtxjvGYS29oA",
+"https://www.youtube.com/channel/UCVfIh-KXER2Pu0i7o80zdmA",
+"https://www.youtube.com/channel/UC4OY7sZejIuHZbdV0bhQUEQ",
+"https://www.youtube.com/channel/UC1Uf8OVd5_0iugmm_VHj6kg",
+"https://www.youtube.com/channel/UCllj1So7BIIbjxkucm-AHbQ",
+"https://www.youtube.com/channel/UCD00ASG2tLBdtSe31H2GuLA",
+"https://www.youtube.com/channel/UCkke6sxHEjVU-30SUbG7i2Q",
+"https://www.youtube.com/channel/UC22QfdAzy5WsvofYrf14u2w",
+"https://www.youtube.com/channel/UCRM6AyB3r9CCSyQnCAwFjOA",
+"https://www.youtube.com/channel/UC30lVi_-DZle5NdVJ0zYbhA",
+"https://www.youtube.com/channel/UCtrL_jbzxpJxaz3E1TRdeDQ",
+"https://www.youtube.com/channel/UCyd_Vw_kcYuoFTbO4F7Pc2Q",
+"https://www.youtube.com/channel/UCHLXK_suXJYP_5Nqm6WQmJA",
+"https://www.youtube.com/channel/UCpjP32sGAeARC-7tDVtSQ-A",
+"https://www.youtube.com/channel/UC7mprAIOApBwR5UencDjNJQ",
+"https://www.youtube.com/channel/UCpOZLgbQl4ResjqfV5jujyA",
+"https://www.youtube.com/channel/UC2UQDNUw6wp-C19LY5Q8V1A",
+"https://www.youtube.com/channel/UCle1xNZT8GXHzq-EFoef5_w",
+"https://www.youtube.com/channel/UChHccQCTTDNc7dG2q1qCGKg",
+"https://www.youtube.com/channel/UC6B6FHVlrK4aSf9yg6CJk3A",
+"https://www.youtube.com/channel/UC9HqlKcp5FaPPQlzeVD-LxQ",
+"https://www.youtube.com/channel/UC3idqW86sF11xwyOrVHWXhg",
+"https://www.youtube.com/channel/UCUzPjgmJ9P7E2Eqtx35dJxQ",
+"https://www.youtube.com/channel/UC9zYvyIMhJHbFBGK_F1eL3g",
+"https://www.youtube.com/channel/UClWeF9FoTpM9VMXjyzcBgUg",
+"https://www.youtube.com/channel/UCL50TbVVcwgnxdJ8o1GX0Lw",
+"https://www.youtube.com/channel/UC6dLKPCgU3-_dlQRBboN7YA",
+"https://www.youtube.com/channel/UC8a4XKtzH4721olIzUdCfgA",
+"https://www.youtube.com/channel/UCKvLeMFNLvnuEzxHazWoJDA",
+"https://www.youtube.com/channel/UC_bB_F4IimuY_iISJgMSbTQ",
+"https://www.youtube.com/channel/UCEle7MajW4Z6G-5noNlr1sQ",
+"https://www.youtube.com/channel/UCjTT8Lpq_KJ4oKEApAviKPw",
+"https://www.youtube.com/channel/UCtMTxOZOrC_D2k2lHUf8vfg",
+"https://www.youtube.com/channel/UCpoNwVnlsyX_k5GYOeuDvyg",
+"https://www.youtube.com/channel/UC9CceC1NxOYTF3K_JVK5Q0g",
+"https://www.youtube.com/channel/UCFK1Zqng0UuMM-XlzYtMm5Q",
+"https://www.youtube.com/channel/UC-3uOGVmLgk47w1neoQMZnA",
+"https://www.youtube.com/channel/UCsp9IpYGXpyW6rUSb-ZxSNQ",
+"https://www.youtube.com/channel/UCK6ueydleAuCRjTiH6SN6Pw",
+"https://www.youtube.com/channel/UCQAS077yueIP8aPw2Q4NtOw",
+"https://www.youtube.com/channel/UCcMU6ESiS7JguALw_oxcopw",
+"https://www.youtube.com/channel/UCM39WqmZbLsCTF0CK9WNTvw",
+"https://www.youtube.com/channel/UCS_ZoScssJL3Uzy4HMTDj2A",
+"https://www.youtube.com/channel/UCqXNGYgrpdUACGVYYs5XDHA",
+"https://www.youtube.com/channel/UCB45wVDn-Jws4LG6Nwsr2hA",
+"https://www.youtube.com/channel/UCxzfEe2rZfzHtBM8ptOgPWw",
+"https://www.youtube.com/channel/UCzyq6O__B_jmbRZ_h-DlGcQ",
+"https://www.youtube.com/channel/UCOqxA6dtCekjT6xAEJ9tqAA",
+"https://www.youtube.com/channel/UCxnyH8uJTwwYt3ldp4m2qRA",
+"https://www.youtube.com/channel/UCqphszlMpFuzbYP26kQKotw",
+"https://www.youtube.com/channel/UCN6uCRpNmVqLAytxfMRCT4Q",
+"https://www.youtube.com/channel/UCMTgxT7SFE9AllR1zamTNow",
+"https://www.youtube.com/channel/UCPfm5zf8lalvwcivePYXA6Q",
+"https://www.youtube.com/channel/UC2sVIROdL61qDHaABFxA9rQ",
+"https://www.youtube.com/channel/UCJwssNpO0F7zrxkWgCGjrOg",
+"https://www.youtube.com/channel/UC5rvwVqZRu_n-suHa3qb4JQ",
+"https://www.youtube.com/channel/UChR-3c_5Yd9swj6QnprLgPA",
+"https://www.youtube.com/channel/UC81Yl8HAtpztOIeXwVoSsYg",
+"https://www.youtube.com/channel/UCJYQh7_atAgSs2mz9Et5DGQ",
+"https://www.youtube.com/channel/UCum2w0wZ7gy6-ofvfzRhZnw",
+"https://www.youtube.com/channel/UCophoVRw1QHjOL3GiaEKfRg",
+"https://www.youtube.com/channel/UCK_AJDO_Oof9bCxnmGGSscQ",
+"https://www.youtube.com/channel/UCwA7__-3JPcDeO_GOSFE4lA",
+"https://www.youtube.com/channel/UCaugMJ8_6FsHfIQiphjHWmw",
+"https://www.youtube.com/channel/UCu-hcAud0y588JRlbn6jI3Q",
+"https://www.youtube.com/channel/UC2Hr-P01P8a4muiZNh3W26g",
+"https://www.youtube.com/channel/UCWD_n6TJRGaqZA6otDhFVOQ",
+"https://www.youtube.com/channel/UCP4XFUQgDP3en0WlY5H4P6w",
+"https://www.youtube.com/channel/UCWFA4BnADZcPItCvDEcCcsw",
+"https://www.youtube.com/channel/UC5AKlQz34W0-otrjbZuvhvw",
+"https://www.youtube.com/channel/UCtBqL7f2nCjwGklaFL6Y9pQ",
+"https://www.youtube.com/channel/UCmIC7ZN4uXd6bXhLfw2qWgQ",
+"https://www.youtube.com/channel/UCJjVo2imh79TKWEwaXvuh4w",
+"https://www.youtube.com/channel/UCPYHnJdmdKgyR8fh1SGbFPA",
+"https://www.youtube.com/channel/UC5_MaRWkTwICiWomX65sfpg",
+"https://www.youtube.com/channel/UCE8-IImALsPXPWLgVMHchlQ",
+"https://www.youtube.com/channel/UCC398yBd6oloy9y1vfs4xZg",
+"https://www.youtube.com/channel/UCc-vtCH-tfa1qY03--13J6Q",
+"https://www.youtube.com/channel/UCJy_SqCUf60GnWQLWv7j1sQ",
+"https://www.youtube.com/channel/UCezlki3cJkLBMEWLqRR_8uw",
+"https://www.youtube.com/channel/UCfGNcEo3UwPOgFA8pLSJaTw",
+"https://www.youtube.com/channel/UC_80MaEEY2ESaWkM0af0UxA",
+"https://www.youtube.com/channel/UC1MQXB5A9QH5ThecO_r5fUw",
+"https://www.youtube.com/channel/UCtYljTELrl6pptn6z8I4w_g",
+"https://www.youtube.com/channel/UCZi1r3heIZMt-7-1pDN8_gA",
+"https://www.youtube.com/channel/UC5FhMLr6_OXKA0Rhd9ckLVg",
+"https://www.youtube.com/channel/UCPmPp0sbk8bqJM42zkf2X2A",
+"https://www.youtube.com/channel/UCBKO1u1e8AErDwlBIDtLA6A",
+"https://www.youtube.com/channel/UCFkypS_KxknDkhYhnLjyy4w",
+"https://www.youtube.com/channel/UCEpItiE0YpuxsZS8YtmGwtg",
+"https://www.youtube.com/channel/UCanUURJhpPSBxC5LJIrs_MQ",
+"https://www.youtube.com/channel/UCMYJvQ3m7YmAzRNAP8vflUw",
+"https://www.youtube.com/channel/UCT6MdQy9hrTMQyZ_7pU68Yg",
+"https://www.youtube.com/channel/UCTT81U4lJ2PkSiHwAwinWyQ",
+"https://www.youtube.com/channel/UCLNuIpq028qdcgBqWt2PipQ",
+"https://www.youtube.com/channel/UCgjpqnnv-sSgiAXqk-SxzKQ",
+"https://www.youtube.com/channel/UC4Ir5Pg1-g4IX8A4Yvbl7aQ",
+"https://www.youtube.com/channel/UCtITEpWtL2YVOHFGB6J-j_w",
+"https://www.youtube.com/channel/UC5b_kbIjIUahz9Yvx-qSNRQ",
+"https://www.youtube.com/channel/UCrh-aEHKF9aiYb9V_HKTuQw",
+"https://www.youtube.com/channel/UCjEXV6KqISTRDnL7MXVBXwQ",
+"https://www.youtube.com/channel/UCtR3rwB7GW_G29811zBf6fQ",
+"https://www.youtube.com/channel/UCCxi0yo3gmH5ue2U-AzAvMg",
+"https://www.youtube.com/channel/UCh_Y0dLa0_xatN46nFugbLg",
+"https://www.youtube.com/channel/UCO6S_TFf5EpIqjO_X29691g",
+"https://www.youtube.com/channel/UCg8t_1V4WwVTnCBfoM6HDQA",
+"https://www.youtube.com/channel/UC16zSM15aTdqpjRJjhCgQWw",
+"https://www.youtube.com/channel/UCyMBwHlHKttzRAbATvYKBTg",
+"https://www.youtube.com/channel/UCdJqZa1pNoTqZqgGvU2fd1Q",
+"https://www.youtube.com/channel/UCjdVqu8KheuhMsJZIx0SvdQ",
+"https://www.youtube.com/channel/UCTQdbfbFmvacVTB7P1g2Ufg",
+"https://www.youtube.com/channel/UC5TSvWXPG5bZpiOnX0ozSlg",
+"https://www.youtube.com/channel/UCwAt-nJprhtq16jMLN_Fz7w",
+"https://www.youtube.com/channel/UCmp3LUbsvzAuwttUeshq3bg",
+"https://www.youtube.com/channel/UCAVIyiyCYu6sVDk0Y2QpjHQ",
+"https://www.youtube.com/channel/UChI9FisnjytdljgHOJCWh7w",
+"https://www.youtube.com/channel/UCfFm2ylol83goBdVAncPLqA",
+"https://www.youtube.com/channel/UCFU0mTPxCNGFlCrqRj6JFsg",
+"https://www.youtube.com/channel/UC4AN4S6rF_ettR2kUlAa3Vw",
+"https://www.youtube.com/channel/UCg0JAOsJC7eAyOWWStyXdvg",
+"https://www.youtube.com/channel/UCInn6P2p9BAS_uxHRKo4LQw",
+"https://www.youtube.com/channel/UCiG0vfqyFKMP1LOrMmxo0zg",
+"https://www.youtube.com/channel/UCdTkNX7_hRFap4RyJ8M4Cug",
+"https://www.youtube.com/channel/UCB0yUkO8ZwPSo3_-FbOmhSw",
+"https://www.youtube.com/channel/UCgG06PVg9sM_eg0BCZ09Vfw",
+"https://www.youtube.com/channel/UCbc56H--P17I__wrBcvO2Eg",
+"https://www.youtube.com/channel/UCGJs-F5kC2vSPzOffTmH7KQ",
+"https://www.youtube.com/channel/UCGEU0o4UBkVRBMrUga0KJVg",
+"https://www.youtube.com/channel/UCiS_UZ4OWtsSGIVhTbmzJ9w",
+"https://www.youtube.com/channel/UCBKundbigTpKpDVRZagrGXw",
+"https://www.youtube.com/channel/UCR67RuvLiqLUs3vTIS42IlA",
+"https://www.youtube.com/channel/UCwAn62OZ1RWGxuploRhfNSg",
+"https://www.youtube.com/channel/UCgcSJgqN39dExT4DZl6WlIg",
+"https://www.youtube.com/channel/UCmNxMDYkAV92ApmFm3PYasA",
+"https://www.youtube.com/channel/UCf24A7QBYiX_bCu3c2W7BfQ",
+"https://www.youtube.com/channel/UCIIWNMbZKFfOix7SeqiUKbw",
+"https://www.youtube.com/channel/UCpSPNQOsfgqSlSlfiILTF_A",
+"https://www.youtube.com/channel/UCDoYntez6SfvzYBq98VmScQ",
+"https://www.youtube.com/channel/UCjKNuVCW6908hY0CSDOt-Wg",
+"https://www.youtube.com/channel/UC4pTP8VNylCJoblLjT5CWUQ",
+"https://www.youtube.com/channel/UCmYJmxwrSGjRuITb8WlWXCw",
+"https://www.youtube.com/channel/UCXJZFrx5pT-5U_0Z2V25nBw",
+"https://www.youtube.com/channel/UCS1Z8vC0na4cM0-42J_9Buw",
+"https://www.youtube.com/channel/UCrTPrUy0N2JUdpRuAGlYKmg",
+"https://www.youtube.com/channel/UCco-dG2sLGPDc67Myec96Lw",
+"https://www.youtube.com/channel/UCZgD6rfrvaICxW_CQvyIMVA",
+"https://www.youtube.com/channel/UC6PYBuryDZVarlxz554H5jw",
+"https://www.youtube.com/channel/UCQAeWaBumCFzC74wXhxxT9g",
+"https://www.youtube.com/channel/UCo4mvmSctM4p7eW2Td53aXg",
+"https://www.youtube.com/channel/UC4GBpAs8HpkmGownVBCuvjA",
+"https://www.youtube.com/channel/UCd0c9AhBPC5L8Bebu3z57Ag",
+"https://www.youtube.com/channel/UCy2mlVq69KdKRA1f80DcRaw",
+"https://www.youtube.com/channel/UCaUeF1spYZmqI9fTSXsqWTA",
+"https://www.youtube.com/channel/UC85Xn9ZTqZWmZLHyAn-JDKQ",
+"https://www.youtube.com/channel/UC2ZfTsfCIW3s6iB5PrwbjuA",
+"https://www.youtube.com/channel/UCBaZO3AHBfDJU8dieTfGkFA",
+"https://www.youtube.com/channel/UCGQzhOfMbEA5WsNM7i3JSeA",
+"https://www.youtube.com/channel/UChyZzXC7IpV9OqnvkST67Fg",
+"https://www.youtube.com/channel/UC6CUSoNiLYroOfHbnbEH4tQ",
+"https://www.youtube.com/channel/UCdBldwAby1MUQqN0ONNbzKw",
+"https://www.youtube.com/channel/UClZyW2svvLjCg4brEUZwwUg",
+"https://www.youtube.com/channel/UCD9AXPGn4Mhl7tHB8DenTRw",
+"https://www.youtube.com/channel/UC4HHO84GLy7bTLPkMUOk0ig",
+"https://www.youtube.com/channel/UCmjKS5kqE4nMriabosCrd7A",
+"https://www.youtube.com/channel/UC3spaQsKHLcKWBPdttptFtA",
+"https://www.youtube.com/channel/UCq3oWtwd7GazZRQpyUr2tCg",
+"https://www.youtube.com/channel/UCYomvzJgD4IDL2oWjNAPsvA",
+"https://www.youtube.com/channel/UCi3HrMDTR3WY8KiKG-UlnKg",
+"https://www.youtube.com/channel/UCtQac7ACmNDmyQYlutN4W8Q",
+"https://www.youtube.com/channel/UC4HwIF5MctkCIhUjVCv5hcQ",
+"https://www.youtube.com/channel/UCNbF_WCxiHNWi_BglENr_XA",
+"https://www.youtube.com/channel/UCHKQF5jjzR_RTUe-bSP82_w",
+"https://www.youtube.com/channel/UCnZRgiOckmh22crUqzucBaA",
+"https://www.youtube.com/channel/UCqD5AaLuevYf7mAMD0WI6Qw",
+"https://www.youtube.com/channel/UCkHhsHu0CAK6Ub2cVsP0P7A",
+"https://www.youtube.com/channel/UCfSyykwrOvYAI4DUV4AhFbA",
+"https://www.youtube.com/channel/UCxZSAIrrOIpXZHuz8_AGt-A",
+"https://www.youtube.com/channel/UCFixuiS5zJlcBJEaxVZXd0g",
+"https://www.youtube.com/channel/UCqPmvyNIhosxLRcXkjmIeQg",
+"https://www.youtube.com/channel/UCdjMaRGymAuGIRJSOb55Drw",
+"https://www.youtube.com/channel/UCLcszw54Tq1WpLtt96N_8Mg",
+"https://www.youtube.com/channel/UCtYo5HREgpI_f_KTVSh5Cdw",
+"https://www.youtube.com/channel/UCTuPn4IsmXr018wPGJhz56A",
+"https://www.youtube.com/channel/UCpzck_tK8zvGUsY2eqFvlyw",
+"https://www.youtube.com/channel/UC3CzLAG3FajUAoT89Rjjd4A",
+"https://www.youtube.com/channel/UCwQj7DbPcQp5guAusyshxcQ",
+"https://www.youtube.com/channel/UCcHXcaR3Xv9lQGgw1sqigkA",
+"https://www.youtube.com/channel/UCsikF0l9b2c4LgTdHgL1F9g",
+"https://www.youtube.com/channel/UCZVVRqDYnLkXfyzKmkEZEtA",
+"https://www.youtube.com/channel/UCTynrODDcErcytee9DKiQ3w",
+"https://www.youtube.com/channel/UCV-w_f5HZyB-zL_XMSHKr8Q",
+"https://www.youtube.com/channel/UCPA8VoSj5bs5k5lFZH61YGw",
+"https://www.youtube.com/channel/UCEegH1sYMg56UkgYPmcJHPQ",
+"https://www.youtube.com/channel/UCt7tyTaDoB9Lll9sqeJEukg",
+"https://www.youtube.com/channel/UCAZLHnh376CUJ7eGl_i-8Sg",
+"https://www.youtube.com/channel/UCQfDxWWonAwH-S6M9ISVS3w",
+"https://www.youtube.com/channel/UCntxrAV70uC2QLH3eqlXF_g",
+"https://www.youtube.com/channel/UCYImfEVbqUUYVj17Zl1q1Eg",
+"https://www.youtube.com/channel/UCV05SVZspvVIOy89fFtYX1g",
+"https://www.youtube.com/channel/UC6nuQvY73JSL8B5CaE0ceow",
+"https://www.youtube.com/channel/UCA49mOeGpUkmLKicy4jB5lQ",
+"https://www.youtube.com/channel/UCgp1TxU7eqrWziNv4nkEtmw",
+"https://www.youtube.com/channel/UC2-QmNuM5PXfV4TFXNnZIiA",
+"https://www.youtube.com/channel/UCoh8AKa16fnvFbECjWwcsQw",
+"https://www.youtube.com/channel/UCVMGfYWPpZM_M8HslF8gblw",
+"https://www.youtube.com/channel/UCPWWxTAS0D0buogLWhjL9BA",
+"https://www.youtube.com/channel/UCxgwsCF4n_DZv84yJKFBKlw",
+"https://www.youtube.com/channel/UCoXFBAzDgp8eYumrk315YlQ",
+"https://www.youtube.com/channel/UCnJOiYH9rDeNNHE3h9q0uGg",
+"https://www.youtube.com/channel/UCBDDpLKc9Os5T9W_WfW44CQ",
+"https://www.youtube.com/channel/UC1oEJKpsgLTppXzYAtxufSg",
+"https://www.youtube.com/channel/UCkvDU4RD1Jn1FtlPaHY7rfQ",
+"https://www.youtube.com/channel/UC3mdKSbeWGB2-JVzx0Va0Eg",
+"https://www.youtube.com/channel/UCd9xwKv7ia9l2UDK5OXSzvg",
+"https://www.youtube.com/channel/UCAjctMvGXvGUw9IN5oER9gQ",
+"https://www.youtube.com/channel/UCBP4G8ILur5dUGlWZAOsuXw",
+"https://www.youtube.com/channel/UCDQGupG7gCxLT2_Y9-8yh6A",
+"https://www.youtube.com/channel/UCgZwrOtibRdZ9nGzmpOi1Tw",
+"https://www.youtube.com/channel/UCiKnIFE9lj40Be5s7UZPjKQ",
+"https://www.youtube.com/channel/UC4zmupsCHiIU8gaX53mdKDA",
+"https://www.youtube.com/channel/UCGIMvpu4_CXLW8AdENqwuaA",
+"https://www.youtube.com/channel/UCmkGbnsecs9QC8L_LBRdlBw",
+"https://www.youtube.com/channel/UC94buu5MaodvFxE-golU7Kw",
+"https://www.youtube.com/channel/UCAVlIBXrE2Uwt6p94xbffsg",
+"https://www.youtube.com/channel/UCakEdSXMoq1-jy0dmnERGGg",
+"https://www.youtube.com/channel/UC5k5HtyBM9Tngj3uXdBPpjQ",
+"https://www.youtube.com/channel/UC_oGJ9iSbI2JuVzz69_lJ3g",
+"https://www.youtube.com/channel/UCBQj5rw-hyHVJbfcYFCalYg",
+"https://www.youtube.com/channel/UC_3iQezO_hTIDVZtzeVgPag",
+"https://www.youtube.com/channel/UC2pyDLT1Tb0gYJvz8zczpzw",
+"https://www.youtube.com/channel/UCuqR4akW3BsBBVY0A3f4CcQ",
+"https://www.youtube.com/channel/UCJsM00kSlerzK3f8PLjk8Fg",
+"https://www.youtube.com/channel/UCBsISNa2spqopfK-2SAGe-Q",
+"https://www.youtube.com/channel/UC4_pf296WA2a79JzEEejroA",
+"https://www.youtube.com/channel/UC0M51kY3oZa07m4FwlzfQCg",
+"https://www.youtube.com/channel/UCTNpvE2hBdOVA9Rlh8gZVSg",
+"https://www.youtube.com/channel/UChqsyEiL-wkXEePTxNMAAPw",
+"https://www.youtube.com/channel/UChiNlJfhP2zi8n9tiEdpw3A",
+"https://www.youtube.com/channel/UC3ZRlFXU0csnexACW0bZAsA",
+"https://www.youtube.com/channel/UCgks81SbNHrtIrsOSKAaJ8Q",
+"https://www.youtube.com/channel/UC1_Dzhr69pZrakQLMFh1aaA",
+"https://www.youtube.com/channel/UCicqdCd7dh9MiNZTYlTRT0Q",
+"https://www.youtube.com/channel/UC9kH-tagoaQqOVmsrsOnuAg",
+"https://www.youtube.com/channel/UCoNBqfxPdVEcT81UNCYwRJA",
+"https://www.youtube.com/channel/UC-UQBVj-GjmhYGKKkwkiSEw",
+"https://www.youtube.com/channel/UChwm0AseGiIHichQxFqEdOQ",
+"https://www.youtube.com/channel/UCkt83Et4mfKvHxW7zSE1V6A",
+"https://www.youtube.com/channel/UCM0a08lK0MByFVTPwEUqWbA",
+"https://www.youtube.com/channel/UCcIXyfLO3aTOR0_Nxl_c0Ug",
+"https://www.youtube.com/channel/UCwFGmv7qOEk6_6PUfE9tKeA",
+"https://www.youtube.com/channel/UCruFoAAwiCaqy2MgWGMhYDg",
+"https://www.youtube.com/channel/UCGQ7wTZUg8ClYd3JDImilLg",
+"https://www.youtube.com/channel/UCjmaaRLVMz-wcuBFDvGoV8w",
+"https://www.youtube.com/channel/UCAOCFYzJ9-M-m3lW1JNMY2Q",
+"https://www.youtube.com/channel/UCJlIGGULdGQmKhUzacWEEDA",
+"https://www.youtube.com/channel/UC7gPlPf_I96A6MRuGQfI2dw",
+"https://www.youtube.com/channel/UC_wcNTK_7DfBA2Ksb8SXu1A",
+"https://www.youtube.com/channel/UCshoNs44SwhVv0qG0U35YLQ",
+"https://www.youtube.com/channel/UCRXT8pWs2tHmZSl1YL931rQ",
+"https://www.youtube.com/channel/UCZmNDO8bfsbHTLMFCMnJlxg",
+"https://www.youtube.com/channel/UCG38sjQq6zKxaQK2ayecSqA",
+"https://www.youtube.com/channel/UCDXyq1AZdpJm6AHwvgpEknA",
+"https://www.youtube.com/channel/UCGsOsLL52IHLOICy_CV3Mww",
+"https://www.youtube.com/channel/UCfXlJw75hRi02l-WhnUTtbg",
+"https://www.youtube.com/channel/UC-tJImRh1xHgexhkRPXW9OQ",
+"https://www.youtube.com/channel/UC8XdE_VfxATof612jQfzWtw",
+"https://www.youtube.com/channel/UC94Btmmdq27DxqwTKuYfgjA",
+"https://www.youtube.com/channel/UCULb3rtc0JOUXhGd4X7hjCw",
+"https://www.youtube.com/channel/UCIYQOV0Vi6NHFVsJLuOL0Sg",
+"https://www.youtube.com/channel/UCkfnKnsIqBRTEPGJMRh9fDw",
+"https://www.youtube.com/channel/UCVgwi5yDzNn5ZuZNEKK-hiQ",
+"https://www.youtube.com/channel/UClW2Qb9pEGam7dAoaVR7KJw",
+"https://www.youtube.com/channel/UCgf5fkeXnudRJJ1W1y9NlGg",
+"https://www.youtube.com/channel/UCsl6h0w3Bsg001ty7wR-z2g",
+"https://www.youtube.com/channel/UCJ1naEo5u5AXREJsUtR0dCw",
+"https://www.youtube.com/channel/UCJYyfOomJGOnBO5wxtu1rkQ",
+"https://www.youtube.com/channel/UCTF07wdeSLhqws25jDgRxag",
+"https://www.youtube.com/channel/UCfVNQPypOeKtAlkHAx5-3kg",
+"https://www.youtube.com/channel/UC0ZwGSwXS_vWJUGLA1P2V6g",
+"https://www.youtube.com/channel/UCqMuIiDXvPEwD8sA2VTTZbQ",
+"https://www.youtube.com/channel/UC_xGPfMhettYn4_j8laZF6w",
+"https://www.youtube.com/channel/UC5Fem-8xUQmswnIEUhRjboA",
+"https://www.youtube.com/channel/UCRYl-j9nM_AU8aqptnlHgLg",
+"https://www.youtube.com/channel/UCs5lbmWulXmkkNwYdzHuwMw",
+"https://www.youtube.com/channel/UCtkiBYvN3IErMhCQraE9wGQ",
+"https://www.youtube.com/channel/UC-8iUFnXl_5FH5M3kGqUGAA",
+"https://www.youtube.com/channel/UCHDGwSRWGXuwwWM40nkPvBw",
+"https://www.youtube.com/channel/UC271NL7gjdt6G7yFBSZ5Bjg",
+"https://www.youtube.com/channel/UC1A3yAdAJN7632UIXLuFXOw",
+"https://www.youtube.com/channel/UCFcbxlsituYqfIOk6SEen3g",
+"https://www.youtube.com/channel/UC77-iLGZMNLYhYXNB-FsaaA",
+"https://www.youtube.com/channel/UC26T46n0Hgwddd_LuNzt69w",
+"https://www.youtube.com/channel/UCIcTLMgOkq6k0zEDGO_H3XA",
+"https://www.youtube.com/channel/UC3TpLAve1DT2xcC5s24uC3A",
+"https://www.youtube.com/channel/UCghCbEdhcgaOeHXaNswdckw",
+"https://www.youtube.com/channel/UCMHwQqfgszCl4AZ-lGl5UFg",
+"https://www.youtube.com/channel/UCpx5HA42aEajqno8yrYLk_Q",
+"https://www.youtube.com/channel/UCx8fpLljOX3Qk47G7NGgJWA",
+"https://www.youtube.com/channel/UCK7HK-7T57oqIkb6RkTpGfw",
+"https://www.youtube.com/channel/UCA34gnI5aLh1EdSC_ccL-hA",
+"https://www.youtube.com/channel/UCpNbMnrq3ku_WkUDJThCXQA",
+"https://www.youtube.com/channel/UC-LCbN3i_HHP3KtJthX2wJw",
+"https://www.youtube.com/channel/UCHqmSb96Oz3ulCTjyfPyB3g",
+"https://www.youtube.com/channel/UC8fQuKEXPP4rzyHPP2CGK0Q",
+"https://www.youtube.com/channel/UCv0Xskj9IwvwW-pnnx6Z4uQ",
+"https://www.youtube.com/channel/UCAh8u0FRVmb9OVxC_sCBJcg",
+"https://www.youtube.com/channel/UCfF4oqATdr3bVAX8fgfwk9w",
+"https://www.youtube.com/channel/UC20uTQfXg4LC2v4RLr3j9vg",
+"https://www.youtube.com/channel/UCfRr4wn4a9dYju6p7SRCwXg",
+"https://www.youtube.com/channel/UCQmDjMiGlf5eZaBW6t7wREQ",
+"https://www.youtube.com/channel/UCF2YkAveNj2pHVi9xwtBGJA",
+"https://www.youtube.com/channel/UCFKkMItphLWDdqtc6X_dN9w",
+"https://www.youtube.com/channel/UCyBb1DzbM4kJCJEBfwOPchQ",
+"https://www.youtube.com/channel/UCSSslp12anNcxR989HKVBkg",
+"https://www.youtube.com/channel/UCY-hKAghkE8I54Q157w6cDw",
+"https://www.youtube.com/channel/UCbTxDQgxREi79XQ1L8tAjWw",
+"https://www.youtube.com/channel/UCTldj5p-18EBtDitlv1xcqQ",
+"https://www.youtube.com/channel/UC-Lh5OY8FQQENgcfbyiL_mw",
+"https://www.youtube.com/channel/UC5n6uD_8TLNQRRjLAwlu8ww",
+"https://www.youtube.com/channel/UC9P-Z3z6lykCBJT7mUP-nYw",
+"https://www.youtube.com/channel/UCSRgoxyc-vmf5geqTwhqxNw",
+"https://www.youtube.com/channel/UCQBT5E46ZCS0gQcw6CoaTNg",
+"https://www.youtube.com/channel/UCO15jxK2LyzVL8Nf6RpDNcg",
+"https://www.youtube.com/channel/UCIxv8vzCVk5kQ9fC8VkWS-w",
+"https://www.youtube.com/channel/UCtw3MEOENbMJsoN_XtDpDkQ",
+"https://www.youtube.com/channel/UCN7pI-LY9DaUAIJ-UaAtUCg",
+"https://www.youtube.com/channel/UCpidCFjoSN3LcLGLrmg2ujw",
+"https://www.youtube.com/channel/UCuE-w87OlqzZJPWzBn3hfHw",
+"https://www.youtube.com/channel/UC3tmf4rv-y_KhFfLQGEf1WA",
+"https://www.youtube.com/channel/UCYplG1D9L2qlNhZUwwx2poA",
+"https://www.youtube.com/channel/UCINwB6JW-LzOimBv2bidJnQ",
+"https://www.youtube.com/channel/UC5NHNFausTjHEQdxjtu3fgQ",
+"https://www.youtube.com/channel/UC18Mm-WL_PT1Sk1zjKRILfw",
+"https://www.youtube.com/channel/UCXtuBLWUJPNxlgvdri-BQ9g",
+"https://www.youtube.com/channel/UCew0_9UfLCXCm7s6WS6WfXQ",
+"https://www.youtube.com/channel/UCBpv-j4_8k7ahKLzEV4yWew",
+"https://www.youtube.com/channel/UC7hMJmFbj-pvnGo2mweqtOQ",
+"https://www.youtube.com/channel/UCHADZxt_VJE-NyyLzGImb8Q",
+"https://www.youtube.com/channel/UC2Uce6ZnWHUGYvvD-2Ii2cA",
+"https://www.youtube.com/channel/UCZ2ZK-fhARl-jzlj3lRjXZA",
+"https://www.youtube.com/channel/UCbibSwdtgULuq4oQQDoyyrA",
+"https://www.youtube.com/channel/UCz8wkTuUXt1AWS7ir0yyPCg",
+"https://www.youtube.com/channel/UCQkqOgpgZbo-j53CxhMnKJw",
+"https://www.youtube.com/channel/UC8aEw2dVeQlKcMzHDNN6UGA",
+"https://www.youtube.com/channel/UChtsgcGMWNJ-f2XiWkSDwKA",
+"https://www.youtube.com/channel/UC9zVtWvSoEtjLXXXgtZFYhQ",
+"https://www.youtube.com/channel/UCRxPw1CNHseWUvNCMk0bfwA",
+"https://www.youtube.com/channel/UCB5mqmJu6NT3wPQt1GfKUIg",
+"https://www.youtube.com/channel/UCFGk-8c0FtJ3CGYXrPf8-iA",
+"https://www.youtube.com/channel/UC7yQ5NpObA0VLIsrFJbNZsA",
+"https://www.youtube.com/channel/UCZ9CrdIhPBa5kv1Bsuv5pEg",
+"https://www.youtube.com/channel/UC9mcpTiesOUTTbetkjHSoAQ",
+"https://www.youtube.com/channel/UCBOaKpUpYwMG4CSTswJyzDw",
+"https://www.youtube.com/channel/UC4CW6YEAUKaMAUe-dgMMOGQ",
+"https://www.youtube.com/channel/UCWox5SNI6EjovJGH3yxljwQ",
+"https://www.youtube.com/channel/UCtz1P1jetSVG1QRZHqBy7nw",
+"https://www.youtube.com/channel/UC1qlT2teWT8i0VuwDKVVnRQ",
+"https://www.youtube.com/channel/UC4TYmctmWlS3c6mEP6EW1kQ",
+"https://www.youtube.com/channel/UCEYQWTy25pDQfE7_lm4K0Yg",
+"https://www.youtube.com/channel/UClaf0NSdYFFxsgfE9LKr4nQ",
+"https://www.youtube.com/channel/UCh7Pjl7wdPWXWyvgFBuT7cw",
+"https://www.youtube.com/channel/UCu7t0uzkuKBlcUC04JCSmHg",
+"https://www.youtube.com/channel/UC-_uaEWooiSkrugzU_gKuww",
+"https://www.youtube.com/channel/UCtKKgKqy8eaVM6__ksU4KVQ",
+"https://www.youtube.com/channel/UCBUX4ZNsrJUoyIch_Z-idRw",
+"https://www.youtube.com/channel/UC8ZhEgSVqHmHr_Tk5f0AXLA",
+"https://www.youtube.com/channel/UCUlFfNuDNevRhvdGylUM7TQ",
+"https://www.youtube.com/channel/UCksDWoGOhRVJokrBQ6qIltA",
+"https://www.youtube.com/channel/UCTYhe8OnyyjTe5wMNweUHMA",
+"https://www.youtube.com/channel/UC-RwT3ODqVMprgzQPLPXEVQ",
+"https://www.youtube.com/channel/UCw4Kk7cOKZVSOOrdKEHNvOg",
+"https://www.youtube.com/channel/UCeRPcVwS3BtZRqaBw_ka1RQ",
+"https://www.youtube.com/channel/UCt_TpzPfJTjIXpci6vzivZw",
+"https://www.youtube.com/channel/UCHXRhd7mgtQiYHU14EIuBzA",
+"https://www.youtube.com/channel/UCha4mkFUmMsXVO8ZaN-w08Q",
+"https://www.youtube.com/channel/UCIH0gL63wrYbO_UGdhAokhg",
+"https://www.youtube.com/channel/UCLrLDBl6YNxsOyYgFKvJEnA",
+"https://www.youtube.com/channel/UCQBAv85WaT6IdqcP1C7o-YA",
+"https://www.youtube.com/channel/UCiqzH0DokxrJcv_cmuuxong",
+"https://www.youtube.com/channel/UCLp_coCH4Ar6Vkh5k_IQWXg",
+"https://www.youtube.com/channel/UCcW_4a_aYqvftOQLUDIK8uw",
+"https://www.youtube.com/channel/UCVwCDymOHdzMQ9NtodB7IlQ",
+"https://www.youtube.com/channel/UCRjFZ403qQlObplib6DSVDQ",
+"https://www.youtube.com/channel/UCMK5toDVf59h7IhEuB1bG0w",
+"https://www.youtube.com/channel/UCJvHqVgI9FFv_9m6EQRWPsQ",
+"https://www.youtube.com/channel/UCrCNFLPDLjQTACU84yRpyOA",
+"https://www.youtube.com/channel/UCo4QHcBK4KRWpqT_6xdFfHQ",
+"https://www.youtube.com/channel/UCjGJl7rfCkfU77eIogEGusw",
+"https://www.youtube.com/channel/UCSLGF1N1hSPwrQRHi0fy8qw",
+"https://www.youtube.com/channel/UCrWaL33DkOFHP9uP5YSCJCQ",
+"https://www.youtube.com/channel/UCJKhunGHrvoowgpPquTI__w",
+"https://www.youtube.com/channel/UCuhPNsX6rd_v9GPH-_t-43g",
+"https://www.youtube.com/channel/UCFBgJrgo1pyiEUt4XSIId5w",
+"https://www.youtube.com/channel/UCffsoM8wc8GEuczaXJV5oeg",
+"https://www.youtube.com/channel/UC_ArB-cpB7c8fVupZRdGNqQ",
+"https://www.youtube.com/channel/UCJz2ibsd4Yqd-0yQEofKYNw",
+"https://www.youtube.com/channel/UC7lSv4I4sLjBBeYozH8DCGA",
+"https://www.youtube.com/channel/UCHFnTU9w44WIAhq6ZCg-zXA",
+"https://www.youtube.com/channel/UClpyA0di3QVP03S0WWQlZVQ",
+"https://www.youtube.com/channel/UCUC7PdmDSfv5Xo9klBYI4vQ",
+"https://www.youtube.com/channel/UC7qsAbZlGDpS8_zhSQYmjPA",
+"https://www.youtube.com/channel/UCFz0VJ3sjNwZQpXPrpZhvuQ",
+"https://www.youtube.com/channel/UCsLl6L1L_bvD_fYTWYriOPQ",
+"https://www.youtube.com/channel/UCQmZIIpzCjWTyCQRiOQA9Hg",
+"https://www.youtube.com/channel/UCzgGvZjQmQpXag0gJGbvymg",
+"https://www.youtube.com/channel/UCl71vFRsCK6R7-y0P3e1Ctw",
+"https://www.youtube.com/channel/UCdkE1acld7OUNofAikcnVsA",
+"https://www.youtube.com/channel/UCDbo0U0W3sLSalO6vP4G70A",
+"https://www.youtube.com/channel/UChVz478-oNh8TmsG2Xk8FnQ",
+"https://www.youtube.com/channel/UCL4KS8Sdoms5nwxSdIrsJmg",
+"https://www.youtube.com/channel/UC0edTWu6HhH-9N_4hjfbzfQ",
+"https://www.youtube.com/channel/UCdfZXM5MROoGai0hro95nXA",
+"https://www.youtube.com/channel/UCw5ju8Yisj_Tfb0CXKv4xvw",
+"https://www.youtube.com/channel/UCOrBBTCFN6EOwuqkQk0pX_g",
+"https://www.youtube.com/channel/UC1XMOeXSd-Vs7YcILvf36RQ",
+"https://www.youtube.com/channel/UCy7hLoZz-KDReLJTH3hxR8w",
+"https://www.youtube.com/channel/UCdIL41PazvrOJ-CSC4StW1w",
+"https://www.youtube.com/channel/UCslfnQg4kZ8uzWCoNoURwVQ",
+"https://www.youtube.com/channel/UC9dAdT5xAFK9Dsp7OQVtG4w",
+"https://www.youtube.com/channel/UCs2C8T6ZGDBDGQddIyCsk3g",
+"https://www.youtube.com/channel/UCjp-0y93cJv5wOD6E2KFUsQ",
+"https://www.youtube.com/channel/UC_3ZnNEMtEQVAtkZZl-3JRQ",
+"https://www.youtube.com/channel/UCXHJeBF5mQZfcgha7TOyEhA",
+"https://www.youtube.com/channel/UCOG5MtisTNhbFT59wyhlUjw",
+"https://www.youtube.com/channel/UCl2eqlbWDalK2YMZQYlDyEA",
+"https://www.youtube.com/channel/UCd-Aw3T04oDgTcE9-ldAKug",
+"https://www.youtube.com/channel/UCg-G-wJh0rWAt7CnZQ729cA",
+"https://www.youtube.com/channel/UCc7oImcr0w1CYZZVk68xhiw",
+"https://www.youtube.com/channel/UCVaBAAcyTLA6x1HQCUZ4BIw",
+"https://www.youtube.com/channel/UCuPxIHvBKZ856JZcrmDkq3A",
+"https://www.youtube.com/channel/UCdmYaaFd0C_0MIAcMSIybQg",
+"https://www.youtube.com/channel/UCB9Ac9JJZg1ntawyc4L8DfQ",
+"https://www.youtube.com/channel/UCxUm01p84eosEA_KDUCTJuA",
+"https://www.youtube.com/channel/UCtexrsOeCyHBtdRti9BuIrA",
+"https://www.youtube.com/channel/UCK5sJB91PCiyHrmnUN0LZ0Q",
+"https://www.youtube.com/channel/UCg9eXM_dhnbMeH7aW5ibSLA",
+"https://www.youtube.com/channel/UCMua9eZn4eOg8Km1rDlXDOQ",
+"https://www.youtube.com/channel/UCdKDCkR2FePFbp5dbl9W2uA",
+"https://www.youtube.com/channel/UCFaZkfmnDjVnB28dJ9duDGA",
+"https://www.youtube.com/channel/UCSNgWrXc_TBa0V_nymd1ABg",
+"https://www.youtube.com/channel/UCW0m-HVcJnlEv8XbPIYCRzA",
+"https://www.youtube.com/channel/UCy7p8KSWAp1BT1XnyLyYjPg",
+"https://www.youtube.com/channel/UCWCeykVdZ1mdoLKgJrGNXlw",
+"https://www.youtube.com/channel/UCv9pBuuTUh2v7HMD70GQjKA",
+"https://www.youtube.com/channel/UC7JbRUSib72Hj-r7wdvNusQ",
+"https://www.youtube.com/channel/UCZ9yLVCHQrviNdDdtDYwYTQ",
+"https://www.youtube.com/channel/UCjfQYlm9nIgF-TT3UsX8j_Q",
+"https://www.youtube.com/channel/UC_YMuUxjWlef0ZMvKJjmmbw",
+"https://www.youtube.com/channel/UCDe7BxWcGYOOn0fDS8f9_TQ",
+"https://www.youtube.com/channel/UCiyPRli1fAdd1USpL-LyiLg",
+"https://www.youtube.com/channel/UC0rF8ab96x38ezh5FO-O5WA",
+"https://www.youtube.com/channel/UC2AKWFHbESXuNWVGsThhEhw",
+"https://www.youtube.com/channel/UCetaLZvEXkRtBOA4nAYz_yg",
+"https://www.youtube.com/channel/UCqmUA-eS7Kh80XsdUT8yfng",
+"https://www.youtube.com/channel/UCY8TLhGFzk6uxm_2nos0R2A",
+"https://www.youtube.com/channel/UCOYgFV9UNFq_to-8lXw8nmw",
+"https://www.youtube.com/channel/UCr9DEwGaNnX1AoVE_XXaddw",
+"https://www.youtube.com/channel/UCwCkJuShKemd22UePRrGEwA",
+"https://www.youtube.com/channel/UCWD6VjaTjllnLi3mjDh4-5Q",
+"https://www.youtube.com/channel/UCxUZfvjv1K-PIpEJSwFW8cw",
+"https://www.youtube.com/channel/UC9ZXbIIhuU3oDnxoOKr_K2A",
+"https://www.youtube.com/channel/UCjZlRYi0oiGs29dTpkrqt4g",
+"https://www.youtube.com/channel/UC0a01tccXEyQ2EnkcVLfg2Q",
+"https://www.youtube.com/channel/UCOcedFrOyMdbG3ANEhHxnuQ",
+"https://www.youtube.com/channel/UC47nFyP3kuHs2uXjh63qDVg",
+"https://www.youtube.com/channel/UC8ln9orTV_NKy6YaI6n3P4Q",
+"https://www.youtube.com/channel/UCZCxW3qb2uTRFN3FfqUBFTg",
+"https://www.youtube.com/channel/UCu4X7gbelTIrzSdypBRrXoQ",
+"https://www.youtube.com/channel/UCR8l2eIqv_hCVKnLKdihyEA",
+"https://www.youtube.com/channel/UCTZK5HiR5ROI-aGPKA9Pn_g",
+"https://www.youtube.com/channel/UCDYKgAObNeP3HZvfVYSEydg",
+"https://www.youtube.com/channel/UC5mKmnHXWp0ikiE9N4Vi_dw",
+"https://www.youtube.com/channel/UCI4jcRnq1pLB6IbG7anxGtg",
+"https://www.youtube.com/channel/UCilRnBZvgcGnJBaaUi4AQtg",
+"https://www.youtube.com/channel/UCgGzVWb6ipR5JcmQedXhJXQ",
+"https://www.youtube.com/channel/UCIc1AnkG7zT1MBdyBBYybcg",
+"https://www.youtube.com/channel/UCV9ml8S_VsyQ-qE_P2xWcZg",
+"https://www.youtube.com/channel/UC0BomNXU-RlDbXUTHw1qVeg",
+"https://www.youtube.com/channel/UC_bY25y-4EbnNJhJ7N8ZTcQ",
+"https://www.youtube.com/channel/UCdN66GDhctqfuuNocCDJA1g",
+"https://www.youtube.com/channel/UCSfjRbQvYavd6xDtKtWGOjQ",
+"https://www.youtube.com/channel/UCBzi__MpzYbLTUi-pXL4KlQ",
+"https://www.youtube.com/channel/UC8sKqac-dFrYBVUTMEfosNg",
+"https://www.youtube.com/channel/UCVnjCvtpJFohlZVv0qJP-VQ",
+"https://www.youtube.com/channel/UC-F4HEw3zKxSt0HW9JXryLg",
+"https://www.youtube.com/channel/UCoESIaXo93To76649yRMDqA",
+"https://www.youtube.com/channel/UCvrG1rF7owBPYw_r1QrvvvQ",
+"https://www.youtube.com/channel/UComtJk3kluxqmRyUv20Sdyw",
+"https://www.youtube.com/channel/UC9vEMGlKxK2LxU39AlTMyZQ",
+"https://www.youtube.com/channel/UC1-B1YytWHoA2tnyN5GUenA",
+"https://www.youtube.com/channel/UCXRm4IdBqkFdYfYaZRVJcDw",
+"https://www.youtube.com/channel/UC0k-pLV5LETr4jzHNy5WqBA",
+"https://www.youtube.com/channel/UCt7UChrdZCBKUkw1fEXubzQ",
+"https://www.youtube.com/channel/UC_RFpi5sU1vT-JNZOQRWOow",
+"https://www.youtube.com/channel/UCAeScw7r156gfl2R81oh5Gg",
+"https://www.youtube.com/channel/UCqkYR_OB2ZqvxGXs04IYblw",
+"https://www.youtube.com/channel/UC0X_goyRIDVFVOBJhal-AZw",
+"https://www.youtube.com/channel/UCMmtBnFFGJ4suClGMTaTJig",
+"https://www.youtube.com/channel/UCTfPiwL0eezp18KH5wz-YxQ",
+"https://www.youtube.com/channel/UCTeqWj17xX8hFUa3Afs8l3g",
+"https://www.youtube.com/channel/UCVisiOGCPDPN4SWqbn6Hyxg",
+"https://www.youtube.com/channel/UCcznISKUwhqNrukVAAVAfAw",
+"https://www.youtube.com/channel/UCDYQka1o4b8nFjmsudvkLRg",
+"https://www.youtube.com/channel/UCk01WLNAHPsNFDrCHWChSyA",
+"https://www.youtube.com/channel/UCDGT02LbhUYtEdU9jm2mBeg",
+"https://www.youtube.com/channel/UCrVYJHaD3KbB7CbJAqnhNTw",
+"https://www.youtube.com/channel/UCnYFAfzcooKJvr4PcpGbL6A",
+"https://www.youtube.com/channel/UCZpQDEQbprPwCzvqhFDoV9A",
+"https://www.youtube.com/channel/UCGiiVMWSei4UARAYYYLz0WA",
+"https://www.youtube.com/channel/UC8c2G0IJN8uFd3_UffW2f5g",
+"https://www.youtube.com/channel/UC7U5mgnENIqsNqDoNyHK2PQ",
+"https://www.youtube.com/channel/UClzEnw54ZMlvIw_2gxSqZOA",
+"https://www.youtube.com/channel/UCewSV6iv_ibYTRM190a2I-A",
+"https://www.youtube.com/channel/UCaIyRGdRqfrS8p5JqtQdXTw",
+"https://www.youtube.com/channel/UCr0ulEGMrm8gGBRtLxIqOOQ",
+"https://www.youtube.com/channel/UCBrMk3fwWnWLudNrbEaS2QQ",
+"https://www.youtube.com/channel/UCXm08D-S8qusOJ5DO5Ll_0A",
+"https://www.youtube.com/channel/UCq0geJEggaJNfDtpbxM8TPg",
+"https://www.youtube.com/channel/UC3D1x6Kql_3afQ3MvJEgY0w",
+"https://www.youtube.com/channel/UCHf3XNyQsTZcWPQV9WS-nXA",
+"https://www.youtube.com/channel/UC5oBx9vOjz5vDmx1ovF-z9Q",
+"https://www.youtube.com/channel/UC-I_duRcEwZrLUmdJQRZ_mA",
+"https://www.youtube.com/channel/UCkf6z10vAAcJsZVX0_1zNsQ",
+"https://www.youtube.com/channel/UCFApB8D_1wWKhzNGbwp6VRQ",
+"https://www.youtube.com/channel/UCEYfZvk-B405asQMNxrSSXA",
+"https://www.youtube.com/channel/UC4C34BN7TqTB4s3DpXeTECg",
+"https://www.youtube.com/channel/UCkN__XGM2usEGolhGKTqXyw",
+"https://www.youtube.com/channel/UCieapHQCk-Y4zDKQ6I1XZKQ",
+"https://www.youtube.com/channel/UCuyMhdRvBC3EtfDokPJr50w",
+"https://www.youtube.com/channel/UCiAICIsHfVksNApRtRNvFHw",
+"https://www.youtube.com/channel/UCqfF4o-1CcOIjmm-5S2xHVQ",
+"https://www.youtube.com/channel/UCPNr1RLtLwPY2j4-1tvEdqQ",
+"https://www.youtube.com/channel/UCrMzyGRJYuSLfUZwm1xEuNg",
+"https://www.youtube.com/channel/UCJEutDT_YBDrELScpNlDSeg",
+"https://www.youtube.com/channel/UCwnpYKAXw7m34YyyfMAZxMQ",
+"https://www.youtube.com/channel/UClevYTz7bITyoSjYeUWqm5A",
+"https://www.youtube.com/channel/UCUYaiGs8FgckjOzpz74bsbA",
+"https://www.youtube.com/channel/UCTsxWLXYYxLauatC4mKGpFA",
+"https://www.youtube.com/channel/UCoXZhtGV_t1ooQrdhwb6zEw",
+"https://www.youtube.com/channel/UCflS0IWhVAEaIYV0ZXwwCNA",
+"https://www.youtube.com/channel/UC7Oo2Meb6jRz2vtrQJ-L6IA",
+"https://www.youtube.com/channel/UC9TfXH7JZRWvDV-FMJwM1HQ",
+"https://www.youtube.com/channel/UCEUchLjLeGR3OcNJKbHggeQ",
+"https://www.youtube.com/channel/UC_TtdTVtI-BWm7krAwPvFCQ",
+"https://www.youtube.com/channel/UCd3y4jDLqr41r5zh97nW19A",
+"https://www.youtube.com/channel/UCQRungAfuAiHOBpI0Uhb8jQ",
+"https://www.youtube.com/channel/UCs8S0C_4sf9jWWJd613RYCA",
+"https://www.youtube.com/channel/UCmkGJx1xGijQPmbDlfMhOrw",
+"https://www.youtube.com/channel/UCEazpFGpAghOWoteFMnlbCQ",
+"https://www.youtube.com/channel/UCRHXShKuDabJTzype0CxxDw",
+"https://www.youtube.com/channel/UC6CYvtzXwtfy8qT_kdDfaDg",
+"https://www.youtube.com/channel/UC7lx3p5H0oBKdLKXAd_rZPg",
+"https://www.youtube.com/channel/UCaDy1l4rdQJe_A4Z4hWBesA",
+"https://www.youtube.com/channel/UCHxhn0mPFfHGpu_45zpKAuw",
+"https://www.youtube.com/channel/UCWhoQqw2UHSVfDb3FQiFGgg",
+"https://www.youtube.com/channel/UCP5JFJiYHuRp3NTtixDEc3Q",
+"https://www.youtube.com/channel/UCe3bpumKGb2CMRkeAP61XSw",
+"https://www.youtube.com/channel/UCeIsaxRG3oCAsejbrn53Kkg",
+"https://www.youtube.com/channel/UCoNYj9OFHZn3ACmmeRCPwbA",
+"https://www.youtube.com/channel/UCDk4Jv_Q64gpKP4JJ2FhOHw",
+"https://www.youtube.com/channel/UC6Iv92nZE21XWt0B1ZTCd6Q",
+"https://www.youtube.com/channel/UCKQVSNdzGBJSXaUmS4TOWww",
+"https://www.youtube.com/channel/UCLG2sbIo3Rktb77h6q9yuDw",
+"https://www.youtube.com/channel/UCnnp2fWa77PP2h08T7WAzzw",
+"https://www.youtube.com/channel/UCxInriP-JiroBE6ktMzm3AQ",
+"https://www.youtube.com/channel/UC4R8DWoMoI7CAwX8_LjQHig",
+"https://www.youtube.com/channel/UCrpQ4p1Ql_hG8rKXIKM1MOQ",
+"https://www.youtube.com/channel/UCTdwdrpdFAW6ExPMhCaxDKw",
+"https://www.youtube.com/channel/UCAHVcpAcTBR7HPJOjfKbSTg",
+"https://www.youtube.com/channel/UC4UTHUrJXIqE1at_I-vZcRQ",
+"https://www.youtube.com/channel/UCdqA21Fp2DELyZ0jlArjDwQ",
+"https://www.youtube.com/channel/UCJEPmk_8MGZ2MMh-ovu96Pw",
+"https://www.youtube.com/channel/UCVLYk3KU1cPuoCgxhV1KMNw",
+"https://www.youtube.com/channel/UC2L8MRMkV_97eA2KCjHKPrA",
+"https://www.youtube.com/channel/UC1iTi0TW9_UZeYL2dM6OhHQ",
+"https://www.youtube.com/channel/UCGZLi0REiJOZAKCmBAZ7nKg",
+"https://www.youtube.com/channel/UCJ0KVle-6k23o4X_DlUx_pQ",
+"https://www.youtube.com/channel/UCPApjKbzaa7wDBKkn5yl5RQ",
+"https://www.youtube.com/channel/UCId9ZcO0KLs4teYv7b7omnA",
+"https://www.youtube.com/channel/UCfhGOkyTOb0Pc8ZL6kKTfNw",
+"https://www.youtube.com/channel/UCVhVlRgeR9jRQlZW3ivfYyQ",
+"https://www.youtube.com/channel/UCST1HquDZvUdo2HROTmAgxQ",
+"https://www.youtube.com/channel/UCy9QO3pm_VhaEeyMpBOv-fA",
+"https://www.youtube.com/channel/UChqBGo5TMFOiq1ldcaYsO_A",
+"https://www.youtube.com/channel/UCauCgfc5CwafPernPNP0IGA",
+"https://www.youtube.com/channel/UCKlEphWhJ8c4trq2JKc4RKw",
+"https://www.youtube.com/channel/UCV1weUWqAhg199-Rzn8geig",
+"https://www.youtube.com/channel/UCJ8KVdbef3ATyPQHAJPEhFQ",
+"https://www.youtube.com/channel/UCobZAp9S9Pa16774D2VsTGw",
+"https://www.youtube.com/channel/UCJOSUJrq7tNe30KX-L-A0mg",
+"https://www.youtube.com/channel/UCegxEzt4BpkrGo3JCscrJJA",
+"https://www.youtube.com/channel/UCxBRxWv-whTsS7oLQUdl-1Q",
+"https://www.youtube.com/channel/UCQ4h_yRpzVaeqP5g0irOpMQ",
+"https://www.youtube.com/channel/UC4N045ddy5cL2qugylaH6pg",
+"https://www.youtube.com/channel/UC66RuKoMXcnyrKDsKzEOkUA",
+"https://www.youtube.com/channel/UC0pwmWPMS3eQ41KDhcEfvgg",
+"https://www.youtube.com/channel/UCS7FykD6nUYB8s-qY03m43Q",
+"https://www.youtube.com/channel/UC731f0CxVOSq5dwnLceS0xQ",
+"https://www.youtube.com/channel/UCGRbWZGq8xpSw-2-pjLjHAg",
+"https://www.youtube.com/channel/UCj5qM1RhJVcBWTgM8JpR3cA",
+"https://www.youtube.com/channel/UCvuHQot9DtmZg6O5V1Ztsbw",
+"https://www.youtube.com/channel/UCJyg8UaP9qBDGPS6Nt0-cfQ",
+"https://www.youtube.com/channel/UC5M6c6nboioNkCBngmD-Pew",
+"https://www.youtube.com/channel/UCMM1IQdOXmN6h_0MGFvLmmw",
+"https://www.youtube.com/channel/UC1-XTj1gI5nYDldvzzLo0Rw",
+"https://www.youtube.com/channel/UCsfEFLVZKxeEgKnIlRfYmfA",
+"https://www.youtube.com/channel/UCBSW0gow0S_-KxevZA243Cw",
+"https://www.youtube.com/channel/UCzWOk2a9B35c1EaGS8C6kDw",
+"https://www.youtube.com/channel/UCM_PuUQK9WkChkgvmXkboyw",
+"https://www.youtube.com/channel/UCEMUkSqcnkaHs9OVA_zTYBA",
+"https://www.youtube.com/channel/UCXdI9QK09I8SNVs0Lamjnag",
+"https://www.youtube.com/channel/UCgMJrRgSpaBCD382UznTYrA",
+"https://www.youtube.com/channel/UC6Zo-JyLA9a4vYerWG0HO0g",
+"https://www.youtube.com/channel/UCGJqdpVcUMa2oWfKcaKrWBg",
+"https://www.youtube.com/channel/UCKWQf84QIEn5g09P__yXYuA",
+"https://www.youtube.com/channel/UCNwLWzuI0cZFMt9jN-uu_eQ",
+"https://www.youtube.com/channel/UCiGFAZ0JhxsMf5Tqd03mD1w",
+"https://www.youtube.com/channel/UCmFzNgDuljhZxGMnc7aC9og",
+"https://www.youtube.com/channel/UC8IU50WYxw846V_xKbYAfug",
+"https://www.youtube.com/channel/UCKRckuHeTDstXy1aLpXo2-A",
+"https://www.youtube.com/channel/UCBXfSkd7xibqTQhjF-yrPlA",
+"https://www.youtube.com/channel/UCkOGSyPh38sf2VUkXOeMwrg",
+"https://www.youtube.com/channel/UCC0KQW0YHVnHEAE17ed_16Q",
+"https://www.youtube.com/channel/UCUCmasHnT8wvvcJXc9PYfOw",
+"https://www.youtube.com/channel/UCShAsFu_wZwZT_9Oxt40r-A",
+"https://www.youtube.com/channel/UCLlHFd-68bYAUTNmztT_QQA",
+"https://www.youtube.com/channel/UCoZscSBajnf_6hH5YTwYzBA",
+"https://www.youtube.com/channel/UCYu6UJ47nbJhSKQTsrSWMIw",
+"https://www.youtube.com/channel/UCUeIXetK_5K9Gq03Zkqrazg",
+"https://www.youtube.com/channel/UC8eaNxduosOMlHClhejnCHA",
+"https://www.youtube.com/channel/UCg_SR4myvvVTRlxHVW7AlEg",
+"https://www.youtube.com/channel/UC7w-t4Xwpn_sZNJhscQILBQ",
+"https://www.youtube.com/channel/UCnOfEby-ffsF8Ba0rbSiMDw",
+"https://www.youtube.com/channel/UC5-sRch06XJPOww24UtvhGA",
+"https://www.youtube.com/channel/UCtSUDIAAZjL4etJzqlqAJKw",
+"https://www.youtube.com/channel/UCeEWKc54saWwhZ0L-2HI7AQ",
+"https://www.youtube.com/channel/UCCs9ysL259cqnzfLlsK4I0g",
+"https://www.youtube.com/channel/UCQeQKazeZndUZDHo6JFK5YQ",
+"https://www.youtube.com/channel/UCV6FItfp9E789OYECtHceXA",
+"https://www.youtube.com/channel/UCaD2-ylHSfv_VBURxlrSgoQ",
+"https://www.youtube.com/channel/UCj0_gs7hv7rayoFpcyxWYJg",
+"https://www.youtube.com/channel/UCdRNZQj9Ux6LKSVuBZXO74A",
+"https://www.youtube.com/channel/UCYZZIi7dfdI2HQVVH-rw0ww",
+"https://www.youtube.com/channel/UCJwXd2Y_sJ2HYTOulbxDwwQ",
+"https://www.youtube.com/channel/UCr4Ljjtz8AWDb5qC_yFyT8g",
+"https://www.youtube.com/channel/UC4Tf6JtDtj4Mr9Kpg5bja1Q",
+"https://www.youtube.com/channel/UCPEwsXH55h9YqXUgeARFPRQ",
+"https://www.youtube.com/channel/UCNIOReI2ypfjT8HsFkTG0Rg",
+"https://www.youtube.com/channel/UClZB3tfqatgvdVB7Ck1dEBg",
+"https://www.youtube.com/channel/UCGx-WvhX35CuqP0G6fVquQQ",
+"https://www.youtube.com/channel/UC2FdyayZ_eaDhNe0Kp6HK6Q",
+"https://www.youtube.com/channel/UCH6gcsRGgVWOWkv7xLXLEuw",
+"https://www.youtube.com/channel/UC5vcyVibAsc-fC6itfqRczw",
+"https://www.youtube.com/channel/UCSuX5k8xWIzg67gbDEdYZow",
+"https://www.youtube.com/channel/UCsgXIOF43ZqgcmLwnKjsndQ",
+"https://www.youtube.com/channel/UCPK8Tm7P3fw-DyKdesJ15Sw",
+"https://www.youtube.com/channel/UCUzfKol5pSpFyotTjpAWbPA",
+"https://www.youtube.com/channel/UCNbhvDQuOBAIHUWGZZ9JEIA",
+"https://www.youtube.com/channel/UCCYZQQxiAJVJrkWkO5ukeiA",
+"https://www.youtube.com/channel/UCqREUocuAIrdUDyXbkxniVw",
+"https://www.youtube.com/channel/UCiUB5LyeiXgLpMbGPGJx9Mw",
+"https://www.youtube.com/channel/UCRLcSMAMm-h2oGJDYX_bH0w",
+"https://www.youtube.com/channel/UC85DaBbxbyDC0y-i2D09Vng",
+"https://www.youtube.com/channel/UCEjO5C1eCsrZ_K9tY4xBi1g",
+"https://www.youtube.com/channel/UCe_iKSyZto6a17TZN39_SqQ",
+"https://www.youtube.com/channel/UCn-jtPSS5DDrK5XJ4otYnAg",
+"https://www.youtube.com/channel/UCxosRj0ESXuHVDhMq2H92EA",
+"https://www.youtube.com/channel/UCOKZ9rCIokVTKNljgmmqRWQ",
+"https://www.youtube.com/channel/UCu6SEbgN06FR5OSNnH0BX5A",
+"https://www.youtube.com/channel/UCcV0_AUAe7JIFZj_RlN_GfQ",
+"https://www.youtube.com/channel/UCqdL4ODZWaeCgcw1RtmHkQw",
+"https://www.youtube.com/channel/UCrwz4ot1WVwENqXSIQeB3dA",
+"https://www.youtube.com/channel/UCI1mVJyrTw3cIBPJ9WNuQLA",
+"https://www.youtube.com/channel/UC-vof-aVN7j0C5vTNseX8zg",
+"https://www.youtube.com/channel/UCwp3169FhrAL_M2EuK-mVaw",
+"https://www.youtube.com/channel/UCttXfj90iLoEVli9U_TxMBg",
+"https://www.youtube.com/channel/UCaFxLWaaLzK0OjXHTg4uTcQ",
+"https://www.youtube.com/channel/UCkXeRrqTY0Aa3vIlqp0XEUw",
+"https://www.youtube.com/channel/UCQyFm2RmsevE1xNYyW41JBA",
+"https://www.youtube.com/channel/UCH7RWMW8qkXf2qKwS9cXpHQ",
+"https://www.youtube.com/channel/UC7yqowrsdolipG3WpJobBIQ",
+"https://www.youtube.com/channel/UC9ybr8akTqoAJ3ZFmsorWGw",
+"https://www.youtube.com/channel/UCxkzofCE3XPXuxvPSACwSUw",
+"https://www.youtube.com/channel/UCeueVS1vrwbV9FpsnQ9Wplw",
+"https://www.youtube.com/channel/UCGP1wPtitMJCL0v22xoFFiw",
+"https://www.youtube.com/channel/UCzR-MwBshbNQUZ94EybgZRA",
+"https://www.youtube.com/channel/UCNszPIg0PcyxnNr1BeCcNXw",
+"https://www.youtube.com/channel/UCLAGCTbOGqsiWYAwToXbQnQ",
+"https://www.youtube.com/channel/UCZpH5jdgDAGy4b_fG6Ecm5w",
+"https://www.youtube.com/channel/UCxtlLowHjPS6jAd-pLPUgFQ",
+"https://www.youtube.com/channel/UCoOGZwJrlzivsfPjqGwP1YA",
+"https://www.youtube.com/channel/UCCo6USYQ_VoFN3kS1Vk7vUw",
+"https://www.youtube.com/channel/UCORUmnIfyTFkF2GCOUoTyOA",
+"https://www.youtube.com/channel/UCXMEezhMw5ZHX9beGFy9Yrw",
+"https://www.youtube.com/channel/UCGAaeUclhgnKHExQF6C0NLA",
+"https://www.youtube.com/channel/UC67qtGR2fG66NLWdlXbvUKg",
+"https://www.youtube.com/channel/UCjBYDMY_I99137RhOAiHxCg",
+"https://www.youtube.com/channel/UCJq-bnG8iO4xMdflMoyVKZQ",
+"https://www.youtube.com/channel/UCq4iugT3TCtUUTGRbaNSqWw",
+"https://www.youtube.com/channel/UCVeGtnAZAimbtreMvJyRyCA",
+"https://www.youtube.com/channel/UC_98Sqib7B6UPTvRs233XBA",
+"https://www.youtube.com/channel/UCE1fhCt_rQY-DQs6wyCJeZg",
+"https://www.youtube.com/channel/UCZs68ez6Cg_9HRMwWgrlWhw",
+"https://www.youtube.com/channel/UCFWWUYFaG7O4YY3uu97RSBQ",
+"https://www.youtube.com/channel/UCLZYVLk7QxJw5Wpab-Kmhzw",
+"https://www.youtube.com/channel/UCTwOP3YAuxfxRvXc9hJjkOQ",
+"https://www.youtube.com/channel/UCsdtTNtCdeB3i9NKNkpJWnA",
+"https://www.youtube.com/channel/UC5ZJBxsmTn4ardiSDPf4rDQ",
+"https://www.youtube.com/channel/UCtCDS6lhw_R7rfpVNYrSjww",
+"https://www.youtube.com/channel/UCyZu_kaswDOo9ddu2CgM10g",
+"https://www.youtube.com/channel/UC1npG7PEINgTCR2dwgnVutg",
+"https://www.youtube.com/channel/UCX5VwCi-TZkJj7_F8igrJAw",
+"https://www.youtube.com/channel/UCSJeDl3FgZTGY-Fxgpy4oFw",
+"https://www.youtube.com/channel/UCkA45LoTdbRuufCYFzHEf8w",
+"https://www.youtube.com/channel/UCUXp18gJ6RAseyi7MOR-gfg",
+"https://www.youtube.com/channel/UC5NgImK001nd58Mlx18CacA",
+"https://www.youtube.com/channel/UCV3s9GPYlOAW3FWP80XaJ-w",
+"https://www.youtube.com/channel/UC3xtMw8JBjInKHekuw2UpoA",
+"https://www.youtube.com/channel/UCy60ICpVQCDY5zE89uozXlA",
+"https://www.youtube.com/channel/UCfN5wmdWevmLH-sKGHLSP5w",
+"https://www.youtube.com/channel/UCPfe7ccRO-PzA-DT0ZGSzng",
+"https://www.youtube.com/channel/UCyrzSV8d0YpovmpkGVOOQkw",
+"https://www.youtube.com/channel/UC18RPjIFvFi6HUpGwAe4Ygg",
+"https://www.youtube.com/channel/UCNBVK0f-rX9cEalcpo7yDLw",
+"https://www.youtube.com/channel/UCyP0dLRAKrWJ6ga3sAsE6Qw",
+"https://www.youtube.com/channel/UCbwhyiLMYzR0CR5F1pgztQQ",
+"https://www.youtube.com/channel/UCswlAC7RTRTFkd88q2gbKdQ",
+"https://www.youtube.com/channel/UCQy4gMvmih7m_OYc8GikGDQ",
+"https://www.youtube.com/channel/UCNI1SmjyPVK-EjxkxFn4N6w",
+"https://www.youtube.com/channel/UC47yTSV4j4vkqKoJk-ynvPw",
+"https://www.youtube.com/channel/UCLHcOLK_mDEUno8mDmkLcww",
+"https://www.youtube.com/channel/UCjAAC5ZFIm0s2Czj2M_Opxg",
+"https://www.youtube.com/channel/UC0HKjgHk-xcxVA4T_7fHvKg",
+"https://www.youtube.com/channel/UCYUMVmEdZjd66rbzzDzy8xw",
+"https://www.youtube.com/channel/UC9Mc9R0i5UkoqvOfXy62qEg",
+"https://www.youtube.com/channel/UCzwz7LKuJR6SDkkQdPGb2Tw",
+"https://www.youtube.com/channel/UCOSCtijO54Te8crrJkoH1Cw",
+"https://www.youtube.com/channel/UCEBz6iNaUVAggAP899cXFMw",
+"https://www.youtube.com/channel/UC9ldcKX8b1YDy2BDyjqgOsQ",
+"https://www.youtube.com/channel/UCyM0ICxsPUv5canYu_AHhDA",
+"https://www.youtube.com/channel/UCyh4qbWR3LqtgPfR19WbLpA",
+"https://www.youtube.com/channel/UCXvx3oSC66veRllK0P2hipg",
+"https://www.youtube.com/channel/UCq3iEfOBwCA4uZlNNDTIpNw",
+"https://www.youtube.com/channel/UCPGvXRVRi31jO-GXHRiuecQ",
+"https://www.youtube.com/channel/UCHffjZBGtRODfZi61cNAIkw",
+"https://www.youtube.com/channel/UCTDgMoTgJ4XK2o1LrgQV0Hg",
+"https://www.youtube.com/channel/UCUeGSgsRZnesruPwP5rhNpA",
+"https://www.youtube.com/channel/UCChvRK2F9b_jTJP69jBA0ag",
+"https://www.youtube.com/channel/UCF92olTFp2P44pdbl_K5eEg",
+"https://www.youtube.com/channel/UCNztmEFo7z5o4GrSmMPHSOg",
+"https://www.youtube.com/channel/UCMiaBDF4iCNJhqtd20CqmDg",
+"https://www.youtube.com/channel/UCdjWJ6t3dvvw0dezSbbwWxw",
+"https://www.youtube.com/channel/UC1zZeoAjBzF8SuABH4hu9Qg",
+"https://www.youtube.com/channel/UCJ8mkrJqZuiPm7jBWhTrmJQ",
+"https://www.youtube.com/channel/UCH6inI_G1S6PI2cy2TIix5w",
+"https://www.youtube.com/channel/UC1RLRPkOJekYpGImP4ZDFpg",
+"https://www.youtube.com/channel/UCgr8zLNoO7ps957hVr9CmaQ",
+"https://www.youtube.com/channel/UCP_QWZLZvKCzsdzsKLJC_Zg",
+"https://www.youtube.com/channel/UCJsECJ9V9dAjnpRzikmPTKQ",
+"https://www.youtube.com/channel/UCpLyQOwNvSClUTjIvBsPrtQ",
+"https://www.youtube.com/channel/UCj0LBFe7u6h6lIg-PNxCRBQ",
+"https://www.youtube.com/channel/UCouGXK3JC1Cvm1NvPlFFtCA",
+"https://www.youtube.com/channel/UC4Qx-Q2NbzvRCv7fO4P-F-g",
+"https://www.youtube.com/channel/UCN6BPx6XLgkOd_YfHmdNtyA",
+"https://www.youtube.com/channel/UCfZ6Yx0wCxpqDc92-L2_yHA",
+"https://www.youtube.com/channel/UCVL0Lj41em8S5_hYOBwoR_g",
+"https://www.youtube.com/channel/UC5MxsLlVFIdZq-T39hGDPWg",
+"https://www.youtube.com/channel/UCWagbetb7nxza9Yx1NDtQjw",
+"https://www.youtube.com/channel/UCIwP9aSSXzP_2Bp4BSU2ndg",
+"https://www.youtube.com/channel/UC-3IIuRVO1z668-HLoNuCVA",
+"https://www.youtube.com/channel/UCHJ3IXgZbXfRLwZeI8Kb0Aw",
+"https://www.youtube.com/channel/UCYvaEY6HP8iRAMIxV5mG-Rw",
+"https://www.youtube.com/channel/UCuirLz5QHQj-qu7k_swOWvw",
+"https://www.youtube.com/channel/UCkThfOYldPQ6P_L04kbGKFw",
+"https://www.youtube.com/channel/UC4VTHbT5sbs7fadUhHVznhA",
+"https://www.youtube.com/channel/UCAAfUanzGr4KkqxDcqqyYgA",
+"https://www.youtube.com/channel/UCqwP0XHUnh50LPVJ9cTfsjA",
+"https://www.youtube.com/channel/UCBgCS8IRQ1BwWcCwLF-vu2A",
+"https://www.youtube.com/channel/UC4zs_JIzIlMW3StHzMOOF6g",
+"https://www.youtube.com/channel/UCH1_KIazmYM9FFgxMCcA1lA",
+"https://www.youtube.com/channel/UCrPoC3gMPaWr5_IJA71RNow",
+"https://www.youtube.com/channel/UCe6-1tLCxmTfd2QiAH1L4Rw",
+"https://www.youtube.com/channel/UCHGH3POj19mG39uewasi6Yw",
+"https://www.youtube.com/channel/UCw2ROIJf9UCnNriMEBdBPZQ",
+"https://www.youtube.com/channel/UCkeXS-4QzJOuLYfv8glSabA",
+"https://www.youtube.com/channel/UC98q_roPhpX8FujmY8xO83g",
+"https://www.youtube.com/channel/UCnu9GpfC73TQa5PzeVngukg",
+"https://www.youtube.com/channel/UCWTLqZ91iIkUtu9v6JWOWEw",
+"https://www.youtube.com/channel/UCAa5DSGpI51KFmsqM6RWLwg",
+"https://www.youtube.com/channel/UCe2_urY6C0S3lE2yRcVNg_A",
+"https://www.youtube.com/channel/UCLu7c8CfcQI4liHpZv_nhIQ",
+"https://www.youtube.com/channel/UCEmDpuHByfDyHOyWcyn6rQQ",
+"https://www.youtube.com/channel/UCCi59lZizkpXHgM2Z1Jzeug",
+"https://www.youtube.com/channel/UCzeqVzaJyy8ZxrMbiHN6NWw",
+"https://www.youtube.com/channel/UCnVxsHxy1OMb075OnBZhJxg",
+"https://www.youtube.com/channel/UCC_4-_CVeOpn7N2TeR_CNew",
+"https://www.youtube.com/channel/UCBS0egX3SC6jLgfkWRtj2tg",
+"https://www.youtube.com/channel/UCW9DVq-q_HKvFxDvzkz4lMA",
+"https://www.youtube.com/channel/UC5Gbfxhj6-M2FWwMYAMnFZA",
+"https://www.youtube.com/channel/UCvwhfURJF6uVOlbjU4_eb8g",
+"https://www.youtube.com/channel/UCHK0l1k64QzXpjzTVo8rcAQ",
+"https://www.youtube.com/channel/UCrW5doIOlhao71rWewXzFXA",
+"https://www.youtube.com/channel/UCQWEB_4rSqyAvTSyG98e-ow",
+"https://www.youtube.com/channel/UCnTpIMvtKjqF3H4QE_oJ56Q",
+"https://www.youtube.com/channel/UCBNjdFiLgcZZh1DuvRivREA",
+"https://www.youtube.com/channel/UCclEwsm-Ii2Hcqzq3V1hC1A",
+"https://www.youtube.com/channel/UCwIaWAMTOtkxA1TXwHbLv6A",
+"https://www.youtube.com/channel/UCk8-ryFKlydqaCll0ZAX5wg",
+"https://www.youtube.com/channel/UC9k4EhUDFrkGVzyrewP0bHQ",
+"https://www.youtube.com/channel/UCsSbsiwrtrMLU_oO8yVlZMw",
+"https://www.youtube.com/channel/UCoH9JZxAwUNIsXK08EXHRng",
+"https://www.youtube.com/channel/UCbHanVa9mffr6TA5Oft_obA",
+"https://www.youtube.com/channel/UCp3WE2pGeLcdmZ0Ja1Vw3CQ",
+"https://www.youtube.com/channel/UCR0G7XLDtTNZ28RKGuUmJ2g",
+"https://www.youtube.com/channel/UCHz951WkPUm664C-rjMcfyA",
+"https://www.youtube.com/channel/UC4YbWR4VbiQGxWZAmS4CqUw",
+"https://www.youtube.com/channel/UCwKSkv59iyJQ4yCF8UusAoA",
+"https://www.youtube.com/channel/UCJyV4zh2UesVrtyE4cBj-Dw",
+"https://www.youtube.com/channel/UCSAb_qqk7kPSkfZiXeEHT5g",
+"https://www.youtube.com/channel/UC_1adZf3P2WPT2LCh7LjdAg",
+"https://www.youtube.com/channel/UC3wneH4qoj0o6pXWklgZe4A",
+"https://www.youtube.com/channel/UC2BmNh1hJYZZlFkNNcRVZpg",
+"https://www.youtube.com/channel/UCnsCGGHlyYNX07hiaQvkwgw",
+"https://www.youtube.com/channel/UCVY-8bsxRncbk_IZa9QGFeA",
+"https://www.youtube.com/channel/UCXIi14tOWdK2OJzi7cNuCaQ",
+"https://www.youtube.com/channel/UCjWUDrzgup0svYe_mz4S-rA",
+"https://www.youtube.com/channel/UC278AibI4zCWjvL2tSLK7cQ",
+"https://www.youtube.com/channel/UCebAQRwM3AgEXKFMZZrEGXg",
+"https://www.youtube.com/channel/UC8vWoxBzaKPjwTwEFI986Kw",
+"https://www.youtube.com/channel/UCHOYVFZYsu8-5oNhXKBEwTQ",
+"https://www.youtube.com/channel/UCR6sc-NW-HU4PB3e9x-UJvQ",
+"https://www.youtube.com/channel/UCoBGS3epPsu6Z__9_GrLyWQ",
+"https://www.youtube.com/channel/UCIV9ZylsYieZSN5K1LFBx3w",
+"https://www.youtube.com/channel/UCme9rn6bthuO0Ugp57Wb9Bw",
+"https://www.youtube.com/channel/UCEc_-hsoo1dGPoWepbDk7pQ",
+"https://www.youtube.com/channel/UCr2SqAGmvPp4o7D7kIUIlSQ",
+"https://www.youtube.com/channel/UCFMsXstesUU7PyMrf61FINA",
+"https://www.youtube.com/channel/UCbFiLxQrpDtzzd_Mvv1WCgw",
+"https://www.youtube.com/channel/UC7T4frUs8LmjvodEEAqbMZA",
+"https://www.youtube.com/channel/UC1eHly9DPasmFKAXwkM5Wjw",
+"https://www.youtube.com/channel/UCgi7hOS8BOZf8k-Ky2NOiiA",
+"https://www.youtube.com/channel/UC5_a22posGNJAAzxf6BhPgw",
+"https://www.youtube.com/channel/UC_-QVKbh4BvkwFZvbAaAkaA",
+"https://www.youtube.com/channel/UC8WF0dtXmRuXT3Pe-5f8hxQ",
+"https://www.youtube.com/channel/UCtjUZ2smGncaZbqiz4i5j0A",
+"https://www.youtube.com/channel/UCaqwCrOfZhEVxCCCA1dGCcQ",
+"https://www.youtube.com/channel/UCv67ZVs-DuzZxdNBhi1-R4w",
+"https://www.youtube.com/channel/UCo9AW7EvRTFncQkWsPhyOcg",
+"https://www.youtube.com/channel/UCVpv7PRFAi6NbLxdCuC0VeQ",
+"https://www.youtube.com/channel/UC-yi9ncH0O36KUq8p_drQvQ",
+"https://www.youtube.com/channel/UCj3PG41gFKi_j22liH7cHRQ",
+"https://www.youtube.com/channel/UCs80RHQffIb2SaW3uLDImRg",
+"https://www.youtube.com/channel/UCrBlXWXvI0FGTKnHskott7g",
+"https://www.youtube.com/channel/UCYPBBXDzoj8RR6PWa78uEBQ",
+"https://www.youtube.com/channel/UC5mhBuazPYH_tkTUawkTByg",
+"https://www.youtube.com/channel/UC44bacbUfT33MTd70QUNXDQ",
+"https://www.youtube.com/channel/UC1WI6WhVKzHbAkx9r4y8AjQ",
+"https://www.youtube.com/channel/UC_ljK9-KldgG5762IMg5p3g",
+"https://www.youtube.com/channel/UCNJ4EPkZu2AAr9DDAbjsjWA",
+"https://www.youtube.com/channel/UCYRDYpGQq8u07hr85nnYshA",
+"https://www.youtube.com/channel/UC4vlP5H7ZlYQDdA3SsL24fw",
+"https://www.youtube.com/channel/UCk31fwsAdXQ3nA6uTpCG51Q",
+"https://www.youtube.com/channel/UCvD40LzF7NdoBxzJGR5FGWA",
+"https://www.youtube.com/channel/UCwg9kcRAH86tl_KV1S71P7w",
+"https://www.youtube.com/channel/UC67nkEiYnUBAfMcuSSVCimw",
+"https://www.youtube.com/channel/UCtrEIWDfbB7VpQJO2Kiy-xQ",
+"https://www.youtube.com/channel/UCozjTnUFoWaWbIV_xrzBtGg",
+"https://www.youtube.com/channel/UC2OU0JusixMWexlMT4PPteg",
+"https://www.youtube.com/channel/UCf6DUVLaEiz2wzm_kPaRZbQ",
+"https://www.youtube.com/channel/UCjOC3lRJAWKnjEKiFe1cscQ",
+"https://www.youtube.com/channel/UCgB7Ju6sR6UaGVwX-xnZNgA",
+"https://www.youtube.com/channel/UC2s6yGzUHoe_ahiT4JIKu2A",
+"https://www.youtube.com/channel/UCz8FWP1GRzcsto5ELrLvy-Q",
+"https://www.youtube.com/channel/UCqrZTfSTB2uXhkGTzxF-bHA",
+"https://www.youtube.com/channel/UCHrkvfuollkwjgGWAga8LLA",
+"https://www.youtube.com/channel/UCAS8QqEyGGH71xYgFzNSbuw",
+"https://www.youtube.com/channel/UCiWXd0nmBjlKROwzMyPV-Nw",
+"https://www.youtube.com/channel/UCWmilV4nUobkSq0JzoeX6aw",
+"https://www.youtube.com/channel/UCkQDeS5LbR5njbJo6aGhUtQ",
+"https://www.youtube.com/channel/UCBuHkb1AS_yRQ71meFNQ3VQ",
+"https://www.youtube.com/channel/UCaHvWPMrGgcd42waw4WYQ6w",
+"https://www.youtube.com/channel/UCTqPBBnP2T57kmiPQ87986g",
+"https://www.youtube.com/channel/UCcWBxfaO69GPOFHSArNET2Q",
+"https://www.youtube.com/channel/UCtZnYMV8Rn_tBqOkoBCAuhQ",
+"https://www.youtube.com/channel/UCvTe3Z7TZsjGzUERx4Ce6zA",
+"https://www.youtube.com/channel/UCtLgwBOza-dnuaBg6W6YXog",
+"https://www.youtube.com/channel/UCGekZ_Ig4dP3NDcJCdOK6aA",
+"https://www.youtube.com/channel/UCKpgd4u2ANo1HSQVEGX3iVg",
+"https://www.youtube.com/channel/UCNQ4sJJO-d8YJl_FK-bmt_g",
+"https://www.youtube.com/channel/UC1mx_wcSHtfpLk5N_zY0TRg",
+"https://www.youtube.com/channel/UCHQDjDDW8w2RieO-IuqYlyg",
+"https://www.youtube.com/channel/UCXGgrKt94gR6lmN4aN3mYTg",
+"https://www.youtube.com/channel/UCxMjw6DCP7mSAWqnV9Vx1ng",
+"https://www.youtube.com/channel/UC2Ov25mKWtjMICagWbcBvig",
+"https://www.youtube.com/channel/UCW9NeKfgO_uMy5-MqLNtiVw",
+"https://www.youtube.com/channel/UCUGJ-yKqQHl4FSZwUmGpiUg",
+"https://www.youtube.com/channel/UCkQMrI3g9wV2F5CsIi6odmQ",
+"https://www.youtube.com/channel/UC9v3JGut2Z1PxrXEpGzgEAA",
+"https://www.youtube.com/channel/UCkM35W6j3lUl0-uQRxbrzkw",
+"https://www.youtube.com/channel/UCeUJO1H3TEXu2syfAAPjYKQ",
+"https://www.youtube.com/channel/UCx0qWZrjq84_D0qVGeCh5Kw",
+"https://www.youtube.com/channel/UCuWFpdiSBqXFOvB9XWLU63Q",
+"https://www.youtube.com/channel/UCfn4IWFcdfT2POAxbt4v6pw",
+"https://www.youtube.com/channel/UCopwDG5Syp_a_U9bRWYqoeA",
+"https://www.youtube.com/channel/UCBVx3LFr71s8ANsWL6LclWQ",
+"https://www.youtube.com/channel/UC7RL3bksyvu7rH7T6KFFkjw",
+"https://www.youtube.com/channel/UCQ5URCSs1f5Cz9rh-cDGxNQ",
+"https://www.youtube.com/channel/UCd4JzeAkgTsyJDEkWC11PoA",
+"https://www.youtube.com/channel/UCVTifvD7WFz1Z-AnEzUoUUA",
+"https://www.youtube.com/channel/UCcG2HsNjnAbWOT6E1DRxjGA",
+"https://www.youtube.com/channel/UCUMzET2JdWLxZGhvTKCIK-A",
+"https://www.youtube.com/channel/UCWpyqUnOedVd7vO9C7Kl_sg",
+"https://www.youtube.com/channel/UCK5LUK8viFrysSXt7sh2yGA",
+"https://www.youtube.com/channel/UCddc73x05KtHLenrdGlSkyA",
+"https://www.youtube.com/channel/UCfHZuPM18myKEvw4G7Yhk1w",
+"https://www.youtube.com/channel/UCN3mX39lfxvohWxN4kcrXIQ",
+"https://www.youtube.com/channel/UC6scQH5jmzTnrRlfb1QsJfw",
+"https://www.youtube.com/channel/UCDNeEBgigHHGtJJOpHSnadA",
+"https://www.youtube.com/channel/UC4c-wTOqEID-_vH4MhNs06w",
+"https://www.youtube.com/channel/UCMb7dIM1FrJ2MjFv7tuYa-w",
+"https://www.youtube.com/channel/UCinF3VdzcRzWc7cKPPaiOkw",
+"https://www.youtube.com/channel/UCz84tiwYn7WXzTkVS24VEYw",
+"https://www.youtube.com/channel/UCLgGLSFMZQB8c0WGcwE49Gw",
+"https://www.youtube.com/channel/UCCkMW93Am1pLfk2nZFKAmbQ",
+"https://www.youtube.com/channel/UCSi3noC0JkukKm1rl-tt9YA",
+"https://www.youtube.com/channel/UC_7aK9PpYTqt08ERh1MewlQ",
+"https://www.youtube.com/channel/UC2Tc0TsvFxC83zF1w5x1PWQ",
+"https://www.youtube.com/channel/UCJUHiJfgDE5aeqbk4iZBPHA",
+"https://www.youtube.com/channel/UCDk3ScYL7OaeGbOPdDIqIlQ",
+"https://www.youtube.com/channel/UCTEanMUzF8pyGFqfbr65z2A",
+"https://www.youtube.com/channel/UCt4e57VMVckUbzNhZ6V6guw",
+"https://www.youtube.com/channel/UCAIVa1BAAJNsdKfP1bFljKQ",
+"https://www.youtube.com/channel/UC5gKJBCtvcBThDvhjxkci-g",
+"https://www.youtube.com/channel/UCoRY1lWAIKxqTiemuJHuTzQ",
+"https://www.youtube.com/channel/UCguWXCDo0KqTMvGEpcs-52g",
+"https://www.youtube.com/channel/UCQxl7lyRaCMCvcOMIA3J2fg",
+"https://www.youtube.com/channel/UCiOGM5hoSXYTcOpqEtYlV4g",
+"https://www.youtube.com/channel/UC09w0slTCXt5FFRy3mbNIaw",
+"https://www.youtube.com/channel/UCpGv68xxhxb91Ic6ql-pNdQ",
+"https://www.youtube.com/channel/UCLzWMcpNlhHo0c0yOyWksvQ",
+"https://www.youtube.com/channel/UC_XRq7JriAORvDe1lI1RAsA",
+"https://www.youtube.com/channel/UCgxXuXHJ4VwovSTvDiWlzZQ",
+"https://www.youtube.com/channel/UCnEiGCE13SUI7ZvojTAVBKw",
+"https://www.youtube.com/channel/UCllMvuz1DIPIoqNnur7_Pig",
+"https://www.youtube.com/channel/UC5kaTJqvA2I0d7K5Lgfx4sw",
+"https://www.youtube.com/channel/UCao639tdBRxLqIFrLGexxeQ",
+"https://www.youtube.com/channel/UCMDcOT4z7GS1SRGG2g7z43g",
+"https://www.youtube.com/channel/UCJCrncqSm65zk5txuJaUy3w",
+"https://www.youtube.com/channel/UCqRiv7rQuxge63bqJ2hVNUQ",
+"https://www.youtube.com/channel/UCsdc_0ZTXikARFEn2dRDJhg",
+"https://www.youtube.com/channel/UCRb241PllW0OA8uVoj-ySfw",
+"https://www.youtube.com/channel/UCv3hNzy4n-onHRorHGK0_ig",
+"https://www.youtube.com/channel/UCiczXOhGpvoQGhOL16EZiTg",
+"https://www.youtube.com/channel/UC_scf0U4iSELX22nC60WDSg",
+"https://www.youtube.com/channel/UCkJmdDhLzb4Sxur2FHWiChQ",
+"https://www.youtube.com/channel/UCeWwpyA9T2a92NDkYQKvF8g",
+"https://www.youtube.com/channel/UCzcPto5seI08Yo2guoWlpUQ",
+"https://www.youtube.com/channel/UC4YaOt1yT-ZeyB0OmxHgolA",
+"https://www.youtube.com/channel/UCutKH473vNcid5CIKCqAk3g",
+"https://www.youtube.com/channel/UCKxvQVb1NviBG3PfERTOeMA",
+"https://www.youtube.com/channel/UCU3z3Vp8L1D7uZ3w0sEYLGA",
+"https://www.youtube.com/channel/UCJk5KVaJVBEEl_jP5gKjoDw",
+"https://www.youtube.com/channel/UC1hTVMHtymDyki6jrfH8baQ",
+"https://www.youtube.com/channel/UCtpB66XKjAtFZfZyzmC-_Cg",
+"https://www.youtube.com/channel/UCbS1oNSvFZf87Qwj2CMQjUw",
+"https://www.youtube.com/channel/UC873OURVczg_utAk8dXx_Uw",
+"https://www.youtube.com/channel/UC-vbQ6G2FaW0aAP1RcoMCmA",
+"https://www.youtube.com/channel/UCTHgZseiNxrD8ZTE61kaz9g",
+"https://www.youtube.com/channel/UCOJDuGX9SqzPkureXZfS60w",
+"https://www.youtube.com/channel/UCLRCP-juSDl3icIfyw0XsWQ",
+"https://www.youtube.com/channel/UCUBhobCkTLhgfUNRAgHSYmw",
+"https://www.youtube.com/channel/UCIF_gt4BfsWyM_2GOcKXyEQ",
+"https://www.youtube.com/channel/UCgdHSFcXvkN6O3NXvif0-pA",
+"https://www.youtube.com/channel/UC50A6Qra-LVdovHw4hH449w",
+"https://www.youtube.com/channel/UCSs4A6HYKmHA2MG_0z-F0xw",
+"https://www.youtube.com/channel/UCWYa0v8bpGyYr0ycqGXifVQ",
+"https://www.youtube.com/channel/UC833fxO053brHVUW2BK-ryA",
+"https://www.youtube.com/channel/UCPr4Q5jEgaLev7a3AOtItaQ",
+"https://www.youtube.com/channel/UCyW62qO710YjU-BMDXX4r-Q",
+"https://www.youtube.com/channel/UCpOlOeQjj7EsVnDh3zuCgsA",
+"https://www.youtube.com/channel/UCy_r_YSQg-CrKPSYCWdgMRg",
+"https://www.youtube.com/channel/UC57oK_yu62CvUHaD7NFmSNA",
+"https://www.youtube.com/channel/UCS0N5baNlQWJCUrhCEo8WlA",
+"https://www.youtube.com/channel/UCi4UZoZM0Iw9_tTeRjZd_bA",
+"https://www.youtube.com/channel/UCx74OaAnnBDV6ml8Mc01qKQ",
+"https://www.youtube.com/channel/UCXmfS5whB0JOyDCqtDgcytA",
+"https://www.youtube.com/channel/UCPKkgMdAgGUeLFNVOxtfeQQ",
+"https://www.youtube.com/channel/UCGGrblndNzi86WY5lJkQJiA",
+"https://www.youtube.com/channel/UCOmxt6hJpmwTHnDj0vkR2Ew",
+"https://www.youtube.com/channel/UC8nk3dP5q5z_z60n0DRWgeQ",
+"https://www.youtube.com/channel/UCtR5okwgTMghi_uyWvbloEg",
+"https://www.youtube.com/channel/UC1tp9qN7mqIJ7CLVNVvsKzg",
+"https://www.youtube.com/channel/UChIs72whgZI9w6d6FhwGGHA",
+"https://www.youtube.com/channel/UCE7UCIEDIbinkMnNOtSyqzg",
+"https://www.youtube.com/channel/UCZoE5OhPeozu88vfPDcy3NQ",
+"https://www.youtube.com/channel/UC33DZIOL5BhWju6kq1-bqmA",
+"https://www.youtube.com/channel/UCRB_w0cCi7FdLuf7s869CVQ",
+"https://www.youtube.com/channel/UCyW-leqPXUunrXXxFjpZ7VA",
+"https://www.youtube.com/channel/UCVh6Z8gLCoZsTMPhf-v48-w",
+"https://www.youtube.com/channel/UCWEXBk3zCFDZzXIlqYyohAA",
+"https://www.youtube.com/channel/UCcDpEbrETwvQfJxnpqY6idw",
+"https://www.youtube.com/channel/UC33JlHZwWy0GVL3mZhzizNg",
+"https://www.youtube.com/channel/UCg3qsVzHeUt5_cPpcRtoaJQ",
+"https://www.youtube.com/channel/UCaGafVgmIE7nL_P4vpFu5iA",
+"https://www.youtube.com/channel/UCYtBrkqkULTUdHGPEkxxbVw",
+"https://www.youtube.com/channel/UCocgpvsIUN5YwSdZCF4BFFw",
+"https://www.youtube.com/channel/UCjU51lhtpje-r0eF4b0jpbw",
+"https://www.youtube.com/channel/UCCIks3d17EIF_DQoWlxpcqA",
+"https://www.youtube.com/channel/UC6h3VbJP93d9mMFZRoVvIXA",
+"https://www.youtube.com/channel/UC2QkZhNFNOKLyELXJfbpXxg",
+"https://www.youtube.com/channel/UCSeCz9wAMaU8KbckzerrH3A",
+"https://www.youtube.com/channel/UC6mSZWbzU_ZX2Krx7FiuPEA",
+"https://www.youtube.com/channel/UCe70_JXJ080OegKY_H148DA",
+"https://www.youtube.com/channel/UCkUNA_ociQ8aFXAYWZ4d7ug",
+"https://www.youtube.com/channel/UCPzy3l0-orGovZoN0fx5C_A",
+"https://www.youtube.com/channel/UC6mIxFTvXkWQVEHPsEdflzQ",
+"https://www.youtube.com/channel/UC4DbtlSPQ9IEtwccTX6XC3w",
+"https://www.youtube.com/channel/UCYXCd8v9BsTUUoFVRJlSd-Q",
+"https://www.youtube.com/channel/UCOFkZVaDCfPgzkKalpE4Szg",
+"https://www.youtube.com/channel/UCe-aiAhNCXlQKNBpoE-wciw",
+"https://www.youtube.com/channel/UCVhUJtQSeJGyAuuzOdkCDkQ",
+"https://www.youtube.com/channel/UC2vv4lRtArsLAXY1zGyaoyg",
+"https://www.youtube.com/channel/UCQQk988_F2-Gf7anWMprD7w",
+"https://www.youtube.com/channel/UCCkfJCOZggjhkoG0M6PbrPQ",
+"https://www.youtube.com/channel/UCQtO-jMdrVT-_B9JrMGCm5A",
+"https://www.youtube.com/channel/UCek8vSxDxt5zJCd3kiPlCAQ",
+"https://www.youtube.com/channel/UC-dApCrVZgumBgypKQyyq4w",
+"https://www.youtube.com/channel/UCc6q1GulqzafxPkEYOVdBdw",
+"https://www.youtube.com/channel/UCmldttGmpgcq_-zJTS5YnlA",
+"https://www.youtube.com/channel/UCOCs-78lWcrComhGsX1i2nA",
+"https://www.youtube.com/channel/UCs37nY4OalSLbHGMeJHdlTQ",
+"https://www.youtube.com/channel/UCI7DZeb2u4DwzLjTWsJE-bg",
+"https://www.youtube.com/channel/UCi26rmAPVDbeHH2TTtz3-hg",
+"https://www.youtube.com/channel/UCaCpZXesfk6U64MiCbwdxrQ",
+"https://www.youtube.com/channel/UCoKt7uddy_KYlq7i886__RA",
+"https://www.youtube.com/channel/UCCFueYy0x6UN_JyajXw5OoQ",
+"https://www.youtube.com/channel/UCshGwPlNiTPdrRPVIBZ1Lig",
+"https://www.youtube.com/channel/UCPJDbRN8GoMfvi864hvvVPA",
+"https://www.youtube.com/channel/UCOYrnEORao5xeqQ8_TuzKWg",
+"https://www.youtube.com/channel/UCfU3VgaBvzINlPqp2rKF3Ug",
+"https://www.youtube.com/channel/UCPYV_e32ECTTwnpARiM5P0A",
+"https://www.youtube.com/channel/UC53g9AcHzl5bZQj4julJdsA",
+"https://www.youtube.com/channel/UCoihOWMGM1iY6FgLnSOTocQ",
+"https://www.youtube.com/channel/UCsOBCws0hoieKXLvJOWgmeA",
+"https://www.youtube.com/channel/UC3Yrx0W7ADwrM-gdUPc4hkg",
+"https://www.youtube.com/channel/UCDKhjeB3wTEfh7w1TVqmf7g",
+"https://www.youtube.com/channel/UC1npk8h5-tuKm9QmNvQQuoA",
+"https://www.youtube.com/channel/UC0__cIEaoVVjaCdJ1SgAIUg",
+"https://www.youtube.com/channel/UCRU5cBAg4KoW53M4x4udj5A",
+"https://www.youtube.com/channel/UCqlOGqKovzQRh8ri02c6Lsw",
+"https://www.youtube.com/channel/UCjyNthhbVquwW3DvNPBwJEQ",
+"https://www.youtube.com/channel/UC-y_GqPV25bzVf8VaIM15vQ",
+"https://www.youtube.com/channel/UCBSly5HCL9VZ3_w876na6EQ",
+"https://www.youtube.com/channel/UCnLXPknxLfKbsCbdEENx_jw",
+"https://www.youtube.com/channel/UCGJ6SggctE0Rgxhkp9ZTn-w",
+"https://www.youtube.com/channel/UCHKWcWQWfNsc62wXwjdlWJQ",
+"https://www.youtube.com/channel/UCc-SvFq1_gov1ZIFls-hMuQ",
+"https://www.youtube.com/channel/UCRrnWZ2ZygKjjlswxrhfalw",
+"https://www.youtube.com/channel/UC7aEzIJZFUI4GBJGt-Ew8iQ",
+"https://www.youtube.com/channel/UCJll0WtwkbSBJjmJvNV4Q-A",
+"https://www.youtube.com/channel/UC5SUCorG-t3sShNtG3Cge-w",
+"https://www.youtube.com/channel/UCqfQoR3yT_AliwZ734jDvpg",
+"https://www.youtube.com/channel/UCo3Mn4ugtUhptoGVTP1BH2g",
+"https://www.youtube.com/channel/UCV04zJdt_4mWLJhs0jKcuOw",
+"https://www.youtube.com/channel/UCadIfIEfzad-y-TSYoIQNSQ",
+"https://www.youtube.com/channel/UCQ8y2DGkv22_tmJ9jrT3anQ",
+"https://www.youtube.com/channel/UCKzCZpNMWPhH01Zj-GNIcyA",
+"https://www.youtube.com/channel/UCbMQAKsf8I6o-z_NBhLVzCQ",
+"https://www.youtube.com/channel/UCds6GCNf9IGFjuwS6hxHBnA",
+"https://www.youtube.com/channel/UCLvaYa43temIynKAJLCjAEQ",
+"https://www.youtube.com/channel/UCj9PIMskIU9k8iW3Y9L7Ccg",
+"https://www.youtube.com/channel/UCdwlghsOUBBAVf3MBZcPQkQ",
+"https://www.youtube.com/channel/UCBVTRcO0vKoGWFAfxvjRhQA",
+"https://www.youtube.com/channel/UCzM_Y1jA9sL5S-d1X0VG6qw",
+"https://www.youtube.com/channel/UCaG1bI2FsddpQcqfmGQxX4A",
+"https://www.youtube.com/channel/UC2FqgQcIzgGzfsHJ1i4C04g",
+"https://www.youtube.com/channel/UCGwDX2P8XQHB14nex9oe4ng",
+"https://www.youtube.com/channel/UCmaGDEZMUffLCqq2zWpFmZw",
+"https://www.youtube.com/channel/UCqwr2DEA0aWKMj6IIaiDJ_Q",
+"https://www.youtube.com/channel/UCaUupJIK5bonLrjtHH7MCgA",
+"https://www.youtube.com/channel/UCOca7i7-pqwRPvSvt277a3g",
+"https://www.youtube.com/channel/UCfVIwN4c58Hibj7ELPJKAVw",
+"https://www.youtube.com/channel/UCL-Xx4D2FntAbBvRyO_TfeA",
+"https://www.youtube.com/channel/UCd-Xdmv3gBZk3L7VNmq_S6Q",
+"https://www.youtube.com/channel/UCLOCPHVEU8HyKSTd-iCyKIQ",
+"https://www.youtube.com/channel/UCQg-YLbXlmkjKPPM8R11qHg",
+"https://www.youtube.com/channel/UC9FuU-PZ_7Ui6pPGZr5nuAg",
+"https://www.youtube.com/channel/UCAmcOwyY3YJniP5F37Vr6yw",
+"https://www.youtube.com/channel/UCRo7jLI_wonR4cXdnO2XjkA",
+"https://www.youtube.com/channel/UC_I5wHVFR8ePU-FKFGEZ-IQ",
+"https://www.youtube.com/channel/UC0xakFaTTrADIJLxxWdj3cA",
+"https://www.youtube.com/channel/UCLX_5YhWFVeiWX9Epxooikw",
+"https://www.youtube.com/channel/UCooO8wm2sqCRfYLqiYissDA",
+"https://www.youtube.com/channel/UCtN9KNpgXryGM2NuOjAbqog",
+"https://www.youtube.com/channel/UCTAJ_OqH6Ffu6q9PQzvCfXw",
+"https://www.youtube.com/channel/UCOkXrLref_VR31vVsUh4ZUA",
+"https://www.youtube.com/channel/UC83pFF045kBscJE8I1IcqZw",
+"https://www.youtube.com/channel/UCHyMx7455kVhIV0ZqnjDcwA",
+"https://www.youtube.com/channel/UCPbDoHd5xKQC47Meb6VQugg",
+"https://www.youtube.com/channel/UC2mlYIN5ZlxxfBr3AzX5Eag",
+"https://www.youtube.com/channel/UCmZXHylTpsU4y1K83e3spVQ",
+"https://www.youtube.com/channel/UCtxNHLW6H3ryDZD4DD65eug",
+"https://www.youtube.com/channel/UC7yeB18yD0C7qqeMOBi_Pvw",
+"https://www.youtube.com/channel/UCTtTaIGEHh58ezCjq8o1ujg",
+"https://www.youtube.com/channel/UCJyRmYWUMnr4jZY3EqTW3kA",
+"https://www.youtube.com/channel/UCr1oPg6GVTsn7ghEFOxmobA",
+"https://www.youtube.com/channel/UC9GmKGRhnGf-t3JwO3APa3g",
+"https://www.youtube.com/channel/UCw17cjykZHas9PjBOXZzkUg",
+"https://www.youtube.com/channel/UCtasqMAmSDkCsfl9Ds1nXUg",
+"https://www.youtube.com/channel/UCKi_r87hLu1jKCRXZX8RzKg",
+"https://www.youtube.com/channel/UCG3unzifge8CUXxF7v286kg",
+"https://www.youtube.com/channel/UCq91x3bi--xht3eHWv-JXnw",
+"https://www.youtube.com/channel/UC1XqZ5J8i4mdIq43k3PK0Pg",
+"https://www.youtube.com/channel/UCkH5PqCarI1FgdmqubLe0NA",
+"https://www.youtube.com/channel/UCQxPYEp1fekhlwVAzvepcCQ",
+"https://www.youtube.com/channel/UCfLLxd91TRynh6rtzUrZHFg",
+"https://www.youtube.com/channel/UCzXlxTumM4a8mn9GQr0Zz-A",
+"https://www.youtube.com/channel/UCFpo78cqzG7QxbJv0kAv2Xw",
+"https://www.youtube.com/channel/UCuOh4oTvqeTFhvH6FHRAgUg",
+"https://www.youtube.com/channel/UClGFxF3mhq9D19FWKQu-lnQ",
+"https://www.youtube.com/channel/UCXBXGGMxSkVzzs48lWQR1vQ",
+"https://www.youtube.com/channel/UCM7Gx96qZqdYJBhv5Mjg9vw",
+"https://www.youtube.com/channel/UCrdcP8rRldBnM44McXnE7Kw",
+"https://www.youtube.com/channel/UCCVPkdHS6XpgLZzB4OcnLUA",
+"https://www.youtube.com/channel/UClbIrrj051ma2QrM4z3gH1A",
+"https://www.youtube.com/channel/UCOdqXuRnFSW-zu6GVFPrnuQ",
+"https://www.youtube.com/channel/UCe1wW3woUrYDLBpE4Ba_2ZA",
+"https://www.youtube.com/channel/UC1LQw-wyyG3KmXv0n-Uk5iQ",
+"https://www.youtube.com/channel/UCXlZ4waZIfhocF9mc8zddIw",
+"https://www.youtube.com/channel/UCkaxlWyCnbu_Bo9zNYXbQrg",
+"https://www.youtube.com/channel/UCnW26Rxq6lZL1oFiJ0128ew",
+"https://www.youtube.com/channel/UCUOOs0DueMGXXLBpYywXaeA",
+"https://www.youtube.com/channel/UChp83P8KsxXD_E7cQDBb1Tw",
+"https://www.youtube.com/channel/UCDkhRX4uOGgRtx0trWksbLw",
+"https://www.youtube.com/channel/UCJucHn-T5Nyiy2mW3PmRYYQ",
+"https://www.youtube.com/channel/UCXRKwKsbT5ZwWuU6qokddlQ",
+"https://www.youtube.com/channel/UCSgRHugZcwJcpWK_vS0-8rw",
+"https://www.youtube.com/channel/UCV6Iyt6DuELQ_cpzrwsnVNg",
+"https://www.youtube.com/channel/UCnwQGtgq-kOizI9kwgI93kA",
+"https://www.youtube.com/channel/UCMETDPIW3xGJWUgIUdAhR6Q",
+"https://www.youtube.com/channel/UCvdHX8W1P-h3Cdjd-z_v2zA",
+"https://www.youtube.com/channel/UCRk4TGKskCG820FQezSd0Tg",
+"https://www.youtube.com/channel/UCph1kew-DUQ8w5sCLn5Ioew",
+"https://www.youtube.com/channel/UCe3Zhaxt5C1TRuL3K-jjkCA",
+"https://www.youtube.com/channel/UCZfPAQ2ORRbQi2zloH3DMCQ",
+"https://www.youtube.com/channel/UC9YbazZawza9BDMjmXmiKGA",
+"https://www.youtube.com/channel/UCrdeQuMqP0xf-LffHVbE4VA",
+"https://www.youtube.com/channel/UCezqaRfM_vGLwLnQop0njqA",
+"https://www.youtube.com/channel/UCv0yCUN9J4zwcEALuC2uIMg",
+"https://www.youtube.com/channel/UCwJbOv3fOUnlYiXKkwW8thQ",
+"https://www.youtube.com/channel/UCz3UJUhYDm7MxlBbIGYWaVA",
+"https://www.youtube.com/channel/UC4u4-gMZf0q2RxG9iHgCQjQ",
+"https://www.youtube.com/channel/UCsd_uhqeP61u4V3E2Zca7Cg",
+"https://www.youtube.com/channel/UCwFaT0lNmwKfmzYlKaRT_dw",
+"https://www.youtube.com/channel/UCQuPnPW4CATPtrVNCWUoSbQ",
+"https://www.youtube.com/channel/UCwZF7cEZ-W7_fhM-SM7XT5Q",
+"https://www.youtube.com/channel/UCMtpKUudSRKY9fOjou-A2_w",
+"https://www.youtube.com/channel/UC8HnEcXVJQ3FE9d8h6J9jAA",
+"https://www.youtube.com/channel/UC1mjgLsW25Mu5RTcB4A0SLA",
+"https://www.youtube.com/channel/UCpy6DT9aUCXtTZKO7W6nMHQ",
+"https://www.youtube.com/channel/UCzkkPMpK1yVdUlMUKvZATuw",
+"https://www.youtube.com/channel/UCX8nYh_a5zloDOJSmQ_EZYQ",
+"https://www.youtube.com/channel/UC7p1j6_IdXOSD2seX89pPrw",
+"https://www.youtube.com/channel/UCpiiGTUi4xEJkuVa1zzTymQ",
+"https://www.youtube.com/channel/UCt8B5jx2cvicrga8eMVrqMQ",
+"https://www.youtube.com/channel/UCTzXVDI4o9BSJNfUvB_c6Ug",
+"https://www.youtube.com/channel/UCt_0vcxelGFN9046Rh76EJA",
+"https://www.youtube.com/channel/UCnK98_0bz2w9R3s7VUPS3eQ",
+"https://www.youtube.com/channel/UCULWlZjHhV5IqWUkgddw0cg",
+"https://www.youtube.com/channel/UCk9ugRdds_1ukGbOYzP8sJw",
+"https://www.youtube.com/channel/UC95aubZVErD5ejukia617Ag",
+"https://www.youtube.com/channel/UCzTXO335eSw6wUr6DLe0tjg",
+"https://www.youtube.com/channel/UCOFSwI8vgDnPdaKZFUHHVeQ",
+"https://www.youtube.com/channel/UCkJRqMvGQHIeEydNknK5tyA",
+"https://www.youtube.com/channel/UClRDFHclujY2rj4txggJ5MQ",
+"https://www.youtube.com/channel/UC7g-HrC-uEZWADDI6cF7_DA",
+"https://www.youtube.com/channel/UCXSNM2VrUjnrmn1N37-uRiw",
+"https://www.youtube.com/channel/UCEpGRejGSTgiZXsNSU3b5Sw",
+"https://www.youtube.com/channel/UCdX3z-2-Cx7xKUk7bYQk0OQ",
+"https://www.youtube.com/channel/UCjRWkK-lA0q-BPc-HbXgHQQ",
+"https://www.youtube.com/channel/UCojM1-ei2fHYx95vA68EOpw",
+"https://www.youtube.com/channel/UCDOxu2pVj-YpocpRvtZpxdA",
+"https://www.youtube.com/channel/UC2KNKVFhIYFvC7sT1m2WfEA",
+"https://www.youtube.com/channel/UCbOJ6pTINeEeDqyeSXCNPYA",
+"https://www.youtube.com/channel/UCP4I_iG5BJ7QI2KWdb-FhOQ",
+"https://www.youtube.com/channel/UCn7Fkmz87EMnXOhUL4zHoxw",
+"https://www.youtube.com/channel/UCbGQSO-OjwfpalmPXoHB-bQ",
+"https://www.youtube.com/channel/UCPrnRZyldfdWoFB4t6yrY2g",
+"https://www.youtube.com/channel/UCgletb8QXH3uQag0bGJ05uw",
+"https://www.youtube.com/channel/UCh5voslazDhUadFE05c5eLQ",
+"https://www.youtube.com/channel/UCV4fpNecfxHGLmUiuQ_mMOQ",
+"https://www.youtube.com/channel/UCMli469xMzAOwJAxSUeVuiw",
+"https://www.youtube.com/channel/UC5-VhbwrNHuTSHX9nnRxDBw",
+"https://www.youtube.com/channel/UCLpSXIad5-rw8wOHHseRs1g",
+"https://www.youtube.com/channel/UCP4gR6sftOCABpML7ePM-vA",
+"https://www.youtube.com/channel/UCEU1K0Dd5y2xcrUQGJSYo-w",
+"https://www.youtube.com/channel/UCPESk4k9yDKz6MbNpzKG5zg",
+"https://www.youtube.com/channel/UClQ4N6Me0mpw16iUeTtHmEw",
+"https://www.youtube.com/channel/UCuE63rgPbYRbYaZPvshMNSw",
+"https://www.youtube.com/channel/UCvUxvfkAx3_WwlCQlbH4c7A",
+"https://www.youtube.com/channel/UCMILNIxB23_CQWcw4nrrMaA",
+"https://www.youtube.com/channel/UCnyI9OPEntJ901c-zecNCAw",
+"https://www.youtube.com/channel/UCTXD_PyxGcu3DvkixDPJp5g",
+"https://www.youtube.com/channel/UCQZ3pdgmHoRNB0hQcIdxSag",
+"https://www.youtube.com/channel/UCY28ojfPoiRrR6sDtroGziA",
+"https://www.youtube.com/channel/UCitRdLr4KpVjKPjbN5q_UAw",
+"https://www.youtube.com/channel/UC7EvQabTG9IwAPmkR0j0E2Q",
+"https://www.youtube.com/channel/UCVwtzCXqAt6DCJv6NRbeHjw",
+"https://www.youtube.com/channel/UC24rk8RcQZPWLpibPCiSJuQ",
+"https://www.youtube.com/channel/UCukeI9-tLN4wMq_NUM-pAHw",
+"https://www.youtube.com/channel/UC5XzoCi3GEyUbfAUeJAARYg",
+"https://www.youtube.com/channel/UCJ8F9dSPfCirllG_4wsPIIw",
+"https://www.youtube.com/channel/UCv6IrqVuKIAzENSYZIunGiA",
+"https://www.youtube.com/channel/UCz24ySK8hDNfFLgeh9-e1rw",
+"https://www.youtube.com/channel/UCk9FivcWa64dyfd8cqAmjdg",
+"https://www.youtube.com/channel/UColBjltsPSCfiXqnZHFTIdg",
+"https://www.youtube.com/channel/UCeyZVTtC1gzHv9whvNv5xuQ",
+"https://www.youtube.com/channel/UCRcF_zo2wY7iNMqrF8dsqfw",
+"https://www.youtube.com/channel/UCwujqWTz8QigwJFamVlaQkQ",
+"https://www.youtube.com/channel/UCVVd2IAxq6zyCBFWMJAcT5w",
+"https://www.youtube.com/channel/UCjQHLbB1Z0_FIAbdcMc2f_g",
+"https://www.youtube.com/channel/UCzB2yC2JWkiBuq5H-CQEHGQ",
+"https://www.youtube.com/channel/UCSNeOrwIw5UlSnUTtBEYFJw",
+"https://www.youtube.com/channel/UCbtYuzrkHm7hTF6YrizLakg",
+"https://www.youtube.com/channel/UCsXguFFXn3HwBYsVQDAyPww",
+"https://www.youtube.com/channel/UCDb0DtCgM5SbrUT9_2kax7w",
+"https://www.youtube.com/channel/UCfOILM6PtTZZiJ5qrqlZVpQ",
+"https://www.youtube.com/channel/UCOLbSgHdulVSmtVvkcTJpoA",
+"https://www.youtube.com/channel/UCIiw9speAo8CUDzmJdHvexw",
+"https://www.youtube.com/channel/UC9EvvV7mzloJXzRVwnrdjtw",
+"https://www.youtube.com/channel/UCnfBBfRdDDQV-vdAGa1pUIg",
+"https://www.youtube.com/channel/UCiYl_d2-MHDF_Ydej3G8b0w",
+"https://www.youtube.com/channel/UCo6ZY-fekQOVx319D1ZvDWw",
+"https://www.youtube.com/channel/UCeyKeTFErwgLU3W1np8-_4w",
+"https://www.youtube.com/channel/UCfGaeGC1tDkXZwXNl8gZBAw",
+"https://www.youtube.com/channel/UCBd0EBBPWTJbnJfYuY0CKdg",
+"https://www.youtube.com/channel/UCxgodLWQgeabYI0C3s4RPKQ",
+"https://www.youtube.com/channel/UCL0Ge2xsql8i3WyB2bukL9Q",
+"https://www.youtube.com/channel/UCqs3JKQE5rV0SJxOsIw12Xw",
+"https://www.youtube.com/channel/UCxns-9PhqrFGKnmnw64SR0w",
+"https://www.youtube.com/channel/UCd7jwanRuJ8i4Kty9ysYqIg",
+"https://www.youtube.com/channel/UCLZHcdF8Lni-951SScHqorg",
+"https://www.youtube.com/channel/UCzfrEoc0SGnm82mNoID6Zzw",
+"https://www.youtube.com/channel/UC3zjZvTvvmAG67HlvvtIRNA",
+"https://www.youtube.com/channel/UCMMjsWgBWTtEl2ssLPl2W1g",
+"https://www.youtube.com/channel/UCBV-6p_MLwp7WbIUR4NgUrg",
+"https://www.youtube.com/channel/UCS0g3xP2CVlxJuxeiHv41lA",
+"https://www.youtube.com/channel/UCwKRcnIj8fhop1QjRtWcgNw",
+"https://www.youtube.com/channel/UCxlkME7vFfnzpjKcbW5fW2A",
+"https://www.youtube.com/channel/UCFi6nIGVktNxLCj728Mjv5A",
+"https://www.youtube.com/channel/UCRwp-SpVh8CYtH_PaMLM7Zg",
+"https://www.youtube.com/channel/UCkxcdhZxlR975Il5enZfepQ",
+"https://www.youtube.com/channel/UCFmb0IZ0BXpMddnewX5e33Q",
+"https://www.youtube.com/channel/UCR1xEB6qxrIXbR6AazGwDHg",
+"https://www.youtube.com/channel/UCFX09LmDNADTOaDQK06iR9g",
+"https://www.youtube.com/channel/UCo6rjTacxK58TwpreBnsJSg",
+"https://www.youtube.com/channel/UCBa8vzkexirv8rSPnzSCXxw",
+"https://www.youtube.com/channel/UCF6uLp4rf3aWySvtvmaPbZQ",
+"https://www.youtube.com/channel/UCdmptRZ-ky4HT39e7tt1x_w",
+"https://www.youtube.com/channel/UCnDVYJFcqI6peYHHe6rFbTw",
+"https://www.youtube.com/channel/UCc1-JKdaePiebic6JAZ-GqQ",
+"https://www.youtube.com/channel/UC3eDU5edzhLqPoc3j-NtOIA",
+"https://www.youtube.com/channel/UCLi3tUo5jDpgQ39V7fks6Hg",
+"https://www.youtube.com/channel/UCaqHUyRlmg50o2NBce8QyMw",
+"https://www.youtube.com/channel/UCeOn2jOLyoa31WcvmRqnLzA",
+"https://www.youtube.com/channel/UCTCvMdeY1oFqtkLlkR-4Iww",
+"https://www.youtube.com/channel/UCnGXKMeL8rKbJGdxrFHH7hQ",
+"https://www.youtube.com/channel/UCA5PkmM5B9D3e1me2TmJdkQ",
+"https://www.youtube.com/channel/UCaqEDHvKTP83N3Te4L6eQAQ",
+"https://www.youtube.com/channel/UC2fu4699j0FXIOXgtuP_Kfw",
+"https://www.youtube.com/channel/UCX5w_cCQN3jaoFJUiQHZufA",
+"https://www.youtube.com/channel/UCFeejDcyZ_h3-_6zklfEalw",
+"https://www.youtube.com/channel/UCa2odN6xdvCHuYRqubpmGHA",
+"https://www.youtube.com/channel/UCOQ2Q5dAAfLbXx4GpaUnGlA",
+"https://www.youtube.com/channel/UCRbb4cian_YM-iu_NxJ5rTA",
+"https://www.youtube.com/channel/UC9X6rpnSphB8kFQbB1W3vhQ",
+"https://www.youtube.com/channel/UCqcTBo54lw-2rFltfp7WokA",
+"https://www.youtube.com/channel/UChwmfvsdH-uU3-LK1GC3t-A",
+"https://www.youtube.com/channel/UC64kTGTwb9ahqiLoZ4fbTJg",
+"https://www.youtube.com/channel/UCBa8IAm87a6vQc4HcqSnaVw",
+"https://www.youtube.com/channel/UCTlqU2vVhsz8B5CDMb61zUA",
+"https://www.youtube.com/channel/UCGs17PjvzJnztLQMo-dS5Vw",
+"https://www.youtube.com/channel/UCFX_T6FTdAs8i3XXkboPFIw",
+"https://www.youtube.com/channel/UCwW7nd4HbLukqLlN1iYUnEg",
+"https://www.youtube.com/channel/UCRZXdm_Q3weA_N0Jq2IVudw",
+"https://www.youtube.com/channel/UCRAooCzgpzDyPNviIEN6bIQ",
+"https://www.youtube.com/channel/UCN5UYhvmC5paMMwOZnN4YJA",
+"https://www.youtube.com/channel/UCP7RxeAQucIJEJXUniv52oA",
+"https://www.youtube.com/channel/UCapnYEsoO4oUVK8UODdnP3g",
+"https://www.youtube.com/channel/UC0ZsJiytfP73-M6NiI12C2Q",
+"https://www.youtube.com/channel/UCVRxrNCWyUDP1POkI00hdMQ",
+"https://www.youtube.com/channel/UCzPIDkmXCsyL3XcCLT2luQQ",
+"https://www.youtube.com/channel/UCpQuj-LP2vHk3j9wRWfm6tA",
+"https://www.youtube.com/channel/UCk7vbEPoFy8YYjneOb19iCQ",
+"https://www.youtube.com/channel/UCtBBV81J0-96k8ErZuCmvXw",
+"https://www.youtube.com/channel/UCx2AW6HW9RXMrL-FckBkmXQ",
+"https://www.youtube.com/channel/UCmT6AhkRe3MvJ9k4RQPauwQ",
+"https://www.youtube.com/channel/UCsKkTwaFEgfYMQnBG0VGNZg",
+"https://www.youtube.com/channel/UCWoqlqC2E_Ry2g7OwfHlEDw",
+"https://www.youtube.com/channel/UCWrkvnfYBLjh-6XXUM7bQog",
+"https://www.youtube.com/channel/UC5bm3WRVVWdtBaO0hsrpfjg",
+"https://www.youtube.com/channel/UCjpOOKIK95umtMHKecNsawQ",
+"https://www.youtube.com/channel/UCoEE0pHYIqQLgSD2NkdIkzA",
+"https://www.youtube.com/channel/UCBOEKmzEkHEibLEEwleFryg",
+"https://www.youtube.com/channel/UCQL76fzCRhDGuz5983a5A-w",
+"https://www.youtube.com/channel/UCp0HrXLq8LtJUKFVO4RWM6Q",
+"https://www.youtube.com/channel/UCPIbQ0omTaTtY-3kPMgSMug",
+"https://www.youtube.com/channel/UCzzF0ZQLRKizDv-qCdLXF9g",
+"https://www.youtube.com/channel/UCfcg-41ovXLXN27HoTRSA2w",
+"https://www.youtube.com/channel/UCj43BtRCNogQMK_ARcEYD0Q",
+"https://www.youtube.com/channel/UCVVACtyhjOVpPlwx-0vEvTQ",
+"https://www.youtube.com/channel/UCSg8-kR9KRqXg_HPMKouFkw",
+"https://www.youtube.com/channel/UCNkJ7tlRlRrU0yGaOxSWviA",
+"https://www.youtube.com/channel/UCRWzgPNQK87bHH4atysgk1w",
+"https://www.youtube.com/channel/UCBABdxHl3JTTXy9KoHSrfyg",
+"https://www.youtube.com/channel/UCFqSG3Pv7q_NJkHaPyoW1rA",
+"https://www.youtube.com/channel/UCr7V5A6y_wRysvIY8YiZ5nQ",
+"https://www.youtube.com/channel/UC1Ppwt7OUOBIGFr67nagplA",
+"https://www.youtube.com/channel/UCh0hkZr84C6_nUexqMTtKKQ",
+"https://www.youtube.com/channel/UCu7LV45Cw57seI_-WBhECQw",
+"https://www.youtube.com/channel/UCrrz6tmG_35w9gjsZMzyH1g",
+"https://www.youtube.com/channel/UCb05U6Ilf3LUeq6tj8Zu7ag",
+"https://www.youtube.com/channel/UCc-MD6zUE_dRmszcBwQIn7A",
+"https://www.youtube.com/channel/UCGASt5Cu03qJdin8gE-RzPw",
+"https://www.youtube.com/channel/UCYg0RXijF8IL9sAE5RhrLYQ",
+"https://www.youtube.com/channel/UCGev6lR7KzFPjuCnz88nJbA",
+"https://www.youtube.com/channel/UCiPzD_fY8AnI36V2SIHMY4g",
+"https://www.youtube.com/channel/UCsq0UFV_L1pPY1zqjaqlMdQ",
+"https://www.youtube.com/channel/UCQddfeSYyh2cXxiwuOZFv0w",
+"https://www.youtube.com/channel/UCjIa9fkNJoLd9YfJNdisnng",
+"https://www.youtube.com/channel/UC_X7CLixnJPTTKjiCwwci0w",
+"https://www.youtube.com/channel/UCIC0MXoLqObJJNNROXsGyVg",
+"https://www.youtube.com/channel/UCQ2BIoS9VlX-3m1s8HvwpvQ",
+"https://www.youtube.com/channel/UCVKYXL5LeSaML3Tr5v45G3A",
+"https://www.youtube.com/channel/UCEJhy7ytFhasuklAPk9ZoAg",
+"https://www.youtube.com/channel/UCLX5d3DhSTrQPYWAnQqdp3w",
+"https://www.youtube.com/channel/UC3g120mbRGe9CnA38XSNdXw",
+"https://www.youtube.com/channel/UCwXeldhnbVFNj-2EQGNhBrg",
+"https://www.youtube.com/channel/UCC2cNxttWwogZzq_F0BSraQ",
+"https://www.youtube.com/channel/UCyPsItNBCphXbAJlOZO1mmw",
+"https://www.youtube.com/channel/UCVFH7Ij4_rKhbQuXnCyhbZw",
+"https://www.youtube.com/channel/UCEkZq_3376DzYhzHCehUftA",
+"https://www.youtube.com/channel/UCGIQbT80iUbZZhdmlDZzPig",
+"https://www.youtube.com/channel/UCtBnQFYyWFEiL_cMknRFXrA",
+"https://www.youtube.com/channel/UCHOvytq4jaJrYMDcyqTUOEg",
+"https://www.youtube.com/channel/UCAOgW8rojMe1-bA8rAAFrzw",
+"https://www.youtube.com/channel/UCvbkmam729gQk3K-utshGIA",
+"https://www.youtube.com/channel/UC8VbWWJEmw9qxPYPY8aCynw",
+"https://www.youtube.com/channel/UCGeWYlI5UY1O6w52foOnIfQ",
+"https://www.youtube.com/channel/UCSL5RkAqTmAF6kNVIi8UrUA",
+"https://www.youtube.com/channel/UC93pvscxc-UXI_pzEQxc1gw",
+"https://www.youtube.com/channel/UCgIYoWSyDRRfMnZZn1eIpSA",
+"https://www.youtube.com/channel/UCVjpJEkz55ZQqT-ENbZZS9A",
+"https://www.youtube.com/channel/UCVcEAqUjgTcHd3zAmArwjyg",
+"https://www.youtube.com/channel/UCZ5oYH32OmEkJkofiTvWd3A",
+"https://www.youtube.com/channel/UCwXQ1vRXbJmZ_X7iNumgO8w",
+"https://www.youtube.com/channel/UC6omVRxL_gmVW9kRhvA0AUw",
+"https://www.youtube.com/channel/UCX1O-wY4gnITHSOyHjvYbhA",
+"https://www.youtube.com/channel/UCjePA08U39fUknPQz2xk9Mg",
+"https://www.youtube.com/channel/UCUA5ah42exBCcDkPdQ4BdOg",
+"https://www.youtube.com/channel/UCVuMH3CefzJB7ECKG-m-j1g",
+"https://www.youtube.com/channel/UCN2AOA0-Y_k3dfYd3kgucaQ",
+"https://www.youtube.com/channel/UCbLW8GQukQfebDEJkvbrJqA",
+"https://www.youtube.com/channel/UCesJ_OYNNeD7jQFGWUakSVQ",
+"https://www.youtube.com/channel/UC5j-6WF2kdzj5MfeNU3D1PA",
+"https://www.youtube.com/channel/UCSngqsAHFZ_KgblZ-m-NM3w",
+"https://www.youtube.com/channel/UC83DwUt-95eGjcsfLQ8EWQg",
+"https://www.youtube.com/channel/UC-2hM-Y77rV5fDUcjfsJ-3g",
+"https://www.youtube.com/channel/UC3UQ4H1KbWxxoR2GR_ThkAQ",
+"https://www.youtube.com/channel/UCJeUama-h5aIfUEYA4ERMGw",
+"https://www.youtube.com/channel/UCE_XQS94vZA0s-5KyTrr-AA",
+"https://www.youtube.com/channel/UCnzAY0nJSk9-sft0LVwT8WQ",
+"https://www.youtube.com/channel/UCWpvS0oSgSaP5WYW0f0YjqA",
+"https://www.youtube.com/channel/UCYXiq8L3d8QAUz5LlfK8iVQ",
+"https://www.youtube.com/channel/UCg8ncMwNrvP--ULY9fr0reQ",
+"https://www.youtube.com/channel/UCPfeCYsETd-w43Cr7kKTe2g",
+"https://www.youtube.com/channel/UC6kgh80VG0GoxFDCRUA-r1Q",
+"https://www.youtube.com/channel/UCBJxo4QEBfh6Km-S17fsqKw",
+"https://www.youtube.com/channel/UCorJhSM639ATvEK-gWgIYsw",
+"https://www.youtube.com/channel/UCFZHd6iSBBFaWfHoTCIaYIg",
+"https://www.youtube.com/channel/UC8xp73N8bifWPjLWcKKp35Q",
+"https://www.youtube.com/channel/UCKD9Z9BA9CzQ-l-ma2AyT6w",
+"https://www.youtube.com/channel/UCAqmU2XCKVXyexYsonvU9qA",
+"https://www.youtube.com/channel/UCwQ9SqZU1ZmlC-LA0utxWRA",
+"https://www.youtube.com/channel/UCYq4TSjRNKFY_J54eEDjHiw",
+"https://www.youtube.com/channel/UC_Q_eqZCItA5ECGM_b7xi0g",
+"https://www.youtube.com/channel/UCQBDcpMqIMnm_mHQo8kzm4Q",
+"https://www.youtube.com/channel/UCO8h8xCJnAM8HI3ubAqdPsA",
+"https://www.youtube.com/channel/UC5GxOqj2CfUA096OEbRZobw",
+"https://www.youtube.com/channel/UCWJTW2kL24lUyVY5vsUdqsw",
+"https://www.youtube.com/channel/UC-WKwpBGHmkWdw58KS1oQ6A",
+"https://www.youtube.com/channel/UC5a72KzqFN87Yitbj-KM6dA",
+"https://www.youtube.com/channel/UC7Sl_fkRMnlaTT-iRdH9Q6A",
+"https://www.youtube.com/channel/UCYWdvEIGI3xpAJOu353aIWA",
+"https://www.youtube.com/channel/UCCPmqMAPX8BGW3PZ_qoMG0A",
+"https://www.youtube.com/channel/UCpA-HQ1HBYBs9jtEkyS-NfA",
+"https://www.youtube.com/channel/UCUd7d3MNupBHtbKorPVjs9w",
+"https://www.youtube.com/channel/UC6Zx_UT4AV604a4QclgWeUQ",
+"https://www.youtube.com/channel/UC3BFk_82iv0Cs5ZAC4aboMQ",
+"https://www.youtube.com/channel/UC9I7mlqxZBCvA28l8jLrtGQ",
+"https://www.youtube.com/channel/UCn462TfYWffVrQD4IS4vngQ",
+"https://www.youtube.com/channel/UCPs9l1Y34HMNi9YHob4fvkg",
+"https://www.youtube.com/channel/UCt_d63hbJnLRDgtMw8RJwQw",
+"https://www.youtube.com/channel/UCgn7rsKJTRTwLAlyGdkUVGQ",
+"https://www.youtube.com/channel/UCX0VoTPvtC0TKpgU_EyGa2Q",
+"https://www.youtube.com/channel/UCkxzUosb55RGT7-Ywi0s1fA",
+"https://www.youtube.com/channel/UCZM7AVPdNOiJ9mV-nxVJXMQ",
+"https://www.youtube.com/channel/UCNB_qdxJRzDzhKIPx4nb6uQ",
+"https://www.youtube.com/channel/UCtnZZEQQhcj_z7jJ7OyIS2g",
+"https://www.youtube.com/channel/UCQTYnPVMXIJ3xDbzCkaVryw",
+"https://www.youtube.com/channel/UCosCV96jiGTyJbdzrmLkNrw",
+"https://www.youtube.com/channel/UChGZNmZ45JbvxJe1R-1TB2Q",
+"https://www.youtube.com/channel/UCXlRIVFK-Jc1-2bxROG8CTA",
+"https://www.youtube.com/channel/UCiy492TY7vpUvlDjOdvb6EQ",
+"https://www.youtube.com/channel/UCpGBZvVTY_Wc-fkWkJL8b8w",
+"https://www.youtube.com/channel/UCBiy4ACZcsNTy-UDWlNTCKQ",
+"https://www.youtube.com/channel/UCW8Vt639nRQcYher5J-__pw",
+"https://www.youtube.com/channel/UCzUUuey5Vfdog_qMGpG120w",
+"https://www.youtube.com/channel/UCGVIZZ39vT_aK89XhL5OIbQ",
+"https://www.youtube.com/channel/UCFUE049aGeNJpic2CdYSBag",
+"https://www.youtube.com/channel/UCqeTDuCvXerxldAe05MAFXg",
+"https://www.youtube.com/channel/UCyQizpwEmFKo1KKY6TT58sw",
+"https://www.youtube.com/channel/UCYD7V_JvZRl0AT7972jQ3Cg",
+"https://www.youtube.com/channel/UCmy6mO_ojmNSisTU9egzf9Q",
+"https://www.youtube.com/channel/UCwluxc6IwMvN29_S1TA_kOw",
+"https://www.youtube.com/channel/UC-YbQF9EP6x1SDm_F-qAHEw",
+"https://www.youtube.com/channel/UCSDJ_Vfw_fRdJQ4otC4HrNw",
+"https://www.youtube.com/channel/UCh6oK3GMP-jOoHPngfXXswA",
+"https://www.youtube.com/channel/UCRe7hTtop2MQ3b5XmXizMfg",
+"https://www.youtube.com/channel/UCnFtfAwqHy9D_HhxUAB8X8g",
+"https://www.youtube.com/channel/UCACTd-AO2hOVWmxPlmfojaA",
+"https://www.youtube.com/channel/UC_fXHu95UE-Eb9ndfaLGL2A",
+"https://www.youtube.com/channel/UCo8vpseUNp023FgRa37ypww",
+"https://www.youtube.com/channel/UCXzTnmgy0_IoPWRrI52mCmQ",
+"https://www.youtube.com/channel/UCG_35Qt2l4GIa5yCc7QTAoA",
+"https://www.youtube.com/channel/UCLWOYpk0NIHqUKEjS8A9SUQ",
+"https://www.youtube.com/channel/UCmVlOkyqX76XX_jkWXaerCA",
+"https://www.youtube.com/channel/UCi_3lJG0Fh3xFatnGp4_FvQ",
+"https://www.youtube.com/channel/UCkbeN6ME4y5j8TeVRIyj0-Q",
+"https://www.youtube.com/channel/UCQWorGQ_sDqECwdvaF2GA2w",
+"https://www.youtube.com/channel/UCkhRbKa0QCDQ9CWrxsXkFkQ",
+"https://www.youtube.com/channel/UCt2gmdtpq6Bt7H7i7PyEaqg",
+"https://www.youtube.com/channel/UC3rQlXa_qGu-jWdcfkdI7Vw",
+"https://www.youtube.com/channel/UC0gT0cVDBFvhn8rdpUTaJlg",
+"https://www.youtube.com/channel/UCCRacrBAqpMBwWXCdfCfiNA",
+"https://www.youtube.com/channel/UCG4-u0IxZ2DseZ9NaWsZZXQ",
+"https://www.youtube.com/channel/UCsBca--agXFL0lXx--tlC8A",
+"https://www.youtube.com/channel/UCfZXaatbETsfRpy-sa7-sNw",
+"https://www.youtube.com/channel/UCb7mhG5OEp7WLF1GHx1RaRw",
+"https://www.youtube.com/channel/UCDoKRU7B5-b9XOT16_d_6nw",
+"https://www.youtube.com/channel/UCd53iGu2fC_mv5rpkVbu5gw",
+"https://www.youtube.com/channel/UCh-5klAHntv99hBTzexGJZQ",
+"https://www.youtube.com/channel/UCegzOhOs3HtUmWbqo6bOV3A",
+"https://www.youtube.com/channel/UC0XUDfLyY_T0ujDbUqhXJrQ",
+"https://www.youtube.com/channel/UCozgirpjGQIKAoq1nRys4tw",
+"https://www.youtube.com/channel/UCn3DIMbdm20gqrsGmpcitSQ",
+"https://www.youtube.com/channel/UCe66N1SF3tCnLZ2ETxPD2hQ",
+"https://www.youtube.com/channel/UC9bt3iokUKsyAcyV6AMJ4Hw",
+"https://www.youtube.com/channel/UClQnxMRyNgwSzhDDuaoLcCA",
+"https://www.youtube.com/channel/UCGQKQ2SwI6mWAz37sz4eLaQ",
+"https://www.youtube.com/channel/UCZYXWRimVzPFZiu4FggoevA",
+"https://www.youtube.com/channel/UCK0IHlquAfTmy81PDE4eqMw",
+"https://www.youtube.com/channel/UCe-gqh-wvy6C-_rIwUSIDow",
+"https://www.youtube.com/channel/UCFS5lXVNTcKBBkhgJ1fqapg",
+"https://www.youtube.com/channel/UCg9MrqJGxqP3qK3N1giUlpw",
+"https://www.youtube.com/channel/UCfQaxX5KmSgDRwkKBiFCXhQ",
+"https://www.youtube.com/channel/UCJjjoS1nZ6RFC9zw5I9QW1g",
+"https://www.youtube.com/channel/UCp49JzTJOXPMbtFXXMtHy6g",
+"https://www.youtube.com/channel/UCN2En7jsTIz8t0lNnapBEbw",
+"https://www.youtube.com/channel/UC7DsZNmJsin6DRDE61Ez9Ig",
+"https://www.youtube.com/channel/UC9U73CgmOdHyp2DSuP-zjlw",
+"https://www.youtube.com/channel/UCY_9y9xyz71au6dAj4GGLmQ",
+"https://www.youtube.com/channel/UCU7c0Fwitl3eV74VPZzPACQ",
+"https://www.youtube.com/channel/UC4k61Nk8-l3vnu0OTeRbK4g",
+"https://www.youtube.com/channel/UCuZjrVL8mLEELZ1XMX5WbJg",
+"https://www.youtube.com/channel/UCwL5e7aCZ81Jlo8MEcIwW2g",
+"https://www.youtube.com/channel/UCp-qSiKJNlqk_TUXXZdDVng",
+"https://www.youtube.com/channel/UChva1-CYTre7NUK6DuUN0ZQ",
+"https://www.youtube.com/channel/UCHg3GByEF41kXtyFHqPkUyA",
+"https://www.youtube.com/channel/UCFxsFQDS1ld7cTh8jD_lSUg",
+"https://www.youtube.com/channel/UClJsJZ5Gz7eMwqZlHG0fPPA",
+"https://www.youtube.com/channel/UCjje7VFnYBUI69_P4hQng8w",
+"https://www.youtube.com/channel/UCf2392cmsUfyqYNBucEo2yw",
+"https://www.youtube.com/channel/UCFuEiO37mUAB61We2H--fEg",
+"https://www.youtube.com/channel/UCDqScgC9c6r-quVyvX8Jksg",
+"https://www.youtube.com/channel/UC9vPNcbQokds0g_Pb3ROXQw",
+"https://www.youtube.com/channel/UC5MlbPOEuN8HG3T_9_1O6cA",
+"https://www.youtube.com/channel/UCVtzQyJhPUHriKWBqJEvmzA",
+"https://www.youtube.com/channel/UCEKHHQZn0LP_XgMkFI8tstw",
+"https://www.youtube.com/channel/UCrgM29_7_7XgvDw3D8r_fVw",
+"https://www.youtube.com/channel/UCCNqXG0VAL2j_SdlkNhuCYQ",
+"https://www.youtube.com/channel/UCNdKy7YlGoJF0fIE04-pArA",
+"https://www.youtube.com/channel/UCkIgTkpychZ1Z0XHR-5mcwg",
+"https://www.youtube.com/channel/UCNQM5M27XKLLsWe2gyw4VBw",
+"https://www.youtube.com/channel/UCvHlqEQ5yBblxOX5VKIgMFQ",
+"https://www.youtube.com/channel/UCKvejVf9ly-PKLuIPMKwjkw",
+"https://www.youtube.com/channel/UCgNfqo5vWx6hW6gRmrwC76A",
+"https://www.youtube.com/channel/UCBBm53jUdAAUx1uLLng1biQ",
+"https://www.youtube.com/channel/UCLg5IITbGnlownesqN07X7w",
+"https://www.youtube.com/channel/UCRC2jdh31550YvfuajnNi_g",
+"https://www.youtube.com/channel/UCoQeWUmEpUkm5PXRk5-KK7A",
+"https://www.youtube.com/channel/UCsEeR27_sg5UXRyvD0n3Skg",
+"https://www.youtube.com/channel/UCd8kMC-Ap8G5SWykSporKdA",
+"https://www.youtube.com/channel/UCBZLtJuDuDocjhhL6dOS_kQ",
+"https://www.youtube.com/channel/UCZKcBgsTwLihFhzspS8xWvQ",
+"https://www.youtube.com/channel/UCSdgOsZTHx2U71HoR3cxUyw",
+"https://www.youtube.com/channel/UC82fLGjQ0whCT-O0Oxw6vlw",
+"https://www.youtube.com/channel/UCuLBtd8RFDy30iu7Ntna9Ig",
+"https://www.youtube.com/channel/UCdaQes3_QeTNJlwEvPI36nA",
+"https://www.youtube.com/channel/UCpt2905uXGRi6jdIgJUOVgQ",
+"https://www.youtube.com/channel/UCFYLQ_0yVZDfOnTlLqFbTHg",
+"https://www.youtube.com/channel/UChpW6uS84zpAoTm-XY0Y0wQ",
+"https://www.youtube.com/channel/UC7kr1vN2Y7iCJX_4X1JzuNQ",
+"https://www.youtube.com/channel/UCVBjSmlo_SI5xZYd2aLzbZQ",
+"https://www.youtube.com/channel/UCHmPYqKp_uvPdxrJ5-BWOdg",
+"https://www.youtube.com/channel/UCv7Y9zIQ22bxOHUobTx0c6w",
+"https://www.youtube.com/channel/UCKy6TFBqMWICm5x-yX4iU4w",
+"https://www.youtube.com/channel/UCd9Dk_4iF7cR7QTlzBk_MPA",
+"https://www.youtube.com/channel/UCa74-Zp2DyRde_eCOE39M4A",
+"https://www.youtube.com/channel/UCaZx1FkXBmq_d6PnctopcrA",
+"https://www.youtube.com/channel/UCyKyfQnZ5GLk99D6QEiIpaQ",
+"https://www.youtube.com/channel/UCN6OT6Iop_T9vIHiiMOa4vw",
+"https://www.youtube.com/channel/UCb8aA5KSMklocWqr_v96YWA",
+"https://www.youtube.com/channel/UC_peM0FGhlEs8XAhN1JSNoA",
+"https://www.youtube.com/channel/UCYL9Hl6Mw9xa7ygIPwCjKbg",
+"https://www.youtube.com/channel/UC871HE0LGZfK0e8hhKhsEpg",
+"https://www.youtube.com/channel/UCVUp0E_l6Vyh9bZQFBP3gVw",
+"https://www.youtube.com/channel/UC1VZzK1wT5KaLQqsyRpkYfA",
+"https://www.youtube.com/channel/UCfCthUE-6YVcAHbHYQx0b5Q",
+"https://www.youtube.com/channel/UCFZV6zLjX3hHZgqmtEbeJ6A",
+"https://www.youtube.com/channel/UCb6FFDhiqY4cWiMWm2j2iAQ",
+"https://www.youtube.com/channel/UCx0pAidIaXwISr8TBcM7xqg",
+"https://www.youtube.com/channel/UCOwvIRmRhVy7E_rNDAHI2Ng",
+"https://www.youtube.com/channel/UCjqY5OYg45fXp-qlalCqPbA",
+"https://www.youtube.com/channel/UCkz2dV20fg3mvcD_z7FJMog",
+"https://www.youtube.com/channel/UC8soUsWdUZc2nXU9p0EcJHg",
+"https://www.youtube.com/channel/UC-rZMQgJLiTmRjmXCk_nn7Q",
+"https://www.youtube.com/channel/UCzHfR5muQitWA6gxfCY1dEg",
+"https://www.youtube.com/channel/UCZMGH4ELQmKoJzYNHLENTlQ",
+"https://www.youtube.com/channel/UCbipY6TOjhnHoGSgFoNzYyQ",
+"https://www.youtube.com/channel/UC8mb1NVsabimB56HkFLp9PA",
+"https://www.youtube.com/channel/UCrWDlWcjjXYDlR1nMuliR-A",
+"https://www.youtube.com/channel/UCSF1GDfCckx52RvCuHAmKqw",
+"https://www.youtube.com/channel/UC-r1IXvCwGXyGPmNPmTcuzg",
+"https://www.youtube.com/channel/UC1_ENLrr5WMJFxZcofaJ4wA",
+"https://www.youtube.com/channel/UCDV0Rgm3HLs7RqvjIipJVjQ",
+"https://www.youtube.com/channel/UCGW3SEbVPU_oq2mppaZP93g",
+"https://www.youtube.com/channel/UC9DLBLMKN29CUlx2nCYiwog",
+"https://www.youtube.com/channel/UCLDJn9-MFRWeV1xYtmRYnvg",
+"https://www.youtube.com/channel/UCD9BzyicGk6FaRHvAdRioDA",
+"https://www.youtube.com/channel/UChErdvSvQM6ktcMbHQAOwkg",
+"https://www.youtube.com/channel/UCNb02yjqhpOHWNCS63Geb7A",
+"https://www.youtube.com/channel/UC5RlLKihTd3Vt5B08xXk8Vw",
+"https://www.youtube.com/channel/UCphPzOq0gAIMRpSmZVG0jmw",
+"https://www.youtube.com/channel/UCqvodw_kIpnGHlRFoM0Odeg",
+"https://www.youtube.com/channel/UCGCa4y8_iHfHjecO92vNz2A",
+"https://www.youtube.com/channel/UCEp6r7ljbs0Fy8v8sqQIs_w",
+"https://www.youtube.com/channel/UC0pwYVaDLuh1xQnREPxrkHw",
+"https://www.youtube.com/channel/UCdlhElNJDDKOhYzr3AyI6zw",
+"https://www.youtube.com/channel/UC0Xq-PyNdssa1jZ-yIOT1RA",
+"https://www.youtube.com/channel/UCOj5ywrdGm6wbr2am_PfCkw",
+"https://www.youtube.com/channel/UCdMBszfNvycP9Hft5pH2WgA",
+"https://www.youtube.com/channel/UC2iz4WTwA2Y6qKCMraziKwQ",
+"https://www.youtube.com/channel/UCMB9zERmB-yO7lo-EgLZNZw",
+"https://www.youtube.com/channel/UC3AKB86KYZm_v1qAv6iFAGg",
+"https://www.youtube.com/channel/UCELrXu8gV1RsgxWfJ-moXHA",
+"https://www.youtube.com/channel/UCPK592iDE1ifjy6UW0OAxOQ",
+"https://www.youtube.com/channel/UCVZueLAB3C-qlHFurnyeNag",
+"https://www.youtube.com/channel/UCIU9jR-ldG2XjnMHumsIEDw",
+"https://www.youtube.com/channel/UCnk6HWm5rI6mWHQf6yEjHmQ",
+"https://www.youtube.com/channel/UC9zlpDij9cq_RQi8z_OzEmg",
+"https://www.youtube.com/channel/UCIlI0D8ndD5iL3fjYfKBIGA",
+"https://www.youtube.com/channel/UCRi2YbBc0FDLOiF_WbyKD4Q",
+"https://www.youtube.com/channel/UCQtM1RZOpf90vnuuqWMytjw",
+"https://www.youtube.com/channel/UCG6JiaS5AlOXaaw-V-8BP0w",
+"https://www.youtube.com/channel/UClzI1MFMLiWo234ej3Qsjsg",
+"https://www.youtube.com/channel/UClEWmJxxgXVLYr9SXeZH2XQ",
+"https://www.youtube.com/channel/UCkfVi7vsyVKOloyf7I6VJvA",
+"https://www.youtube.com/channel/UCIeKVkpBGdvuGicKFwVV7IA",
+"https://www.youtube.com/channel/UCKdlfzBjIrAlIR8fnytZacg",
+"https://www.youtube.com/channel/UCF3V597v-JwXJEymuAiEFpQ",
+"https://www.youtube.com/channel/UC9tL_JsJyl9XMbsSjgj5L3w",
+"https://www.youtube.com/channel/UCkrh_QA-ZKcfw5yy0x9jzgQ",
+"https://www.youtube.com/channel/UClqnfZRu71p5aMrvqXjDOSg",
+"https://www.youtube.com/channel/UC2x4VwrOhe5znsgxhCSSpMQ",
+"https://www.youtube.com/channel/UCIPy8NdeTf1kx7Zt-INc_0w",
+"https://www.youtube.com/channel/UCi3VImoY4YmHdxfogkMZsrA",
+"https://www.youtube.com/channel/UCcta78-G-H13dqLqmAWN7hQ",
+"https://www.youtube.com/channel/UCUY33uHJMNmH2M108V0BSdA",
+"https://www.youtube.com/channel/UCE71i2g55jLLS1NsretLo9Q",
+"https://www.youtube.com/channel/UCXg8lnd8ImH8R3gsB5KbBqQ",
+"https://www.youtube.com/channel/UC0NqyTBsE8pE1FSFlv7O0tw",
+"https://www.youtube.com/channel/UC0Zgxm9LQhMGWbybOvrczoQ",
+"https://www.youtube.com/channel/UCcK30a5AuovaUAO1tLTj9Yg",
+"https://www.youtube.com/channel/UCvFu4BBHfLqAzm93CdHRGRA",
+"https://www.youtube.com/channel/UCdNCDkOrycH9GlJBOo8abQQ",
+"https://www.youtube.com/channel/UCaX1VOv9gRtJPnngM--Nh-g",
+"https://www.youtube.com/channel/UCQHPeQsp08b_Y4uR8LvFZLQ",
+"https://www.youtube.com/channel/UCfE9WGC7fYwPoxnjtw_u-IQ",
+"https://www.youtube.com/channel/UCiPHxbV7AcYQwFlP2_fawOg",
+"https://www.youtube.com/channel/UCmQaaNukLt8A1QlwRnjJ57w",
+"https://www.youtube.com/channel/UCguv_b_XFLupDYXN2zZVyhg",
+"https://www.youtube.com/channel/UCPpFs40TBY6JuErYqgZ6jKw",
+"https://www.youtube.com/channel/UCbkKHQ_H7WrO4EVXy8z252g",
+"https://www.youtube.com/channel/UCvvTjvvoci1oJM0zYXpHMfw",
+"https://www.youtube.com/channel/UCSu30NGWG7uhtW2PqjIQjzg",
+"https://www.youtube.com/channel/UCQX1XsIEBGzUCH668v44ntw",
+"https://www.youtube.com/channel/UC-ulBFIUbKtFDsk8VXFxRoQ",
+"https://www.youtube.com/channel/UCXC8mpl4PBSokgx0-2qAv2A",
+"https://www.youtube.com/channel/UCDGCvrQRynqQLkpchw01aMg",
+"https://www.youtube.com/channel/UCa94e1Tb0Wphw117okX4vLw",
+"https://www.youtube.com/channel/UC33b1jMf37PbOMgZaEMdQ9Q",
+"https://www.youtube.com/channel/UCk2UBy6Hv-s9LY3v--qPoCw",
+"https://www.youtube.com/channel/UCfa7Ts6xh9LgPFdCawkEPRw",
+"https://www.youtube.com/channel/UCnziM0UDzcSh2_flhLKOSIA",
+"https://www.youtube.com/channel/UCPPHHjJ-VYljcnZHqp6kOkQ",
+"https://www.youtube.com/channel/UC8hzPt4vG_vST7qc1YFmm0A",
+"https://www.youtube.com/channel/UCsmxKo0qp5p54dWSipfmSFQ",
+"https://www.youtube.com/channel/UCq2qmn1AaE2gXybeiMSN5ow",
+"https://www.youtube.com/channel/UCvrIl1gWY8UBDTYr38lCMbQ",
+"https://www.youtube.com/channel/UCyCsgsmZ8jWuTgguKBfnHIA",
+"https://www.youtube.com/channel/UCmt8KLRq1xl8oZPdudsySsw",
+"https://www.youtube.com/channel/UCS_XKJ8S-sNJKB7Fiwr1IoA",
+"https://www.youtube.com/channel/UCoQb4NZGs_4jxQUf-LXLBDA",
+"https://www.youtube.com/channel/UCPuKgMw-MuIHJmm7O7hMMNQ",
+"https://www.youtube.com/channel/UCGBiZNSswaMAQK_Dyg4xiyg",
+"https://www.youtube.com/channel/UCXdgjxGcZSmauVW5ntIkm4Q",
+"https://www.youtube.com/channel/UCzVGwwp7KjDysSJxK4HDbdw",
+"https://www.youtube.com/channel/UCHC3S7b4Sv62Mdq7_WlQVBw",
+"https://www.youtube.com/channel/UC6n7Ise4Y3ElD55Ju4WWB8A",
+"https://www.youtube.com/channel/UCrlORHnKPyEqbvGyCNtfjYA",
+"https://www.youtube.com/channel/UCBrtgBmytRbVFtUiTBuUQtA",
+"https://www.youtube.com/channel/UCYoT0rKr8qBQuDIBXnGZR3w",
+"https://www.youtube.com/channel/UCoYp_dPNibmWtbVb9g_BpZg",
+"https://www.youtube.com/channel/UC1BKONnExrfSm0pTpq4ozJQ",
+"https://www.youtube.com/channel/UCZ6jE2Ciojd5zxJR8kwTrNQ",
+"https://www.youtube.com/channel/UCxvwchDOnuuprj0QIM_dfRw",
+"https://www.youtube.com/channel/UCYxuFqGfilM_IptENibImVg",
+"https://www.youtube.com/channel/UCH5jFlUtsQnGXOHibCTAm2A",
+"https://www.youtube.com/channel/UCtWX8zQGkPOKKNgFjszz3vw",
+"https://www.youtube.com/channel/UCZTxoVWoepCsSmxT5faPjlg",
+"https://www.youtube.com/channel/UCXIhYZ6cCMog7IU3sGCbMIw",
+"https://www.youtube.com/channel/UC5xMNbPves7t8GVj_2bhpFA",
+"https://www.youtube.com/channel/UCE4h47Lityw-UWyl_8_xtqA",
+"https://www.youtube.com/channel/UC5A1oPFfgyTHjek8c0g292Q",
+"https://www.youtube.com/channel/UCa69hw5kY-5YD8Gj2zliW0w",
+"https://www.youtube.com/channel/UCI0O4qRoakf1XdX1ZickwYg",
+"https://www.youtube.com/channel/UCleU7Eg3KAagEKeP-_re41g",
+"https://www.youtube.com/channel/UC1x3DnBKSDRARvgK7UbbffQ",
+"https://www.youtube.com/channel/UCzrAwSNgINX9XW_KShrbRKA",
+"https://www.youtube.com/channel/UCSmWizU-3HrwGmCHwUyVTqQ",
+"https://www.youtube.com/channel/UCsYnGtdKjIZN5JrBUN9cNEA",
+"https://www.youtube.com/channel/UCIi4dre3gNm44IWwSXwS86g",
+"https://www.youtube.com/channel/UCSULB8yUkvaRK9mj364Ohbg",
+"https://www.youtube.com/channel/UC3qW9lAeHctb6zCDo_ozxIA",
+"https://www.youtube.com/channel/UCE6yZ6zGP-gL67zmx4A5U-A",
+"https://www.youtube.com/channel/UCIC40WsQQCX11sQsxtQmsew",
+"https://www.youtube.com/channel/UCaobQmlcaglAbyQB6jvYsDg",
+"https://www.youtube.com/channel/UC3tMy-IthGxHtM04GLgmCOA",
+"https://www.youtube.com/channel/UCI9BT88ZDpTkjHJ0D2cX0Ug",
+"https://www.youtube.com/channel/UCZytfCFPWakajLBdoGG7uRQ",
+"https://www.youtube.com/channel/UCWYQ-Iu65Uq5cQh10BRMAmA",
+"https://www.youtube.com/channel/UCAOF_2VYrmrZb_m9yuPVqtQ",
+"https://www.youtube.com/channel/UCBTwlQF5WkunGsynauc9yoQ",
+"https://www.youtube.com/channel/UC4kecAjzAQqtl7hjq_e78-Q",
+"https://www.youtube.com/channel/UCm9_6JRE9f03N-gZP3J8d1Q",
+"https://www.youtube.com/channel/UCYMkRQ9_uxZ_44tCYul96Bw",
+"https://www.youtube.com/channel/UC6ZmifUM6Q4DCdj1H-69gZQ",
+"https://www.youtube.com/channel/UCUqxRmnxR1sCl6mq29UdqbA",
+"https://www.youtube.com/channel/UCdi3EWGjVFJd8yUQcb5d4iw",
+"https://www.youtube.com/channel/UC_bU_3kIGSKAt2VuputM1ww",
+"https://www.youtube.com/channel/UCiJ0I80-woyjkoufv43NWUQ",
+"https://www.youtube.com/channel/UCMETG9GsJKxQ7mXqTgsThCQ",
+"https://www.youtube.com/channel/UCoQm0mbUYBEDWltDaquInog",
+"https://www.youtube.com/channel/UCnPVzS8_5Faxs2mPivQXyfg",
+"https://www.youtube.com/channel/UCdXw8PlkedwvXYy8l2d_Flw",
+"https://www.youtube.com/channel/UC0XP7lTzmSR7azvpah2jz0Q",
+"https://www.youtube.com/channel/UCH62aC2NWk4CtyXVuUD4i7g",
+"https://www.youtube.com/channel/UCC74mYB7hui0Ixq5r6oyV_g",
+"https://www.youtube.com/channel/UCYjnG4bh_7rSP8WUWbdJFYA",
+"https://www.youtube.com/channel/UCW-7I3Xw9KtF_JHxaFI2dKw",
+"https://www.youtube.com/channel/UCrgxauMN0qrlD8RrF__bqNw",
+"https://www.youtube.com/channel/UCpB8fqLcHzLPskygB60Llfw",
+"https://www.youtube.com/channel/UCcLK3j-XWdGBnt5bR9NJHaQ",
+"https://www.youtube.com/channel/UCsyeADr9gl7QCMa0voH_6Hg",
+"https://www.youtube.com/channel/UC7osPtFCVGg2_59WW38yEZA",
+"https://www.youtube.com/channel/UCl9m5NAnvLJVihB2Lkg4Rsw",
+"https://www.youtube.com/channel/UCCLOX2sAHzLxOPwBr-IXUUQ",
+"https://www.youtube.com/channel/UCt--OTrN1_aRZyT2gQcLEMw",
+"https://www.youtube.com/channel/UC0i0jvg9bB_E0a3czCt4knw",
+"https://www.youtube.com/channel/UC3Gcaqu2Ych1dJCNaN5w6ew",
+"https://www.youtube.com/channel/UCEchv6tsGZSDveCXmwcKGjw",
+"https://www.youtube.com/channel/UCeyxqfP1EqNh9fuNOEuUC4g",
+"https://www.youtube.com/channel/UCPxUTPRr5cKo-cA03_FY8SQ",
+"https://www.youtube.com/channel/UCJsdzLiPIGQSn_GWfcDWNVA",
+"https://www.youtube.com/channel/UCkN2N4TL0ppv1plcwakKyXA",
+"https://www.youtube.com/channel/UC5k8o_6RLw2j8HUMENcZYkw",
+"https://www.youtube.com/channel/UCgIfN2ZwRTZKVgFIx74NiVw",
+"https://www.youtube.com/channel/UCOJgCDvpQthAV4shcjBFOFA",
+"https://www.youtube.com/channel/UCFQh-1rXSgnWCbAcfzbsE0Q",
+"https://www.youtube.com/channel/UCEcwP5n9M8U-7UOn_7FnjIA",
+"https://www.youtube.com/channel/UC3DfcN3sMZQx1MX4X7KhPIQ",
+"https://www.youtube.com/channel/UCEfThZ5f_6CZ-WLc9PVtImA",
+"https://www.youtube.com/channel/UCmgHhXH_ekvXuELtpuznFgQ",
+"https://www.youtube.com/channel/UC-6l5R-BJnxE8p1IVNBcloQ",
+"https://www.youtube.com/channel/UC8_xW7EYJ8L8ImUB1YLbntQ",
+"https://www.youtube.com/channel/UCnpZAoOk7lpPkPs5-muJrjw",
+"https://www.youtube.com/channel/UC1ue73Izfqd2ngzz9P-UWzA",
+"https://www.youtube.com/channel/UC98nGGeaFKZUT8xlHcOiRtQ",
+"https://www.youtube.com/channel/UCK-Ly3NedIjcRY4_INfEqig",
+"https://www.youtube.com/channel/UCZyFErOy7cc1kPoQYXFaVfA",
+"https://www.youtube.com/channel/UCjCmL-MJsW19DEMZ0UOdrMw",
+"https://www.youtube.com/channel/UCXpHl7ptg-MQFPony0AFZhQ",
+"https://www.youtube.com/channel/UCcU-prFlOyiKPLqthKtLYUQ",
+"https://www.youtube.com/channel/UCxVkrSDCti4wj5fKHPpkxuA",
+"https://www.youtube.com/channel/UCY11iCG0fLPRsMYK9ywI1xQ",
+"https://www.youtube.com/channel/UClpKOCO3ngIDEjI7SM-zItw",
+"https://www.youtube.com/channel/UC7ZpbEsGoQwdHWNsKP1bMzQ",
+"https://www.youtube.com/channel/UC9_uz9fTAQBVjfmI-JNQ_vg",
+"https://www.youtube.com/channel/UCQ_Hsc9EeQCM2kQJOSeaKaw",
+"https://www.youtube.com/channel/UCikdGX03jYewT6Z6eWH67tg",
+"https://www.youtube.com/channel/UCKYl2qrf2qEUXGm5CAiLr1w",
+"https://www.youtube.com/channel/UCBsRYKvkK5ybt7mw-Qv6ttQ",
+"https://www.youtube.com/channel/UCFvvn3ulCxGSk3SwyGVhvMQ",
+"https://www.youtube.com/channel/UCVxV1ZOxDGwt_KVeNFpZdMg",
+"https://www.youtube.com/channel/UCmIuCBvm7WXIgGfugCE305A",
+"https://www.youtube.com/channel/UCDvd7HicqNNcYalQ-hrFO5Q",
+"https://www.youtube.com/channel/UCPoWJNjVUrEqIMDqSRfJspQ",
+"https://www.youtube.com/channel/UCn3_rIfII9XvGICdXQl5zBw",
+"https://www.youtube.com/channel/UCrjJDRiLHVUjhfz0ntitxqw",
+"https://www.youtube.com/channel/UCIs5nRlS8bSbSz7u0qROSBg",
+"https://www.youtube.com/channel/UCKOJVm0F6mZc2en6JacZyHA",
+"https://www.youtube.com/channel/UCmH6_CbqDcn-UWv23-087pg",
+"https://www.youtube.com/channel/UC7sydV4EuSJajkQ-Z-S8Onw",
+"https://www.youtube.com/channel/UCYPieuwGKbfNlGaer-ae9xQ",
+"https://www.youtube.com/channel/UCUW_iriuteLxmsVnbNVdB9g",
+"https://www.youtube.com/channel/UCx8cPK78PpriQSLWSuHgrQw",
+"https://www.youtube.com/channel/UC-gF3GKbstbS-vuyPWl8EMQ",
+"https://www.youtube.com/channel/UCBRLoF2-hM53OydZ7c_9qbA",
+"https://www.youtube.com/channel/UCZ6A2zkwQHGEv-ckyfrt48A",
+"https://www.youtube.com/channel/UCvkc2AtmY3WJllNANfFyI9A",
+"https://www.youtube.com/channel/UC3qLx144eHFW84_NazUmIPQ",
+"https://www.youtube.com/channel/UCwjJbARhbrCpsYx6ZcAoimA",
+"https://www.youtube.com/channel/UCI3Dws6G7GwIdXccNMdAjxw",
+"https://www.youtube.com/channel/UCcgoZ8QhnZiw-IQfnFeNazw",
+"https://www.youtube.com/channel/UCxQ73DZ2KJ5Nsn6uJXRgCQA",
+"https://www.youtube.com/channel/UCae1Z_DThNQJeUCtYIrX9qw",
+"https://www.youtube.com/channel/UCG9SmyhZSeJZoEnsLMtNZ_g",
+"https://www.youtube.com/channel/UC9oJrcYfVO7nbczbDhx4ihQ",
+"https://www.youtube.com/channel/UCo3pFUofSjMHshQQQ8eHG4g",
+"https://www.youtube.com/channel/UC1iZY-GhlYUlKdzJBG0KnuA",
+"https://www.youtube.com/channel/UCZ2iqK6rYWhuahoVNCZEK2Q",
+"https://www.youtube.com/channel/UCaUPkprPMJiaZv2H7iQdfVA",
+"https://www.youtube.com/channel/UCAYnVRFxm6Oy_BVVKrSxE8w",
+"https://www.youtube.com/channel/UCkxAZmT60UkZMBVLuiyqbsg",
+"https://www.youtube.com/channel/UCXqtSp1v5zD3CoQBy2xvCew",
+"https://www.youtube.com/channel/UC3qiwhCIfMKCq_hwxig0cdA",
+"https://www.youtube.com/channel/UC1h2O92swmkEPbRyJjkZCEQ",
+"https://www.youtube.com/channel/UC_vK8gDItq3S64gUhFVJLfw",
+"https://www.youtube.com/channel/UCkU9D5JquIcuDkJycThT5AQ",
+"https://www.youtube.com/channel/UC-O92iTxnoMj8z48pV4wMvg",
+"https://www.youtube.com/channel/UCmTIgruJoilF939erfKx23A",
+"https://www.youtube.com/channel/UCQ2YTb4RmPmxzrtaROWHN3g",
+"https://www.youtube.com/channel/UC5DZAzb-bibA5OpPge3kD2g",
+"https://www.youtube.com/channel/UCEbBdsBw4cav9oeeoQOw7MQ",
+"https://www.youtube.com/channel/UChTLdss9CHFGLQEybQYnnMg",
+"https://www.youtube.com/channel/UCcLo2x54aoLkrLv2PlgpDsg",
+"https://www.youtube.com/channel/UC98WWn1YCbwzeGjyvE_RhGw",
+"https://www.youtube.com/channel/UChbkcUuRaIlAd6rSZS9qLPA",
+"https://www.youtube.com/channel/UCknphh1-KkgEYgN3CgSaOEQ",
+"https://www.youtube.com/channel/UCec1e2sNmk4KuSkJJ2HLUUg",
+"https://www.youtube.com/channel/UCLdofuO63Y9VGumdnZn11RA",
+"https://www.youtube.com/channel/UCld4zeFEbGskR6rMfau_y4g",
+"https://www.youtube.com/channel/UCH3yoQcDADN_XeFC9v6W_Hw",
+"https://www.youtube.com/channel/UCtQWodz_XVlsIQxS4gt6Fkg",
+"https://www.youtube.com/channel/UCCvVvBCVfqhHfOSucj8k98w",
+"https://www.youtube.com/channel/UCUg4BSW6ev9WwwYRoKveLlQ",
+"https://www.youtube.com/channel/UCUaTL4iXS05ADk3pRs3k8Sw",
+"https://www.youtube.com/channel/UCglL92wqS4_suDoI0Jq4H8w",
+"https://www.youtube.com/channel/UCeYEvlmK3a8RwmKqIFrqIDw",
+"https://www.youtube.com/channel/UCnPg6MRj3AwGWAWjPy6wf6Q",
+"https://www.youtube.com/channel/UC3BuDhomw6r2RhmWYtgTVfg",
+"https://www.youtube.com/channel/UCWvPh5bxn5ZTxEFNlq6NxCw",
+"https://www.youtube.com/channel/UCYC1ewitZpElWfIp5kXLXTw",
+"https://www.youtube.com/channel/UC1WLikee5oZJ1PeD1CtpI4w",
+"https://www.youtube.com/channel/UCjjNw5G0m9JOiv9Wo2qQMiw",
+"https://www.youtube.com/channel/UCNTZBuUrHuicAWZ8QRM5BrA",
+"https://www.youtube.com/channel/UC78dhYPW4ieH6FaNsUzCs3g",
+"https://www.youtube.com/channel/UC2WOmBVWtgLowMNLURy-gUw",
+"https://www.youtube.com/channel/UC0zzNVxdSJwtiSHbZ9OLFuQ",
+"https://www.youtube.com/channel/UCzA3Fm2q9y3Mwix42tj8Muw",
+"https://www.youtube.com/channel/UCnmymXiaE7X0vnwl5aica6w",
+"https://www.youtube.com/channel/UCvNsZ4q9QbpoFmhsEVTAFww",
+"https://www.youtube.com/channel/UCxnoz1altmiCWqtHZ19qm1g",
+"https://www.youtube.com/channel/UCgTF6JaEMu2tLk1kdXasgEQ",
+"https://www.youtube.com/channel/UC85u8BAsHa5_pT9p5UaZj8A",
+"https://www.youtube.com/channel/UCCBzilxhQ4si4Mfqxjnmfeg",
+"https://www.youtube.com/channel/UColIUupF08BVM5dlNvyguhQ",
+"https://www.youtube.com/channel/UCUys-l1sUg_RgmArZ1r4-Xg",
+"https://www.youtube.com/channel/UCx--nWMTOl-1Foj73I0qqKQ",
+"https://www.youtube.com/channel/UCl-aoubsZVJG4obMgYcc6Pg",
+"https://www.youtube.com/channel/UCorzKuDuiP11oX-aDk4rBkQ",
+"https://www.youtube.com/channel/UCzL5txFw5hPxJ3Vtuc5GDtQ",
+"https://www.youtube.com/channel/UC_juT6koZWycsQ22PuVTnyA",
+"https://www.youtube.com/channel/UCsgJ3ZBBvFXj3owB0tde3yA",
+"https://www.youtube.com/channel/UCuMIvk6wRT5p3_nnPwojRpw",
+"https://www.youtube.com/channel/UCM29q2sw7p9NvVUv2zx2Daw",
+"https://www.youtube.com/channel/UCgZS2aw2eWsXaVR5yMhVLtw",
+"https://www.youtube.com/channel/UCQb5VleR_zHB8YdypJyDPBA",
+"https://www.youtube.com/channel/UCnBdIEdfOk_4TKIgBYOjklQ",
+"https://www.youtube.com/channel/UCtClZXQ-0c40-srAgUkpCjg",
+"https://www.youtube.com/channel/UCgE2fwWTUgik8TJ7mKJFqRw",
+"https://www.youtube.com/channel/UCItsLeUGzjzmza5I4dWFGEg",
+"https://www.youtube.com/channel/UCyxReuudjmHACvBzeRTQRmg",
+"https://www.youtube.com/channel/UCbkq8BNUeOB1-ZoCEo_MXjA",
+"https://www.youtube.com/channel/UCmPJw64QLvv2pKp6K9CS6Hg",
+"https://www.youtube.com/channel/UC1gXha88ck9mJ3UoZ1vKLVA",
+"https://www.youtube.com/channel/UCp8plaEu1JVrgak3dAJVYKg",
+"https://www.youtube.com/channel/UCMdniwCCCa_WNMnKxRsj2Tw",
+"https://www.youtube.com/channel/UC5i0s3EjTWxqNouWWgdKL9A",
+"https://www.youtube.com/channel/UCa85_2Q59z91o7h7fQ30Zcw",
+"https://www.youtube.com/channel/UC4rRQZ4UzJ3epIAgRcAacCQ",
+"https://www.youtube.com/channel/UCEWWAoQN5Os0yosRMr2ra_Q",
+"https://www.youtube.com/channel/UCq9R3e_JIzDBBH9J4DAc0nQ",
+"https://www.youtube.com/channel/UCTvteeKUrQoawcSR-VcGexg",
+"https://www.youtube.com/channel/UCfOa83Y4GtoRemTWOmFIVXg",
+"https://www.youtube.com/channel/UCI2zOu8GUPAo98f3KP-yRvQ",
+"https://www.youtube.com/channel/UCvYxX51eVVyAWo8TkBWUKYw",
+"https://www.youtube.com/channel/UCU29zTCQRyZGNQ2ucY2lUzw",
+"https://www.youtube.com/channel/UCXj3fTSWujSkkOw_TV7wdgQ",
+"https://www.youtube.com/channel/UCyLoNLoIpRF6uJPRnAlPx1A",
+"https://www.youtube.com/channel/UCIp3w4iFodiVFQamqPx8fbQ",
+"https://www.youtube.com/channel/UC77UvsiRHYFvnNqLrRkkkEw",
+"https://www.youtube.com/channel/UCwAe1wkSDXdbl_tInqupVCA",
+"https://www.youtube.com/channel/UCymxQpafk9j4luYbk1Jjgrg",
+"https://www.youtube.com/channel/UCaNF3bnXSUmteejfo0RpoRQ",
+"https://www.youtube.com/channel/UCO_yDJzs71Lwsis6u54N38A",
+"https://www.youtube.com/channel/UCCw39fAAvudbVXaamgifDLA",
+"https://www.youtube.com/channel/UClXXayEYOIdeE_B61iZv-1w",
+"https://www.youtube.com/channel/UC7s0XFE6TxY6iz_MOYNpEuQ",
+"https://www.youtube.com/channel/UCIROCLzm_cnTbpZ9IpMlt2w",
+"https://www.youtube.com/channel/UCGGAhI-vqVhtrkgWGS5fh9g",
+"https://www.youtube.com/channel/UCDQ8zHX_KgK3iZJt6qdvESw",
+"https://www.youtube.com/channel/UChUFqdhoms6FTLuiq_bEVJw",
+"https://www.youtube.com/channel/UCmuXMOOrWuX2IpNtRZlo3rg",
+"https://www.youtube.com/channel/UCyQwYV7-kmzX-yl7PXUczOQ",
+"https://www.youtube.com/channel/UCIsP3pTYH_qA4GJAI9popmQ",
+"https://www.youtube.com/channel/UCi8EGQZW04Ii7S_n5CqrJNA",
+"https://www.youtube.com/channel/UCpp540Wuvm3oC-hrGzPi0lg",
+"https://www.youtube.com/channel/UCojOLiCEKDqAXj19NUsybRg",
+"https://www.youtube.com/channel/UCdmTmKgUivh_BNDENf5INlA",
+"https://www.youtube.com/channel/UCTka4zqHQwE764gvhwy3zYg",
+"https://www.youtube.com/channel/UCjJZuTVIq1GRd8_ZaTgSW-w",
+"https://www.youtube.com/channel/UCuVAJDczbOVG58lUZcssl6Q",
+"https://www.youtube.com/channel/UCxig_FXl7nUtZ6SFKDBsBLQ",
+"https://www.youtube.com/channel/UC7n4dMK-F4s9YJtKBnmLddQ",
+"https://www.youtube.com/channel/UCD4QPPcxFl3HDytbrup9EQA",
+"https://www.youtube.com/channel/UCC-JuTyGHCFKcqtM2SjAyJw",
+"https://www.youtube.com/channel/UCDvrru1DJyiJ2QHnTyY0uoQ",
+"https://www.youtube.com/channel/UCig_w1Ewgxk4TPEtFp3YE0A",
+"https://www.youtube.com/channel/UCaDr-wNJ-OELHnIaHrM6l5g",
+"https://www.youtube.com/channel/UCqDrEH2ZafOh9TP-JPLw0tA",
+"https://www.youtube.com/channel/UC1T1vDhw2NiFqYLoMaEjd4w",
+"https://www.youtube.com/channel/UCPwA52L43iuLFVHh5AzQrGw",
+"https://www.youtube.com/channel/UC1jUsWtjML5t0ztXv4thc7w",
+"https://www.youtube.com/channel/UCThROdFv3It6qAHS7zqqsig",
+"https://www.youtube.com/channel/UCMZjljX-ahnaRnzOxN0YXhA",
+"https://www.youtube.com/channel/UCEhM9UtqwxFfaZnlXZlLO5Q",
+"https://www.youtube.com/channel/UCLngF5FbiCPI-n768kRvrhA",
+"https://www.youtube.com/channel/UCiQiipP1Dlqgv5MIKitL3MQ",
+"https://www.youtube.com/channel/UCZuhGH29YCGyiLkEf5sJecg",
+"https://www.youtube.com/channel/UCzfMnmyAihPKw4ynutb7S4Q",
+"https://www.youtube.com/channel/UCN3eMKeTh1tu5ZYfOdhRZbw",
+"https://www.youtube.com/channel/UCfBE1ZFtci8pIp8xu5Ax1Rw",
+"https://www.youtube.com/channel/UCL1N1vLF1hEyOdCeqvoEfwQ",
+"https://www.youtube.com/channel/UCLYc4mGtGTkeazWszS_Emhw",
+"https://www.youtube.com/channel/UC04GK9y3247oHmlpYc7SkoQ",
+"https://www.youtube.com/channel/UCErNgbm0bOCHANjINO0T3bA",
+"https://www.youtube.com/channel/UC5KP0NeeiaLCKlKNQVWRqlg",
+"https://www.youtube.com/channel/UCWerwKYBskk08S2llhXVQWA",
+"https://www.youtube.com/channel/UCy1_zswfDIYrmH8UxDJ7vpg",
+"https://www.youtube.com/channel/UCYc5_MSEoWpMPbjNZENajXA",
+"https://www.youtube.com/channel/UCa0_y0LmCTwEU64gKAAJgGg",
+"https://www.youtube.com/channel/UCsn5YRExZpPbbg2TW9v-QjQ",
+"https://www.youtube.com/channel/UCPQ8Ej2iiJf9Mw9MMX5uahw",
+"https://www.youtube.com/channel/UCZ8x_iT6cDIciYeOds1LSAA",
+"https://www.youtube.com/channel/UCFJn_9kh0wybD59veG_dSgg",
+"https://www.youtube.com/channel/UCOwKKKaXEyWaVlJfGGIshqw",
+"https://www.youtube.com/channel/UCn_j2ALGNYUzVuFtviUlSOA",
+"https://www.youtube.com/channel/UC4aku9lZ2TXsICP1mu0-prw",
+"https://www.youtube.com/channel/UCMbViSyoMG56OV0j4A5DCLw",
+"https://www.youtube.com/channel/UCTVUWhLsuk3DEVGnCJ2bUCw",
+"https://www.youtube.com/channel/UC5_Ab9_uLenGaWmcFiKZjmw",
+"https://www.youtube.com/channel/UCZ1lJTQ-BREZjHGPKxSVomw",
+"https://www.youtube.com/channel/UC7xwpSsLKWw6iU7OnKBTaZA",
+"https://www.youtube.com/channel/UCGWdDFqIfY_r-y8zKDZ1Ubg",
+"https://www.youtube.com/channel/UClNN9pSD_cksYJ05M05e0oA",
+"https://www.youtube.com/channel/UCkH_EEAyM_sqxuhGpuFSWvw",
+"https://www.youtube.com/channel/UC0pcyKDRqV9_WgtJ0XqagzA",
+"https://www.youtube.com/channel/UCiDk-f_kWGtqztjuKcD27jg",
+"https://www.youtube.com/channel/UCpwLqji1PcHEP0E57xc1iQw",
+"https://www.youtube.com/channel/UC8oL_jAFqTJo4wOVbSzSNNA",
+"https://www.youtube.com/channel/UCAS0318Z0QZd1qoPe_kP-pQ",
+"https://www.youtube.com/channel/UClqecZ4K2QJQz2XfhqZ8_oA",
+"https://www.youtube.com/channel/UC8DcP4aBAToK9O36vHG9k2w",
+"https://www.youtube.com/channel/UC0LPcrnVAQZq2hlRzjmS3HA",
+"https://www.youtube.com/channel/UCOQyBm9daTZSVpzs5O39fVw",
+"https://www.youtube.com/channel/UCXT4R6RLksG3fNUPSNuuoYg",
+"https://www.youtube.com/channel/UC-XcYZoB30DK9c5I9PquK9Q",
+"https://www.youtube.com/channel/UCvz0T9w8LDo3k8lxq4CNkCA",
+"https://www.youtube.com/channel/UClH0JHm5S15wFvhy3oAQnQQ",
+"https://www.youtube.com/channel/UCPnBRz3b-H4FMNDENX7LKXA",
+"https://www.youtube.com/channel/UCQpzvwb3hB_PFKC8qSAfKBg",
+"https://www.youtube.com/channel/UCw2gdUsqQwcK3rEhAj0Gdyg",
+"https://www.youtube.com/channel/UC7ek_HmXM2ekb6rxfAiDjMg",
+"https://www.youtube.com/channel/UCtdwb9m0RT2-wzg3sKSgSmw",
+"https://www.youtube.com/channel/UCIBOOrEzJGred6mr6-u5TFg",
+"https://www.youtube.com/channel/UCSK-G5vAWsClC5pOiehGUkg",
+"https://www.youtube.com/channel/UCiUbKtZHvOP-1htwu7gx9Jw",
+"https://www.youtube.com/channel/UCzizAD-K6h3Pk9QhBui_VZQ",
+"https://www.youtube.com/channel/UCUjY5O_zVnQIzJGVt-xvyjw",
+"https://www.youtube.com/channel/UCI3xlM2ITis1jsjs9hqsHaw",
+"https://www.youtube.com/channel/UC48h3Ax6d86xFt57s4yy0vQ",
+"https://www.youtube.com/channel/UCx9eOW-c9pq6YsIipApRi6A",
+"https://www.youtube.com/channel/UCWOV2BW52r_DJY935Twh6cQ",
+"https://www.youtube.com/channel/UC2ebVk90QoFIReAnmLxMCcw",
+"https://www.youtube.com/channel/UCZqB4gHXi6r61u-G99D2viQ",
+"https://www.youtube.com/channel/UCUvcv9D28VNoWoMzs5fUvzQ",
+"https://www.youtube.com/channel/UCIVbHshNEpmhWLNyUAGArnw",
+"https://www.youtube.com/channel/UCPVY3Jm0rIsEk3BMzRybAyA",
+"https://www.youtube.com/channel/UCzlnj4ZpFoCb0qA2tc65_pQ",
+"https://www.youtube.com/channel/UCayKxHNKyZR3Yb1ZEiPhNLw",
+"https://www.youtube.com/channel/UCE5Uhg7OqENMVhQAREjDP2w",
+"https://www.youtube.com/channel/UCy0Y_nCBP7Ct6-DLkHrbqtQ",
+"https://www.youtube.com/channel/UCSyhTd-61kvyuscTwooSGcA",
+"https://www.youtube.com/channel/UCyu-8ROxVXuya6BXmS3V2NQ",
+"https://www.youtube.com/channel/UCbDy1gEFW6ZN47RmkDHo42Q",
+"https://www.youtube.com/channel/UCL0YkdlW62Pw8kUyaWCY50w",
+"https://www.youtube.com/channel/UCL7dCtGuWTJg2OYwf2xCOVw",
+"https://www.youtube.com/channel/UC4aJSL7v_JVFPAlquvtqXcw",
+"https://www.youtube.com/channel/UC_leurwtNketAov8k3ogYOA",
+"https://www.youtube.com/channel/UCpzLBR7pOEMRS3os5Vs_Ljg",
+"https://www.youtube.com/channel/UCWSAk2j_ffgDxXPKB1iwzKg",
+"https://www.youtube.com/channel/UCXYAonOMm7QTpOJHwLlYavA",
+"https://www.youtube.com/channel/UCHHU9pBbRZbCL4l040ge1Pg",
+"https://www.youtube.com/channel/UCvqtAXPuu5QynaawXm8tHCQ",
+"https://www.youtube.com/channel/UCxBsEZGSDJH87bijGRrSFZA",
+"https://www.youtube.com/channel/UCfRcU9cYE01b_gcq_ZmRtdA",
+"https://www.youtube.com/channel/UCdhslyhAPWla4yOI0j9G7Hw",
+"https://www.youtube.com/channel/UCd8d2Q-Q0xyuMBwSe09BQ1A",
+"https://www.youtube.com/channel/UCZcwZRO_KTGMTRu79HEulpw",
+"https://www.youtube.com/channel/UC0rThxbOScUPehCGOeOaD7g",
+"https://www.youtube.com/channel/UCyY9hfbiETQKywSCc1y149Q",
+"https://www.youtube.com/channel/UCAkUGPxzpk97ykdPwW0Q4Cw",
+"https://www.youtube.com/channel/UCnk_JSLj540ZFoUXW87_DBw",
+"https://www.youtube.com/channel/UChROfmSdaSqLtSkoFS6LKzg",
+"https://www.youtube.com/channel/UCBeKP0w5bWqrtWDaec5vgcQ",
+"https://www.youtube.com/channel/UCuZiDtQBBl_5_xwtxao4CNg",
+"https://www.youtube.com/channel/UC3gpmUJTin3TUAXCsFTNxQg",
+"https://www.youtube.com/channel/UCInTYdtirO8Lt3GvPTG6t7g",
+"https://www.youtube.com/channel/UCAW8Td1dNZA8M-g8s6TuznQ",
+"https://www.youtube.com/channel/UC6TkWcrYu_S1bq5e2rIRrsg",
+"https://www.youtube.com/channel/UCIggAJBmOp5titMwtgSzAvA",
+"https://www.youtube.com/channel/UCG0jgVPru_x-cR-SgKlttIg",
+"https://www.youtube.com/channel/UCvzidIk4LzfL0_evGaOok4g",
+"https://www.youtube.com/channel/UC3vXX-VgBz8otqqqyGTeTxw",
+"https://www.youtube.com/channel/UCqbwGPYeoaucokuLEYM67Yg",
+"https://www.youtube.com/channel/UCob1jI1g7ex_olpBKNSk0Nw",
+"https://www.youtube.com/channel/UC1h5fCMjXwGU1rEDuUYLICw",
+"https://www.youtube.com/channel/UCC5ZJAwQjow0GN9P_MTgndw",
+"https://www.youtube.com/channel/UCOgNJAmv67dZTa5NtExIgQw",
+"https://www.youtube.com/channel/UC3tFz6HSjZQDiVBham_P3Eg",
+"https://www.youtube.com/channel/UCHiby_Kd9gnN0MIi_keyyHg",
+"https://www.youtube.com/channel/UCVwEQ3cdukWF0Ol_Oe-uaEw",
+"https://www.youtube.com/channel/UCTQ_-Ka5HuEW0eAHlFXyqsw",
+"https://www.youtube.com/channel/UCxhTwJz9rVscYGFvwgN2E-g",
+"https://www.youtube.com/channel/UCosG6jeg3da7UzZ4veEYmSQ",
+"https://www.youtube.com/channel/UCLEzyso-8SSoNFXkqXfuCeg",
+"https://www.youtube.com/channel/UC8e2nW1N0ZAnLcjr0GTVeTQ",
+"https://www.youtube.com/channel/UCvu9CrnBA4-Nfez9D6lc_0w",
+"https://www.youtube.com/channel/UCdxYYQY4KtifrTyM5i1g-TQ",
+"https://www.youtube.com/channel/UCLJ1ytaQHXJzvaG8ZmhLDPA",
+"https://www.youtube.com/channel/UCeSrmP5N5FGzgmrqSKXQt5w",
+"https://www.youtube.com/channel/UCzJlRrzJwe5vzjpdQdsjBKA",
+"https://www.youtube.com/channel/UCKD14iZr7MAyrd53LI59qTA",
+"https://www.youtube.com/channel/UCNH8lhBrAcxuqI8DRJYmFAg",
+"https://www.youtube.com/channel/UCogwrMBf6mPF-kr8E3yQbNw",
+"https://www.youtube.com/channel/UClEMQIjMflzV-0kpy0p3-SA",
+"https://www.youtube.com/channel/UC4mGejm03YHxMWO9ALX8bLg",
+"https://www.youtube.com/channel/UCHFPtyt13YXWUnnpLw3s9LA",
+"https://www.youtube.com/channel/UCQIeroLB09mW-vrxaJ_sDJg",
+"https://www.youtube.com/channel/UCnHYZ30754IpZdkbbmhEoFA",
+"https://www.youtube.com/channel/UC--S_DQ56tVKhphmUkt20rg",
+"https://www.youtube.com/channel/UCp5-e5J37ShKUS6SuN1uzIg",
+"https://www.youtube.com/channel/UCTK5ZEsOu8B-sVGoKQhtj-A",
+"https://www.youtube.com/channel/UCcQJcokA3TCwMEJ1pz0Xz2A",
+"https://www.youtube.com/channel/UCv0JLCfplfHio74lQWfVqrA",
+"https://www.youtube.com/channel/UCUOkmopE7wSMHfxPZBDBe6g",
+"https://www.youtube.com/channel/UCdDxhRAD-d1dKmiceq_dr4Q",
+"https://www.youtube.com/channel/UCSk6MkWXdSGO8C1IrnPzQPA",
+"https://www.youtube.com/channel/UC9K6OeQIHi0tpWhu-Si1orA",
+"https://www.youtube.com/channel/UCgHyqyJlOt0LBU-STEuBpeg",
+"https://www.youtube.com/channel/UCmp_PrKwC6gvOxKs6ZCX44g",
+"https://www.youtube.com/channel/UCFLHuFUfATkO_somdcWtcbw",
+"https://www.youtube.com/channel/UC_4ZY6KJHOckuLz5aSNcrTg",
+"https://www.youtube.com/channel/UCmLD9g4Honnj8J5TTkvtRKw",
+"https://www.youtube.com/channel/UCU5MLYSgPoEF9DNaRH76l9A",
+"https://www.youtube.com/channel/UC5Uicjy4xWXaUpge6N3_OpA",
+"https://www.youtube.com/channel/UCc64Jpuf3BjYLj29u9d2mWg",
+"https://www.youtube.com/channel/UC0iFrJVs0063aLB9nYaYu-w",
+"https://www.youtube.com/channel/UCcb9SlwjXPYB_mc0vL85DwQ",
+"https://www.youtube.com/channel/UCeAefFPfGbLsOSYAbP3iINA",
+"https://www.youtube.com/channel/UC4SwuYrq707pSDAfMw882tA",
+"https://www.youtube.com/channel/UCGXGrEDZER6o6HvL9bPE-RQ",
+"https://www.youtube.com/channel/UCKWepvwoeFQ48_4_1ElUdUQ",
+"https://www.youtube.com/channel/UCCfbPDoaGSFIGHmVV-OcZfw",
+"https://www.youtube.com/channel/UC9xRASftTDa6mOql1OcjzXQ",
+"https://www.youtube.com/channel/UCB-FUsxnsnquWd31BY4qoBQ",
+"https://www.youtube.com/channel/UCAHcpueYKn9Wysu-GmyAQOg",
+"https://www.youtube.com/channel/UCXxn8H64Xd1zeUSGmV5eR_w",
+"https://www.youtube.com/channel/UCdpThhqyXpIHRu_ZuHqMjiw",
+"https://www.youtube.com/channel/UCH7fTKVSLnN067-ykbriViw",
+"https://www.youtube.com/channel/UCb80YayjbyHKJSDrnhVZ3jw",
+"https://www.youtube.com/channel/UC56BGiOzNXSw3TRNWX44eNw",
+"https://www.youtube.com/channel/UC0DTl0if08WfGhEpbEs96Iw",
+"https://www.youtube.com/channel/UCtXv5Q8aqchkIVN06kgWxkQ",
+"https://www.youtube.com/channel/UCo4VD0-gK036UC-Ak016vxg",
+"https://www.youtube.com/channel/UCczdFiOJ-OIixvZt9X11IfA",
+"https://www.youtube.com/channel/UCb0oYunM5Nuf4SxAhQ4ma3w",
+"https://www.youtube.com/channel/UCf92EkMDlBypA6mK7eczPjA",
+"https://www.youtube.com/channel/UC_Iec-zdxcAXXYpyyQJbPwQ",
+"https://www.youtube.com/channel/UC-tJN9C0EvzSYpXu_ncwpRA",
+"https://www.youtube.com/channel/UCbzWt3-ATFWiAJdiVNoWdAw",
+"https://www.youtube.com/channel/UCAqKj7gzf2msfb14IsDFxCg",
+"https://www.youtube.com/channel/UCpvMIswwsFd8bdQhtsxJigg",
+"https://www.youtube.com/channel/UCBuTIUUPSFmZMCMCfOp6CBw",
+"https://www.youtube.com/channel/UCYVs7gKqCHVaO5nFNiJNSdA",
+"https://www.youtube.com/channel/UCa9L_lzuDXnyDLh0YByIDbw",
+"https://www.youtube.com/channel/UCNkUrN2NzyVoyoTPY7P970Q",
+"https://www.youtube.com/channel/UC-wlOrSsPcXVQDL0YWj6KUQ",
+"https://www.youtube.com/channel/UCLEJ6hg-wksAuBQ5ZFLbR5A",
+"https://www.youtube.com/channel/UCM439c79E2F4BqnxaeDxcfQ",
+"https://www.youtube.com/channel/UCV_-8wUeharBhXz1w3xYU5A",
+"https://www.youtube.com/channel/UCGLzKnvzVf6328ZrPcNZ6QA",
+"https://www.youtube.com/channel/UCuAN5Mzc4FKYHIWyJFJFHGw",
+"https://www.youtube.com/channel/UCq8aE0jZDPpyot_GOa8Mbig",
+"https://www.youtube.com/channel/UCuWR7nfv7N3vZlEZ-f9alKQ",
+"https://www.youtube.com/channel/UC3NFoeVUn7_UErRDyyj4Ojg",
+"https://www.youtube.com/channel/UCwRMCxjewpMTT4JkscSy5AQ",
+"https://www.youtube.com/channel/UCeQIvAXjaSEhYU5qdjwJirA",
+"https://www.youtube.com/channel/UCxXlsYoJ4Ve0XM4WoXGEhsg",
+"https://www.youtube.com/channel/UC_yuHQPpiB44dBsXhh9sAZA",
+"https://www.youtube.com/channel/UCSmlVkAymS52bDzXjyn538Q",
+"https://www.youtube.com/channel/UCfLzNhfhVx2B0LrJlyc7BfA",
+"https://www.youtube.com/channel/UC_RX4maAoG9u3KgDee7CDPA",
+"https://www.youtube.com/channel/UCit9U4hEYAZDnQGce4FFRRQ",
+"https://www.youtube.com/channel/UCoib2xrLkNTlSQb_rPqo72Q",
+"https://www.youtube.com/channel/UCr0Ze4SR3MHXAgz1TvRYL7Q",
+"https://www.youtube.com/channel/UCf4viDuz6nCkFM8iKdjYRGw",
+"https://www.youtube.com/channel/UCDP4jUXKzmkUptUB40ji7fg",
+"https://www.youtube.com/channel/UCZ9zZ69hR45xJtemN0t_ohg",
+"https://www.youtube.com/channel/UCf6j-j2gIg0lF4vfTXdO9Qw",
+"https://www.youtube.com/channel/UCq38HPawlQ9LG6plPDccrog",
+"https://www.youtube.com/channel/UCzZTFYbOF9rPxrBP2X4wUnw",
+"https://www.youtube.com/channel/UCe_jacchm_2GxrmCdfVNkFw",
+"https://www.youtube.com/channel/UCJBXMWSyTsAhLHRgilq2B9A",
+"https://www.youtube.com/channel/UCVtCjLpuE-qjC6Ib6Qj4XcQ",
+"https://www.youtube.com/channel/UC8Lm_ByMMUkMbNjnZApViiA",
+"https://www.youtube.com/channel/UCjOGlQyvroMXo_cLgFQvGQA",
+"https://www.youtube.com/channel/UCgkJ_Xhqv2Z25UqYBmRioYw",
+"https://www.youtube.com/channel/UCcHih7jtepbdd4wzCIMvo_w",
+"https://www.youtube.com/channel/UCjO5Tg3xpxqY1hrCWuCWUOw",
+"https://www.youtube.com/channel/UCtkgzltE8rozRNVWvng9A0Q",
+"https://www.youtube.com/channel/UCUR2URTIoNhFdDJYYlzj3eA",
+"https://www.youtube.com/channel/UCJZVS6f_NZGuUzclqrrXVXQ",
+"https://www.youtube.com/channel/UCxh47JmzJ-pNdMIfhD_65sA",
+"https://www.youtube.com/channel/UCPuEgqcutS2b5SQ0ukHThYw",
+"https://www.youtube.com/channel/UCLULndRrWFAmfG6H09R6-xA",
+"https://www.youtube.com/channel/UCZ7bOYVNHE6Ek5lBrcnPQcQ",
+"https://www.youtube.com/channel/UCB2X3MjjNyMHM3-Acb-WwYQ",
+"https://www.youtube.com/channel/UCTfwErbBml-DSFTF1_67rsQ",
+"https://www.youtube.com/channel/UCiwLuj5O9_Qu0LHbyBgMBbA",
+"https://www.youtube.com/channel/UCd2X6duyNfzVPrmYjoGgL_g",
+"https://www.youtube.com/channel/UCUmrQJPE7c3-D9WGo8RTE2A",
+"https://www.youtube.com/channel/UC6KOo4PVCAfsLPoSSEPbk1w",
+"https://www.youtube.com/channel/UCn6l1e8lujdLlux8frqp8WA",
+"https://www.youtube.com/channel/UCXB3HKGmK-qu307hWnuyhDw",
+"https://www.youtube.com/channel/UCtk_mY-Dv3Mju_vbKQYMYRQ",
+"https://www.youtube.com/channel/UC0T2qaI7lqu4LZxZgOBybIg",
+"https://www.youtube.com/channel/UCP3EcQWMBkgYpe9lSH9ayqg",
+"https://www.youtube.com/channel/UCGOtjQYRYs_csfElZtL9U6Q",
+"https://www.youtube.com/channel/UC1TPXJorjTuhQ59xA3X2OOA",
+"https://www.youtube.com/channel/UC1Fjh2z270sQmoCklRhu7oQ",
+"https://www.youtube.com/channel/UChsTVW0aSc0Rv5MRBP2FGDQ",
+"https://www.youtube.com/channel/UCDVvZXONBDkefLlHB6Sq8iw",
+"https://www.youtube.com/channel/UCTWfWSKPo0Ho3jOotE0fXow",
+"https://www.youtube.com/channel/UCRmJ5CHfYEgH2flHIHdUd4w",
+"https://www.youtube.com/channel/UCo3yGoQCdoIp47_6P4TnsfA",
+"https://www.youtube.com/channel/UC5Q7-FM_50rhttsHGLVMr5Q",
+"https://www.youtube.com/channel/UCtTnyH2MgtHMjTlrwZEcIuQ",
+"https://www.youtube.com/channel/UCZ-SyQqcLOx9-L1TZFOnhxQ",
+"https://www.youtube.com/channel/UCw5IA5rVSx_aekfLDrllepw",
+"https://www.youtube.com/channel/UCIJKtUKyNaaWw6Bqg2pdXFg",
+"https://www.youtube.com/channel/UCfmUhHXAxCQV8fQg5GytSjw",
+"https://www.youtube.com/channel/UCN2bnlbpaYTcSYA7YADrQ2A",
+"https://www.youtube.com/channel/UCk7zXPyTazmxgexbyraZbtg",
+"https://www.youtube.com/channel/UCZVcFhJOYUkfy4E4GRvymXw",
+"https://www.youtube.com/channel/UCLCij7vOw9uEtvjB_F-RLOA",
+"https://www.youtube.com/channel/UCwy2IL6UTp7VegNrq_PkFqg",
+"https://www.youtube.com/channel/UCayU9U1E6bbgcgWH4LZJBSw",
+"https://www.youtube.com/channel/UCxPZur6bWx8yAYRp7nDe0ew",
+"https://www.youtube.com/channel/UCbVvvfd6X2nBk2T4qeN91Bw",
+"https://www.youtube.com/channel/UCurRrHxPsX4e8TiGfMFeGow",
+"https://www.youtube.com/channel/UCRKW1ox7WxZ6ppwEabOjFPQ",
+"https://www.youtube.com/channel/UCY1pHVcI6-X4ULav5A5-aTA",
+"https://www.youtube.com/channel/UCFuIiGAEGK9R4KY4kWA8xbw",
+"https://www.youtube.com/channel/UClX7uwAlBCGGFF0v9vhgzKw",
+"https://www.youtube.com/channel/UCiUPh8dSZV3N89YWCL_Pzlw",
+"https://www.youtube.com/channel/UCsbbXSsyDJpWd-7qrPLXeTQ",
+"https://www.youtube.com/channel/UC4mgKteaCcpQgtk0Nd15phA",
+"https://www.youtube.com/channel/UCDdYdLWzMfo7QC2QwVpC72Q",
+"https://www.youtube.com/channel/UCBk7j9dAZA2mPM1yfrkJZhg",
+"https://www.youtube.com/channel/UCpC2rYjE9nZoxYy_ojyhUUw",
+"https://www.youtube.com/channel/UClS9OMwqzYhDE_QCHjW1VOg",
+"https://www.youtube.com/channel/UCbzFRBIejZsrtHi4EofJDjg",
+"https://www.youtube.com/channel/UCOcFjNJ8LIR_LCuVGV8ohIw",
+"https://www.youtube.com/channel/UCibxKPvhrJLmz6NbNEyLYzA",
+"https://www.youtube.com/channel/UClcoh7_0SbFiEtR4YbS6fBg",
+"https://www.youtube.com/channel/UCq2RARJJSu2Ta-LJEdGExAQ",
+"https://www.youtube.com/channel/UCrVjmhxglfngnuZl3ZbK7Mg",
+"https://www.youtube.com/channel/UCZstATbPujmn4bgdFW5uOVg",
+"https://www.youtube.com/channel/UC0roZii5hNRabhvcB1acvGA",
+"https://www.youtube.com/channel/UCRjUKx_QMxCKBnlvEp5-_zg",
+"https://www.youtube.com/channel/UCuHYjdFNXZRBfFzZY3fqDiA",
+"https://www.youtube.com/channel/UClRdYVxsHr4_LK_4Na38HlA",
+"https://www.youtube.com/channel/UCRZmrUQBUrrGpLdQXU_qu0w",
+"https://www.youtube.com/channel/UC65vjML1CpDfztprFzy5Yog",
+"https://www.youtube.com/channel/UCdR5mU8v5My2siQhAvGXomw",
+"https://www.youtube.com/channel/UCwUiTjV0pEAMAR9HlphSWFA",
+"https://www.youtube.com/channel/UCLP7hdbNJ4G2JFLyd0KY1Sw",
+"https://www.youtube.com/channel/UC_G93xikvWjf9LBT_8N45iQ",
+"https://www.youtube.com/channel/UC7bT2Z9zlif_cH-V63DlRmA",
+"https://www.youtube.com/channel/UC3BITTgjl9sOrAc0tSsfExQ",
+"https://www.youtube.com/channel/UC1KUsGxCclJHN8fUwhbPbqQ",
+"https://www.youtube.com/channel/UCIccas2y-bVkmW48vT6PVTw",
+"https://www.youtube.com/channel/UCryvNRktZm2r62pyHKz2VNA",
+"https://www.youtube.com/channel/UCP7DDSfsGhOXVmBGMRAa9_w",
+"https://www.youtube.com/channel/UCp-5igTsFTkRhaULuDCJBoQ",
+"https://www.youtube.com/channel/UCCCVYgEzGCGvuUuCuff4cAg",
+"https://www.youtube.com/channel/UC-JEDp-JhakwnllFSI_xy2w",
+"https://www.youtube.com/channel/UCPt8-60mvRnsfndIBL0LB9g",
+"https://www.youtube.com/channel/UCY-bvAcq3J7By6ZByX-euqw",
+"https://www.youtube.com/channel/UC2l5sRk34rMIqEWe6HhRkdw",
+"https://www.youtube.com/channel/UCcpHopVqXjcluW4IwaqzJ-Q",
+"https://www.youtube.com/channel/UCj2JwH06L-DoJW9JmiHtKhQ",
+"https://www.youtube.com/channel/UCcfvzGEOpr2Hvg0R3OfJK-Q",
+"https://www.youtube.com/channel/UCKmpRYfmWmvM2mQdvGf1phw",
+"https://www.youtube.com/channel/UCRYx96PbyNZOCAUS9RcNFXw",
+"https://www.youtube.com/channel/UCK3QKIx-qm4nbKZIhq420cQ",
+"https://www.youtube.com/channel/UCixjPQsm9X3-L8FGe9Dwqcg",
+"https://www.youtube.com/channel/UCSiZps1lmWuystSFcc_uyxg",
+"https://www.youtube.com/channel/UC2NO13n3G27IrPYb9Vo1WYg",
+"https://www.youtube.com/channel/UCRM7O7haeJjBqkG4BhMXrcA",
+"https://www.youtube.com/channel/UCfRMWUPWbkZ0RbWYkCm8dyA",
+"https://www.youtube.com/channel/UCl4y3huvM11ibriPzWz_OYA",
+"https://www.youtube.com/channel/UCtMs-Q-3av0YOUkOiqmad1Q",
+"https://www.youtube.com/channel/UC8cF-dknulZTk5crPJSimWQ",
+"https://www.youtube.com/channel/UCJfA_K1uYlwbB-7vlSnwONA",
+"https://www.youtube.com/channel/UCNFGXab6LUf-xX3J0KkPR0g",
+"https://www.youtube.com/channel/UCObtShC6FwPE5BXUFWoF6Zw",
+"https://www.youtube.com/channel/UCanCgMmGlv2fmtO8Why0hVA",
+"https://www.youtube.com/channel/UC9VmnPM_uc1ixl3XSkkoxXw",
+"https://www.youtube.com/channel/UC_1IyGbMhGIr7yYgIem7Z0w",
+"https://www.youtube.com/channel/UCjOKnyhQGhZYitzv3cpYO5A",
+"https://www.youtube.com/channel/UCk0ABGoUzVmiYWDOReMINrA",
+"https://www.youtube.com/channel/UC426nAWMsa52ZwPo7Ihpf6Q",
+"https://www.youtube.com/channel/UCGZuJXl3SL_692eVUPZInZg",
+"https://www.youtube.com/channel/UChmFJCUJtCJ9n7o283cjJXw",
+"https://www.youtube.com/channel/UCeJWH72d6XumzN_Wm8YETSQ",
+"https://www.youtube.com/channel/UCZk2VOmb0YmcnnPnsIogcKw",
+"https://www.youtube.com/channel/UCqbGTvusYPheIWkFHSqBZGQ",
+"https://www.youtube.com/channel/UCCR96gLW5yPl9SzdJjrkUWg",
+"https://www.youtube.com/channel/UC-fujoJkUhVNSSE-Wkmk9DQ",
+"https://www.youtube.com/channel/UCxy9jObK83-ViC58G7IpR5A",
+"https://www.youtube.com/channel/UCx655zmOZQOb7lM7qaDmvzg",
+"https://www.youtube.com/channel/UCNbterq3rrH23iStO5EpV0g",
+"https://www.youtube.com/channel/UCoka-UeU2QCARLBm-uR2jvg",
+"https://www.youtube.com/channel/UCuZT7wycxYlB4PReZL6UwUg",
+"https://www.youtube.com/channel/UCnqonIYFxV5mOYZwhi2uoNA",
+"https://www.youtube.com/channel/UCUnkYU4MxA6VIcAxr0xqV4g",
+"https://www.youtube.com/channel/UCGTKCF7hR6nX3NBolCKZ3Qw",
+"https://www.youtube.com/channel/UChecxAtWoPtHOg_6eRHtaXQ",
+"https://www.youtube.com/channel/UCdl318KQ61o4uvXT6T4SnFA",
+"https://www.youtube.com/channel/UCGc6ooK4QfctyING3t20JkA",
+"https://www.youtube.com/channel/UCgnG5gjyLd3KmjWLjA2vk_A",
+"https://www.youtube.com/channel/UCgCAmHE32wEDcBfwoXltZhw",
+"https://www.youtube.com/channel/UCyx-D18iLBmiRNsF7YEgyVA",
+"https://www.youtube.com/channel/UCzW4UHU4PaKwgjM0pNTi-2A",
+"https://www.youtube.com/channel/UCimvetzfCMzhB3tqz4H5zhA",
+"https://www.youtube.com/channel/UCsfEaGdS8LRlF0Mdt1dyKcA",
+"https://www.youtube.com/channel/UC6L4bdR6aebiOh20duTENXg",
+"https://www.youtube.com/channel/UCD_3lMXO6iKWe-ccfLkuodw",
+"https://www.youtube.com/channel/UCSU4M0uHNN4giKe1C4CQMfg",
+"https://www.youtube.com/channel/UCNrSTztAaKLrUPiiy12KtzA",
+"https://www.youtube.com/channel/UCsmkFU0d-bhn2qAXOb3pLCQ",
+"https://www.youtube.com/channel/UC5ifzl9evqNFSHgUv17Dkjg",
+"https://www.youtube.com/channel/UC3q4ffli8JvoGfLxcrNl2Bw",
+"https://www.youtube.com/channel/UCv63qQmDuRanukErMAAy-aA",
+"https://www.youtube.com/channel/UCZwIdbl7_4u1z6m9R_flaFw",
+"https://www.youtube.com/channel/UC5u_JUetRrWoKd_GIdzep3A",
+"https://www.youtube.com/channel/UCiMRcT-2P-cWf4yTMWTdj7Q",
+"https://www.youtube.com/channel/UChGGSkjEG--iXwMIFKlVJZg",
+"https://www.youtube.com/channel/UCRXcRJBguDtJPZEr1-HKNkQ",
+"https://www.youtube.com/channel/UCa6HZWrueIMtktk7j9kQz2A",
+"https://www.youtube.com/channel/UC2yU8-YAKzW-jJx_Yssiu-Q",
+"https://www.youtube.com/channel/UCv3u3SC4bsmfKHzetEdQBMg",
+"https://www.youtube.com/channel/UCIUtXwMGydp-Fssg3WFSYxQ",
+"https://www.youtube.com/channel/UCMJwcunmPyyHNy4iLA8A0vQ",
+"https://www.youtube.com/channel/UCHIGa19NJyrMf5IOr1fzSlQ",
+"https://www.youtube.com/channel/UC1Vf3UKEWLLKAViYxcdD4Og",
+"https://www.youtube.com/channel/UCFOffDbj9kFT9HNyykUzefA",
+"https://www.youtube.com/channel/UCHnnBzYyjS3gsjDWZ1pCjQg",
+"https://www.youtube.com/channel/UCIaGHrucv6pm_pn4liMFgfA",
+"https://www.youtube.com/channel/UC9pcBGoCZnHfovzxC4ScmBQ",
+"https://www.youtube.com/channel/UCzgoZDDMpvzM3LWtvKfaDzQ",
+"https://www.youtube.com/channel/UCbmTyAWdD46Rh0a5uEUbScA",
+"https://www.youtube.com/channel/UCWcNZ7I65PloykfPAVsw5Jw",
+"https://www.youtube.com/channel/UCrVjDOvNYlwwIAIoy75CZQw",
+"https://www.youtube.com/channel/UC4jOM184eyv1np-KmX5fBkg",
+"https://www.youtube.com/channel/UCPMS8tKU6K-9V25lNDToJ6Q",
+"https://www.youtube.com/channel/UCxQuVQmePZzSY_q0zykcuPw",
+"https://www.youtube.com/channel/UC0sbVzxTTfIehAkcZwK04Vg",
+"https://www.youtube.com/channel/UCs4i17cwXWFAyTX_gmRk-QA",
+"https://www.youtube.com/channel/UCUGHI7PxcjWkatoR96VAWiw",
+"https://www.youtube.com/channel/UCHB5hkAQcRJ9czRjG4e7y7g",
+"https://www.youtube.com/channel/UCKsWqME5zM-16iapaef0lPQ",
+"https://www.youtube.com/channel/UCfDLKc97bVIraae32rtVr6A",
+"https://www.youtube.com/channel/UCrIMnBr36QF_ojX9vA29oiQ",
+"https://www.youtube.com/channel/UCRMPggCnrFnSEO5lwM5MtiA",
+"https://www.youtube.com/channel/UCcFzS9UFnv5eDQxtn_onw5A",
+"https://www.youtube.com/channel/UCRmGmg69ThAj95Il0Q9kk8Q",
+"https://www.youtube.com/channel/UCctPJ-b4LPMxbKYhCCknzgw",
+"https://www.youtube.com/channel/UCVdnWNdpgLuBmvz173gTOAw",
+"https://www.youtube.com/channel/UCxsdGpzXSkFWGpyJFWuCm9g",
+"https://www.youtube.com/channel/UC5Q2cDEAaz62k68x7bJU2Pw",
+"https://www.youtube.com/channel/UCTgKcuFzSKyTJlvpQuyxZMw",
+"https://www.youtube.com/channel/UCPPu8Jiy9D0n9Qx8B48t1uw",
+"https://www.youtube.com/channel/UCU8J8YE8Ol4HmKiiYmov-7A",
+"https://www.youtube.com/channel/UCUWWm5imrXY83Pn8Ti3f_-g",
+"https://www.youtube.com/channel/UCBMKjNSHtBVhFKyrzr8_bXw",
+"https://www.youtube.com/channel/UCIlHmOHhtLTVkPV-XN9nTDQ",
+"https://www.youtube.com/channel/UCAQ5ZUod0XVF7c9rM72C_ng",
+"https://www.youtube.com/channel/UCyK4oT0edjVQWVEQJnyTbHw",
+"https://www.youtube.com/channel/UCP1mWPlJ2VkAhgRDXFCi3QA",
+"https://www.youtube.com/channel/UCykuJ0oEGtXOJ_so3CqhSBA",
+"https://www.youtube.com/channel/UCUmYYbldQPA2eUmK74CpWOg",
+"https://www.youtube.com/channel/UCYCEhSi3xBC6UXKJmDMSe1w",
+"https://www.youtube.com/channel/UCvv2_05JypcMs9-IwdPPnFg",
+"https://www.youtube.com/channel/UColmS79u75TdW4sk8Kjk-qA",
+"https://www.youtube.com/channel/UCx0QkdHJI_Vkvzq5W1QNKCQ",
+"https://www.youtube.com/channel/UCur1tqHVTLA-bht1p650Eug",
+"https://www.youtube.com/channel/UCYOS6co7hOwzpn9UixDxtJg",
+"https://www.youtube.com/channel/UC2FOHp_Hr2efE5khFz-PF3w",
+"https://www.youtube.com/channel/UCDdZ0l-QlLQF-Yo0rWEoe3Q",
+"https://www.youtube.com/channel/UCmuOm0bAWuQdzY8IlGLZPvg",
+"https://www.youtube.com/channel/UC9F3vwo2HD1_EOXNrd6D4Xw",
+"https://www.youtube.com/channel/UCOfttA2L4ArL4EpU0UHIvLQ",
+"https://www.youtube.com/channel/UCLQ29ibjQS5qhPMOI-QNfvw",
+"https://www.youtube.com/channel/UCoOiGB7VM1Sy6zG9uMsOiIg",
+"https://www.youtube.com/channel/UCNij904V3ZDZ5KU00Wdvgtw",
+"https://www.youtube.com/channel/UCypBgUbYFIyolaf7CjN1Mpw",
+"https://www.youtube.com/channel/UC5fn-arrXj9iS8ZjkcxvZJw",
+"https://www.youtube.com/channel/UCSOpwYIiDsx2_1pT_XMhvcg",
+"https://www.youtube.com/channel/UCWloPKq_k2B29YqhteEOoXQ",
+"https://www.youtube.com/channel/UCQFLMmySG4Vrm-Vxks2_B-w",
+"https://www.youtube.com/channel/UCVPv_8IbPdODQfapHBXifNw",
+"https://www.youtube.com/channel/UCD4erZH3R36UBpOZJi8MJFw",
+"https://www.youtube.com/channel/UCQac7NeUrCLFbi_5SNRqowg",
+"https://www.youtube.com/channel/UCa_2e2jySq2EMJlLG6xRThg",
+"https://www.youtube.com/channel/UCnCnIMITqS7ut15hDeMg4dw",
+"https://www.youtube.com/channel/UCufud84SIfTVHd6eAZH1-LQ",
+"https://www.youtube.com/channel/UCrsnjAohzzCaFwxUGbhPnoA",
+"https://www.youtube.com/channel/UC7qSs6UWA1Otmk_YY4z85FQ",
+"https://www.youtube.com/channel/UCy5_z08H1IpUXssGMQ_vn3Q",
+"https://www.youtube.com/channel/UCgNVBz_ft2cNFF1sUNGl00g",
+"https://www.youtube.com/channel/UCLnsqyo3BSXOCwy356zNykg",
+"https://www.youtube.com/channel/UCeBS7GTOyEnxSTB2azLHpCA",
+"https://www.youtube.com/channel/UCQXOSt_iM0M5glZ0gJwoF6A",
+"https://www.youtube.com/channel/UCiL6Gm88ZET0LoM0AoMOW5A",
+"https://www.youtube.com/channel/UCqvQjQ9h1jPdOCpE2CsjCXw",
+"https://www.youtube.com/channel/UCgBTM1onWPK1uLKXoH3hDRA",
+"https://www.youtube.com/channel/UCkyPmsWBdHrcyjV3QwJ9Ohw",
+"https://www.youtube.com/channel/UCFP8Fq_7_C_KU-L1wlFpfdw",
+"https://www.youtube.com/channel/UC9CYBJDbWgMGk0GnYJNOsnQ",
+"https://www.youtube.com/channel/UCvsg4XNnGieZ-Gt9uunPnhw",
+"https://www.youtube.com/channel/UCrStsqOMYRgqY7-wiin6PpQ",
+"https://www.youtube.com/channel/UC-wWNVYnJKoxJ6F-JczcNRg",
+"https://www.youtube.com/channel/UCN4mDR7rxJjC2Go4tnRxoRQ",
+"https://www.youtube.com/channel/UCohiseZZmCnFoXpzTGGcaKQ",
+"https://www.youtube.com/channel/UCRTwmHyVDEz9ohyEk5AzH1g",
+"https://www.youtube.com/channel/UC1pb0hQrvKSt8RpgA7LGMvA",
+"https://www.youtube.com/channel/UCkIuJlR_Q5ME19OGa1Jv4Ng",
+"https://www.youtube.com/channel/UCMUjmBPdrpOdUci5IU3cXkQ",
+"https://www.youtube.com/channel/UCblC7S4GFJ8mi4RunlrXyDg",
+"https://www.youtube.com/channel/UC5Q4oJk4h6OjU5yg9Aq3BFQ",
+"https://www.youtube.com/channel/UCezhNwirrrHoeIN7LVi0nWw",
+"https://www.youtube.com/channel/UCrhaUGmskPr0YGS7MZ39dSA",
+"https://www.youtube.com/channel/UCrkvkz06VOfJ_5wCUyZbsRA",
+"https://www.youtube.com/channel/UCKk4qWpIEaK04p875oWIQ-A",
+"https://www.youtube.com/channel/UC7ElewpQf824VkDKGy2hnWA",
+"https://www.youtube.com/channel/UCAxBJBdiBgaDcYtYyzZhYUg",
+"https://www.youtube.com/channel/UCIF3DGTJMwCpbWjcJJ_7OBw",
+"https://www.youtube.com/channel/UCPip-Fel2vPxgW7XVk8h2aA",
+"https://www.youtube.com/channel/UCnUN4dqj-dXHUYStr8Mk9Rg",
+"https://www.youtube.com/channel/UCBUNwynCrlCcGtr2RMObhtg",
+"https://www.youtube.com/channel/UCFCw2aewAp60BgIOap2rhTg",
+"https://www.youtube.com/channel/UCHgqWJqAfbEffX2opJcD_RA",
+"https://www.youtube.com/channel/UCyQ1kZiRelspDGcOMxHozOQ",
+"https://www.youtube.com/channel/UCzUeMjz8q0KWoD72vFVws7g",
+"https://www.youtube.com/channel/UCYHmdbzcNYxGbUDgp3wdaLQ",
+"https://www.youtube.com/channel/UCkxa-6_3fmuVM_8HVGeMQEQ",
+"https://www.youtube.com/channel/UCPJo7gBbfDfK7_iNjIYy34Q",
+"https://www.youtube.com/channel/UCuGGaRxAaG481w01-S9OHSw",
+"https://www.youtube.com/channel/UCvUFIl9NaqlAri_iZq8A96A",
+"https://www.youtube.com/channel/UCxKL-cs8gvrhN0ZhzG9AT0Q",
+"https://www.youtube.com/channel/UCcDZQadsGyprrxjTDpgXMOA",
+"https://www.youtube.com/channel/UCcHY70p79p7m0mqeM1I9RJw",
+"https://www.youtube.com/channel/UC0r6rvL2hGv-FU8OGG-H1FQ",
+"https://www.youtube.com/channel/UCNmuIkIwQMlmp_WrCC0lkIg",
+"https://www.youtube.com/channel/UCbfkZTVVOTs87xR1xDrPylQ",
+"https://www.youtube.com/channel/UCXgLFXdy-ysQoyPj8yFhjVw",
+"https://www.youtube.com/channel/UCXxJrJ3HT-yTg_IyqbQ2Ntw",
+"https://www.youtube.com/channel/UCQLv3Q0iJvVJER_U8sZay7Q",
+"https://www.youtube.com/channel/UCuQd-7QLywt9vQe0eh-xxSw",
+"https://www.youtube.com/channel/UCdzKkRJL8Tg6MX5N_g4nABg",
+"https://www.youtube.com/channel/UC1nJiYZbUHl5VtDVdgZ3ynA",
+"https://www.youtube.com/channel/UCrVr8tK6fVPEYY9BXHYwcqg",
+"https://www.youtube.com/channel/UC_sdLNovhE-3SPUkqFq_WJw",
+"https://www.youtube.com/channel/UCWp-nZgwX1Edr5YOXGAgmxg",
+"https://www.youtube.com/channel/UCS58KF8-vipLpSDTC0GYqYw",
+"https://www.youtube.com/channel/UCGgoY9xdFXxq6D14PfeCvmQ",
+"https://www.youtube.com/channel/UCPDnn6bDz7uOUG-slMQdiOA",
+"https://www.youtube.com/channel/UCMnI05lE1NcsApbnemoTipg",
+"https://www.youtube.com/channel/UCYxAM8h2FyKq6T5jtDuW7pg",
+"https://www.youtube.com/channel/UC2xQ2Sa3lqeaUYhA6RFdQVA",
+"https://www.youtube.com/channel/UCFUqO6dyH0-Hbi7nuXETbuw",
+"https://www.youtube.com/channel/UCVkCt6fWbHmPLH1rDkaJqzg",
+"https://www.youtube.com/channel/UCumkUkHfoVfxLEfg1M8nTHg",
+"https://www.youtube.com/channel/UCOEv1sHS2pwykwTfmYCFudQ",
+"https://www.youtube.com/channel/UC_OleXQVM2pqrpcq70sqMbw",
+"https://www.youtube.com/channel/UCghQTjs1J7PL_I1nI-WBLGg",
+"https://www.youtube.com/channel/UC-iGCIlwYRA2122-bcCBRWA",
+"https://www.youtube.com/channel/UCQslej1nL7R9SFDZRGBTNNA",
+"https://www.youtube.com/channel/UC7qcsF_sjVdIEdEX9D5NxOw",
+"https://www.youtube.com/channel/UCPQlfdxxHEiCH4I6_yCRomg",
+"https://www.youtube.com/channel/UCVYm8hZ6arm3LpZTxQNCzCQ",
+"https://www.youtube.com/channel/UCD25_Mq9eVqiVMRI785x81g",
+"https://www.youtube.com/channel/UC2G5wQtdLZ4TKIHmFm71inQ",
+"https://www.youtube.com/channel/UCAX8ntaLx2eMppCAxNhz9eQ",
+"https://www.youtube.com/channel/UC1wfd1I_jCLyOd-FJgooJsw",
+"https://www.youtube.com/channel/UCgAdCUhbMCpRExBQk_qs7YQ",
+"https://www.youtube.com/channel/UCFJxal-D5giYuuwApuoGKWw",
+"https://www.youtube.com/channel/UCwZDYPfYKMDOBvRivuZAVUw",
+"https://www.youtube.com/channel/UCE8rPSuR1J5zIJFCpFXDZpg",
+"https://www.youtube.com/channel/UCI8vMkvpk1GOFCqr16MIUeQ",
+"https://www.youtube.com/channel/UCZPXpfe9HGK7u5wpkbnn_pw",
+"https://www.youtube.com/channel/UCAGDuAq4U5wzvExgSirBo2Q",
+"https://www.youtube.com/channel/UCLaYmiMSyYGCEF3pSVSncTg",
+"https://www.youtube.com/channel/UC1bTStdaiEp5Ff8mKWjQI0w",
+"https://www.youtube.com/channel/UCTVE-k9EHlHurBtWt4vwGvQ",
+"https://www.youtube.com/channel/UCsLZoWZh1-4nC_h9OYCif3w",
+"https://www.youtube.com/channel/UCqZIm14mDrNnzt5KFEbDz1A",
+"https://www.youtube.com/channel/UCXYv_4qVaP2569cBbfJgnXA",
+"https://www.youtube.com/channel/UCwkIT4GFECFLTraCAg86R4Q",
+"https://www.youtube.com/channel/UCb8fSlv2hrn_rpb9PTdzvaQ",
+"https://www.youtube.com/channel/UCOnwpLim6PM35Lc_n8uRNWg",
+"https://www.youtube.com/channel/UCBXJYjMPXigbPHDZ21My-rg",
+"https://www.youtube.com/channel/UC_71wYJNRw7OjAscjAf4iNQ",
+"https://www.youtube.com/channel/UCD78KwoUkL9pYy_afvq5asg",
+"https://www.youtube.com/channel/UCY857UPadP8BG8Y_e4-Jwqg",
+"https://www.youtube.com/channel/UCEWolMDv2AsE_Q3rwhc9G8g",
+"https://www.youtube.com/channel/UC4dIZRnazDdyRq9ppcLA0Ig",
+"https://www.youtube.com/channel/UCOkCUQn7huuLMsLOupiO_tQ",
+"https://www.youtube.com/channel/UCAPMmUiQYTl-8MqUfguDadw",
+"https://www.youtube.com/channel/UCA1DQ8YH36gy9_w3A3uNRKg",
+"https://www.youtube.com/channel/UCPKRCufGin2a5pHfgBEXmUQ",
+"https://www.youtube.com/channel/UC6Rdu_CBIas7_d5invCA-1w",
+"https://www.youtube.com/channel/UCa7yTZ8pgON-Fvfkoq4H8uQ",
+"https://www.youtube.com/channel/UC-k0igilkqO1CVGQkHhWRMw",
+"https://www.youtube.com/channel/UCNZpROUbmZvNWBi7DS_5RCA",
+"https://www.youtube.com/channel/UCQ1FHPQt4_HhO2ct1GTmiMQ",
+"https://www.youtube.com/channel/UCQGMP50dYHnHztqtHxUcEDw",
+"https://www.youtube.com/channel/UCy_ghBlq2si1vZclsxhdmaQ",
+"https://www.youtube.com/channel/UCnWBuZaC21X7oU2Pz0GdDkQ",
+"https://www.youtube.com/channel/UCMNH-weEGfyYQ3pupKMrivA",
+"https://www.youtube.com/channel/UC7Fxhc-Uygpbt0kPER6J0yQ",
+"https://www.youtube.com/channel/UCVLuhRu3KbLHYqWVtXKLHeQ",
+"https://www.youtube.com/channel/UCvU5GcI1Xmtx_Xr1rUmUxtg",
+"https://www.youtube.com/channel/UCG5hIAOaRhsdFeopwu5yeDw",
+"https://www.youtube.com/channel/UCIUAgLtS3A7HWjK018styvQ",
+"https://www.youtube.com/channel/UCrxmTMjZouzvvFqf10wrvZA",
+"https://www.youtube.com/channel/UCGQl0PXKnGB2bOSTcbmswug",
+"https://www.youtube.com/channel/UCWz8DRa6nr2gWr8ZY_NzyQA",
+"https://www.youtube.com/channel/UCc35cNHH47VgDxhA0cxCfBg",
+"https://www.youtube.com/channel/UCi145BwKz6hVcQfD_AqA0qQ",
+"https://www.youtube.com/channel/UCTNRkJDuGRK5kQTtc3lAjcQ",
+"https://www.youtube.com/channel/UCsB9PZ1HU51f55kJOY_e_3g",
+"https://www.youtube.com/channel/UChX7GKTepLYCdd0DcsJaRZQ",
+"https://www.youtube.com/channel/UCpK6oURGvTVYAD-ZXR8sVPQ",
+"https://www.youtube.com/channel/UCtq__B7mvB-FFczPIbetCPA",
+"https://www.youtube.com/channel/UC8wbYbFRUp_Gy5NvZR8py6A",
+"https://www.youtube.com/channel/UC4OOsyxs68E4xVUfAoBWEmg",
+"https://www.youtube.com/channel/UCoDUjvgNfBjmwAxuK5MAw4Q",
+"https://www.youtube.com/channel/UCl6ycLWp7wjl8huErusUJ9A",
+"https://www.youtube.com/channel/UCuNDfLrS23-ajwr_RTEfWyA",
+"https://www.youtube.com/channel/UCt3uzkS1pGbN7UMqHbRC_9Q",
+"https://www.youtube.com/channel/UCJWZy6EyOeB_Y532E11xXXw",
+"https://www.youtube.com/channel/UCq_mieXfKYZoo1RxnW-i6YQ",
+"https://www.youtube.com/channel/UCO3Nx2FqfRPKRxvOi1BOdUQ",
+"https://www.youtube.com/channel/UCK8yTPMe-CNAMBS4Vov6l6g",
+"https://www.youtube.com/channel/UC7tBhegcgHMBu2Ij-jSjCYg",
+"https://www.youtube.com/channel/UCNYFLjrhssOP5tnERikYuyA",
+"https://www.youtube.com/channel/UCEfYIh_8PkVN4XtwnH9An3g",
+"https://www.youtube.com/channel/UC2n83SVoOU6cHkOzT-TQSVQ",
+"https://www.youtube.com/channel/UCgwm3xvY70DgvCZwyVICVcA",
+"https://www.youtube.com/channel/UCeyPU0ZmqaSEP6nVtLTfMng",
+"https://www.youtube.com/channel/UCdrBCM-RRo_I2F-sNRbYdvQ",
+"https://www.youtube.com/channel/UCQMIfK8E74bFo7yOFJwDE4w",
+"https://www.youtube.com/channel/UCA3CNG__biH7lQ_pRTZ6DzA",
+"https://www.youtube.com/channel/UCFe03JHSiX5ONAE-u4bEFmw",
+"https://www.youtube.com/channel/UCM60e2eoiPhTiqUiX5sALTw",
+"https://www.youtube.com/channel/UC_-n13ycsAOl6wW7DeB6wPg",
+"https://www.youtube.com/channel/UCJE2CpkR_cArF0RQ9JiZCPw",
+"https://www.youtube.com/channel/UCFQyowbmiJK3oZJMAAdiiCg",
+"https://www.youtube.com/channel/UC5hKlhgMkqSzAOD92ZzJtrg",
+"https://www.youtube.com/channel/UCePPVI6mwEPnvF6p9BW1Bgw",
+"https://www.youtube.com/channel/UCj6D_Ot1ci3WF-m3hrW74gw",
+"https://www.youtube.com/channel/UCWkDMjSl5Wfv80dzmQMofzQ",
+"https://www.youtube.com/channel/UCnXe8HzmTFL8KbUTcrOEtIQ",
+"https://www.youtube.com/channel/UCCZgHPw1bH1Ikr9NRNrTciA",
+"https://www.youtube.com/channel/UChjh4auT2tfJiy1bG5kjquQ",
+"https://www.youtube.com/channel/UCOj7njycKRff446J1jV98wg",
+"https://www.youtube.com/channel/UCCQl5ntgGKD4sV8GnrANifg",
+"https://www.youtube.com/channel/UCSCG-APIn5ix1c7N67x4KRg",
+"https://www.youtube.com/channel/UC9F8ZPulcaGp03i5QTPpe-Q",
+"https://www.youtube.com/channel/UC3J0i1LHNReq748WFm5rHNQ",
+"https://www.youtube.com/channel/UCVrq_A9kM6B-1Fc33lgVYtw",
+"https://www.youtube.com/channel/UCYz5RQEX_-sp4x_sINgLoIw",
+"https://www.youtube.com/channel/UCaTPvKcP6tRS06VML6b4jPg",
+"https://www.youtube.com/channel/UCcKB6QCDd949lRA0DtCdsgA",
+"https://www.youtube.com/channel/UCQzF5Vf7oQxsRDn4AHrDApQ",
+"https://www.youtube.com/channel/UC3BAd_nyKd4UGcZa8KebL0w",
+"https://www.youtube.com/channel/UCOn45YlBNGAnMBuHBgcBsww",
+"https://www.youtube.com/channel/UC8azMTVJK-jqf5IDnfwYqmg",
+"https://www.youtube.com/channel/UC2Oo_h-yzGK4sNc-3J_NJVQ",
+"https://www.youtube.com/channel/UCQQwvGDwu_4DXAO9Id80PNg",
+"https://www.youtube.com/channel/UCdFdB1OSIiyBmI0_71VYqyw",
+"https://www.youtube.com/channel/UCbq2j55H3NmAZOmMRdRHqVg",
+"https://www.youtube.com/channel/UCvcLCzCRYiQ2UMuhE8XI_FA",
+"https://www.youtube.com/channel/UCJSYCcpw7BemVS6zIooLHtQ",
+"https://www.youtube.com/channel/UC-BCA1LKBeYIeplEYo9odhQ",
+"https://www.youtube.com/channel/UCZv1riSH3NgSFNeBjHoy8BQ",
+"https://www.youtube.com/channel/UCqolK3h45d5Z5mmRHRdBs5g",
+"https://www.youtube.com/channel/UCimNqTw-T6xpvgsVetA0goQ",
+"https://www.youtube.com/channel/UCWxvFukUvlcosAHTryCIU3Q",
+"https://www.youtube.com/channel/UCwdhPNAEpbB726fuESkN-bw",
+"https://www.youtube.com/channel/UCi3NQBaHcWQcATHTEGe4OWQ",
+"https://www.youtube.com/channel/UCy6L1DB_Kkcm5o1HndPk7Uw",
+"https://www.youtube.com/channel/UClnSf2Pvur70gXAjNtlTrHw",
+"https://www.youtube.com/channel/UCNUYaHWWIHDyFtI-hKrEyRg",
+"https://www.youtube.com/channel/UCglKtdFo_Tc8McEyLhk-rzw",
+"https://www.youtube.com/channel/UCRf3EK5RNkW-dTuiW3gps6Q",
+"https://www.youtube.com/channel/UCaM973vgxn9Ws1p7eLIe5AA",
+"https://www.youtube.com/channel/UCSMtr16VNrkuk1Ku2p4XruQ",
+"https://www.youtube.com/channel/UC50if8k67VAMTL-jiAjGw1Q",
+"https://www.youtube.com/channel/UCY3BU-1ubprVdODPxIrkdIA",
+"https://www.youtube.com/channel/UCr41kq4KIiZwztyA-9GY9QQ",
+"https://www.youtube.com/channel/UCEkIHUIQPCHfZRC2xLxgO2A",
+"https://www.youtube.com/channel/UCR09r4RoYxssrM3vQ6CukZA",
+"https://www.youtube.com/channel/UC2fL_UvkBqPfldAzlA-aPnA",
+"https://www.youtube.com/channel/UCJ5SoIQTeO7h5yC3Fp4VCbw",
+"https://www.youtube.com/channel/UCdt1Hezk8XCJZSxRonhDqZQ",
+"https://www.youtube.com/channel/UC0al0D1HUVKmFUp0OGYZMrg",
+"https://www.youtube.com/channel/UCJ1V1IfW1ZYyHsWkkXGFmPg",
+"https://www.youtube.com/channel/UCnNS3FMH40DOSDdd7BwGdFQ",
+"https://www.youtube.com/channel/UCs-2eoDKpwrh0pwm38aeMDQ",
+"https://www.youtube.com/channel/UCAWpupdkEAr41KHO9vWZAhg",
+"https://www.youtube.com/channel/UCDNFUm567dQ1AjGNMZgmcCw",
+"https://www.youtube.com/channel/UCanPO54NLWHKSTgKhTcqXdA",
+"https://www.youtube.com/channel/UCBvYT8yrBS-kWLxJ9BKYMtg",
+"https://www.youtube.com/channel/UCOSWCIv8HUk4xzGQEY-lZTA",
+"https://www.youtube.com/channel/UCyCTVHfNzOKaPU_hYbcenMA",
+"https://www.youtube.com/channel/UCA1Upvq-qsk8XJeeOK6hDWw",
+"https://www.youtube.com/channel/UC3x7c9ytNYdC-XnHor1Xe_g",
+"https://www.youtube.com/channel/UCzEmJfG-poSLCht9cHB3wtg",
+"https://www.youtube.com/channel/UCu8rWPftos35hq9sqc9Fjqg",
+"https://www.youtube.com/channel/UCTk5zCke-std3R2r3ck4liA",
+"https://www.youtube.com/channel/UCeL3X1J9fm-FCtjU_vrmpRw",
+"https://www.youtube.com/channel/UCGfdaciC8GcjImWn73Zpuxg",
+"https://www.youtube.com/channel/UCmp-4PedOPHDWGsTxh-KN4Q",
+"https://www.youtube.com/channel/UCiXKnC0WLG_nnZkiPe4wb-g",
+"https://www.youtube.com/channel/UCP19H1kFujbjggBueJ1iArA",
+"https://www.youtube.com/channel/UC4QBp5sdyB85j7nFZDoO_lA",
+"https://www.youtube.com/channel/UCxzz98GuXz8hGybdobPCMsg",
+"https://www.youtube.com/channel/UC8ZbgKRmNnY5Ohf1gy-U4Qw",
+"https://www.youtube.com/channel/UCcGb7NUOygnKse89s-2ylTQ",
+"https://www.youtube.com/channel/UCtn2PAJnAWLyJtiwR1ORNGA",
+"https://www.youtube.com/channel/UCD9ojMrdBldZ3qzwAtlPCsw",
+"https://www.youtube.com/channel/UCvcZw_rb_QYg7CLYlJVFTPg",
+"https://www.youtube.com/channel/UCoSH2-JokHFG4ZdIZ1a-Hog",
+"https://www.youtube.com/channel/UCtDYQMWYk0PA1TRiQq5pELQ",
+"https://www.youtube.com/channel/UC3p3DJxeWnOQVAsTRaqhWTg",
+"https://www.youtube.com/channel/UCcLz9L_JVv7JVPPZDDAo8uA",
+"https://www.youtube.com/channel/UCvTkBpsHSpx9uDHG-iL_vFw",
+"https://www.youtube.com/channel/UCf9PzMh1rF79-XluUK0ZAuA",
+"https://www.youtube.com/channel/UCcRlgH5bY6XNu-NiVOmegHQ",
+"https://www.youtube.com/channel/UCnR2XU9FhzcvWY0Vi0kzawA",
+"https://www.youtube.com/channel/UCKqYgpFYYwzU1UhHSqew1hg",
+"https://www.youtube.com/channel/UCSVI2d90vGCpzFCQbgu07Ig",
+"https://www.youtube.com/channel/UCDfG8VIkwPPgoBCoZiAwS1Q",
+"https://www.youtube.com/channel/UCMlXLO1HTcQs97mOj-mZjdA",
+"https://www.youtube.com/channel/UCGE58s8l7FYbGs5YZzx0f1A",
+"https://www.youtube.com/channel/UCaR9VKHrgi1-O9EoASCevJQ",
+"https://www.youtube.com/channel/UCEgOOuF7IYyNhuhs8OYX1ow",
+"https://www.youtube.com/channel/UCMjscs8vZzIM-L6i6n8Gc4Q",
+"https://www.youtube.com/channel/UCgIFA1W1zp2SM6EMnXO6F_g",
+"https://www.youtube.com/channel/UC9xyOPYaL8G1284rfEDBijg",
+"https://www.youtube.com/channel/UCpaormquPHvRlDHqP5rfjUA",
+"https://www.youtube.com/channel/UCAYrZvwkhMeDm-svsj8sRsQ",
+"https://www.youtube.com/channel/UCrZHEHkEufWGK9G5AFklNwA",
+"https://www.youtube.com/channel/UCNsylxQ2oXxTuu53aHt4-sA",
+"https://www.youtube.com/channel/UCc-HasdFg5sC4nc5e7TUJfw",
+"https://www.youtube.com/channel/UC7sNXZOMK9YnzQV6_z0d7Mw",
+"https://www.youtube.com/channel/UCBZyQgwoQRXLUTcFMiJrFAQ",
+"https://www.youtube.com/channel/UCMFxHO_dzmvmka06mEZIHvw",
+"https://www.youtube.com/channel/UCJGis3Vxi2SXYGeU1tktN_w",
+"https://www.youtube.com/channel/UCd5glH7p4s9yoouSQErgveQ",
+"https://www.youtube.com/channel/UCzY5r1Ojm1f0UzmS6Doeu6Q",
+"https://www.youtube.com/channel/UCJxqwqoxQDVtwou-B6XvZ1g",
+"https://www.youtube.com/channel/UC7OZezFWTIPqxUvxxaep98A",
+"https://www.youtube.com/channel/UCCPKc7lZXbIf7JA2Efzs9Kg",
+"https://www.youtube.com/channel/UC5B_KoR2eVkUny0mpmAFOnA",
+"https://www.youtube.com/channel/UCMM9OG-hctwhgffGpnSatiw",
+"https://www.youtube.com/channel/UC8GyH_zwhhg9z9xM11KGgng",
+"https://www.youtube.com/channel/UCtW6bU81yUxSNXpO01tZW0w",
+"https://www.youtube.com/channel/UCAN6SXp0RcyA61pPxvkImHg",
+"https://www.youtube.com/channel/UCr829ekJL9N_qACAtzn74ng",
+"https://www.youtube.com/channel/UCY5N-3251FF274wAH7hO6tw",
+"https://www.youtube.com/channel/UCmPWihhigScf4OADi-UpLIw",
+"https://www.youtube.com/channel/UCsaqTYBYMCzio8MmJesyTDA",
+"https://www.youtube.com/channel/UCgp276MBPZOzerps4X-TK_A",
+"https://www.youtube.com/channel/UCP_f6Jj8Z9ifUY8_dTFAZAQ",
+"https://www.youtube.com/channel/UCOwg_TyLCrxxTZbr_wvJlvw",
+"https://www.youtube.com/channel/UC1nh3eqakiuBXjU0xriGybA",
+"https://www.youtube.com/channel/UCf8rt93iELzO_2yXWfLRjyQ",
+"https://www.youtube.com/channel/UCbQgfPs2ysceBZasga9IXYQ",
+"https://www.youtube.com/channel/UCfXGf1CiGIH5WlZsyqjD4zg",
+"https://www.youtube.com/channel/UCQnWdRKCZaPbETwizZiC3OQ",
+"https://www.youtube.com/channel/UCHfQtVLvpC1aydfBf2XyU-A",
+"https://www.youtube.com/channel/UCPKEWb1kJoB2X2S1uzkhu7w",
+"https://www.youtube.com/channel/UCxmUG2wmyku6xHqrYdrC-Lw",
+"https://www.youtube.com/channel/UCW8nhxdlv0e9JIDd10bG5Lw",
+"https://www.youtube.com/channel/UC43WOHKu4eMPhPXivpS17QQ",
+"https://www.youtube.com/channel/UCKg5IOPq3UwHPZyJ9TUHQeA",
+"https://www.youtube.com/channel/UC7DVlJX1lo_sD9lRfNB8K-g",
+"https://www.youtube.com/channel/UCW3YhBrQ7-uwW8wEWQtE7zQ",
+"https://www.youtube.com/channel/UCPejct3yeJJFgSyadtMr2cQ",
+"https://www.youtube.com/channel/UC2xvoHp5XOzonnNvsoknlGw",
+"https://www.youtube.com/channel/UCS20AlyI2S3JsYu3YnKWcSg",
+"https://www.youtube.com/channel/UC9ACerIEzab3ApFmWlhcANg",
+"https://www.youtube.com/channel/UC4DKdb-lJVFk_r2E_ZDe4rQ",
+"https://www.youtube.com/channel/UCLRX3O3-TI9cvKLNSpDJG4w",
+"https://www.youtube.com/channel/UCHNwhiBRU5EzjW5uAuquYXg",
+"https://www.youtube.com/channel/UC5dUrltaEc37QgBj9IMwVEw",
+"https://www.youtube.com/channel/UC-ldoZwZTQuKaCVv64nR-5w",
+"https://www.youtube.com/channel/UCyYSHQQH52FgK1B-jO-Ue2w",
+"https://www.youtube.com/channel/UCe01iL9Lvkn2RX5tGiugQoA",
+"https://www.youtube.com/channel/UCNIo5xL3xJDfonIzvH3U-8g",
+"https://www.youtube.com/channel/UC_5YDmhPrlAgpnGbtgjXnWw",
+"https://www.youtube.com/channel/UCw2FEYoxqExSTcAPs_ZZVSQ",
+"https://www.youtube.com/channel/UCQpb20Rz8ApcGiLdkcxOMGQ",
+"https://www.youtube.com/channel/UCo8PHbqEb4m5emjj3UopPvw",
+"https://www.youtube.com/channel/UCavSCI6bjacdoii5hFoBOsQ",
+"https://www.youtube.com/channel/UCahEPldpkuugmou_nY1re7A",
+"https://www.youtube.com/channel/UCdC-_yhEQOF7XC-1iZIQxDA",
+"https://www.youtube.com/channel/UCxK1odivDnGBdSH8tR-0ciQ",
+"https://www.youtube.com/channel/UCUFx1ftXS_XHNE1fH5CYPpw",
+"https://www.youtube.com/channel/UCYsw-nBklO88N-oLuQpCh-w",
+"https://www.youtube.com/channel/UCLc1XZEpWQDYI0C74_7VkVA",
+"https://www.youtube.com/channel/UCKwpHspwoEEypKm2R8m8BIw",
+"https://www.youtube.com/channel/UCsLCr8Sju4CBDPfLPpcbASg",
+"https://www.youtube.com/channel/UCQLMwLcwGzRRopmQg-nnMPQ",
+"https://www.youtube.com/channel/UCAtoMHhtDvbD44H-D3shQnw",
+"https://www.youtube.com/channel/UCR9MV3GL6M9HC6NPhbn9UYA",
+"https://www.youtube.com/channel/UCab9lfjzH00JLdY5HBtYFuA",
+"https://www.youtube.com/channel/UCIK8zOkAPacfSPBztAgEUKw",
+"https://www.youtube.com/channel/UCQYB5Nu4zdtwyqjoKkJJwgA",
+"https://www.youtube.com/channel/UCQnmlcAhkVGz20gqoAl0RzQ",
+"https://www.youtube.com/channel/UCAHJnudzMXtiT_AS99WCXxw",
+"https://www.youtube.com/channel/UCWJyVcTgcUG9rDAQ3kNvBTQ",
+"https://www.youtube.com/channel/UCFSWihbmZ3PqsXZgz0AEDXA",
+"https://www.youtube.com/channel/UCWCMje7ekXZ_it5FOejgqpA",
+"https://www.youtube.com/channel/UCPDhP-tz7ewWFkHlmdBzf-Q",
+"https://www.youtube.com/channel/UCHbtOwucqb8rD7pStMeFYPQ",
+"https://www.youtube.com/channel/UCGiCVabT0WvEKYUzNY3ueIw",
+"https://www.youtube.com/channel/UC8d5Y4gtyjy0BrOgZ0XaJmQ",
+"https://www.youtube.com/channel/UCeDsCjiHZ5NJ4jxjgMC6vcQ",
+"https://www.youtube.com/channel/UCZ1QvUXsZk0nVtqplhQEFXQ",
+"https://www.youtube.com/channel/UCuuyQn0-k4xnsWKVRYXcviQ",
+"https://www.youtube.com/channel/UCzzQ1--9Mxg6-UmrJevvVAA",
+"https://www.youtube.com/channel/UCCj0ytDlEqIaqJZZcFJpHMA",
+"https://www.youtube.com/channel/UCWVwMvJT5YrZnEQ1B-3kgQQ",
+"https://www.youtube.com/channel/UCju2kBGcDz26ORAi8sxXbow",
+"https://www.youtube.com/channel/UCGcV2E-iL1_NKFJwd5a7mnQ",
+"https://www.youtube.com/channel/UCZOVuYo-AAvq63RRXYw1mVQ",
+"https://www.youtube.com/channel/UCG-F_Cd7nacpJeNBlF98U7Q",
+"https://www.youtube.com/channel/UCvXUybUk1x0gHubd8r9sGfQ",
+"https://www.youtube.com/channel/UCALbff9cdpsdS6ILI5Z8coA",
+"https://www.youtube.com/channel/UC7ybp7kJVXRXpLevQgv6odw",
+"https://www.youtube.com/channel/UCl5LYsroZXB_X2HiYF4cyaA",
+"https://www.youtube.com/channel/UChTyhkMWQaBcd_LhD1HPF2w",
+"https://www.youtube.com/channel/UCC2rirDbeYa_9jMhmYcR-uQ",
+"https://www.youtube.com/channel/UCZqnJnvUvVkPssLhEbVgjwA",
+"https://www.youtube.com/channel/UCy-EB_71CyjDqw3clmi-QIw",
+"https://www.youtube.com/channel/UCC154hjvaivYVIANEwZctsw",
+"https://www.youtube.com/channel/UCWvoRYmd4gNNByLo5oE9B2A",
+"https://www.youtube.com/channel/UCtJqyWtCzSHmLq970s9yF8A",
+"https://www.youtube.com/channel/UC9Dltx-eafxVKglAp3_sExg",
+"https://www.youtube.com/channel/UCgem0-0wCSfXUVQYZW-q7fg",
+"https://www.youtube.com/channel/UCaAMOImR3d_rC2N-NNa7vWQ",
+"https://www.youtube.com/channel/UCGeIqGd_P6J_CfDqFDoo7aA",
+"https://www.youtube.com/channel/UCk80oxbC5xgV6YEOKuZV1jA",
+"https://www.youtube.com/channel/UCrraX4JFAwYiwvbGO_b8sUw",
+"https://www.youtube.com/channel/UC0HP_z2va10_WbpmFzdDTBw",
+"https://www.youtube.com/channel/UCGem8ximBYWjTSguU-JacsQ",
+"https://www.youtube.com/channel/UC1Q-66nl1YyFGVUmxx9CiVg",
+"https://www.youtube.com/channel/UCRB0QZlnYshj5A0EDkPHMsA",
+"https://www.youtube.com/channel/UCOrbGRP_MFecf0juudKKFUg",
+"https://www.youtube.com/channel/UCtXLAZJkBjCOJY1PuiZp37g",
+"https://www.youtube.com/channel/UCQmvbhp_iLFvnHi3yvD7RdA",
+"https://www.youtube.com/channel/UClIO-jA_x-_ahh3B-C1rh_A",
+"https://www.youtube.com/channel/UCmMWh2IebOYl7n5r9dTQbag",
+"https://www.youtube.com/channel/UCFy1q1_Aj69z9u9zt-o6WTw",
+"https://www.youtube.com/channel/UCmpvGT3efkqPrb29p33SxjQ",
+"https://www.youtube.com/channel/UCdIHpquGkhIoTKiNbk3J-lg",
+"https://www.youtube.com/channel/UCLH3HbwNeCBYMw4lo-BoEqQ",
+"https://www.youtube.com/channel/UCm5pB4WjDcZFjnYotNsM8jA",
+"https://www.youtube.com/channel/UCR49z6DLZiOLIRZAGO18TGQ",
+"https://www.youtube.com/channel/UC6jGnpjyq3hQ4cJGDkc83rg",
+"https://www.youtube.com/channel/UC9VtipyLYBTOXtNKdnEnl8Q",
+"https://www.youtube.com/channel/UC0wvIFqUfHxUTtDveqrF-oA",
+"https://www.youtube.com/channel/UC-WbCUkbCHrbXa9rklIK1vg",
+"https://www.youtube.com/channel/UCq7yhbm7QiT_TaMZz48LXzA",
+"https://www.youtube.com/channel/UCke8D7DTVIYjC0rCgG9vZ8A",
+"https://www.youtube.com/channel/UC7J_a4B0x6aAMLY5It8NVDg",
+"https://www.youtube.com/channel/UCs5c-puFtx3NqOxjsBfmLUg",
+"https://www.youtube.com/channel/UCHt22YKECv3cGv6lMlKZAEQ",
+"https://www.youtube.com/channel/UCKPq3dt8BZ-15aqusTzLWvw",
+"https://www.youtube.com/channel/UC8d7SkcAEwN0RjVZ4HyBRZQ",
+"https://www.youtube.com/channel/UCm3hh2g8G3l_HzLoAt6b5Dg",
+"https://www.youtube.com/channel/UCwTvAXHUDd0yL6o-on8NdOA",
+"https://www.youtube.com/channel/UCGi0WLZzXA0loXCPt1-GdfQ",
+"https://www.youtube.com/channel/UCiordhj_dzWxDtcR1KNVrDQ",
+"https://www.youtube.com/channel/UCM5RZRMEWtDj9ux1cy2kO5g",
+"https://www.youtube.com/channel/UClpBqLlctOXjXnFwD-XF5wQ",
+"https://www.youtube.com/channel/UC0qiMD7vtydEvDjlC82yKOw",
+"https://www.youtube.com/channel/UC_75_p5aY48wzpwoi3K-9jA",
+"https://www.youtube.com/channel/UCGethlaoEP0fnhlUIOHHt9w",
+"https://www.youtube.com/channel/UCjn_Ecv0iJIfj-a2W_r6uDA",
+"https://www.youtube.com/channel/UCZDeWQ5ZlOh_-PG9u7AouxQ",
+"https://www.youtube.com/channel/UCkpjUtSyLm7qrFSDEsx89OQ",
+"https://www.youtube.com/channel/UCUhF0l8pr0ihuxG57dnGIxw",
+"https://www.youtube.com/channel/UCIcSVnuQdYoyG_U_mcXj9Jw",
+"https://www.youtube.com/channel/UCgHZ7FkTFTm4YAtGIPR4-LA",
+"https://www.youtube.com/channel/UCuzl4xMoDf9FCMcWW_lhxvg",
+"https://www.youtube.com/channel/UCBvqwRxaigJcDjKRSdS5lOw",
+"https://www.youtube.com/channel/UCiirtNlK4_8GLercP38JzyQ",
+"https://www.youtube.com/channel/UCy2OMCU0WN3Eyd7I0zjO1Aw",
+"https://www.youtube.com/channel/UCVmBUrc7jRmYMP9gcpG-qWA",
+"https://www.youtube.com/channel/UCkYIxCPvTCrObsIQ6flgfrQ",
+"https://www.youtube.com/channel/UCw5mRM74_ZiK0GAbW_SxKng",
+"https://www.youtube.com/channel/UCddSyYb4VrwfUzGrXxEpVDQ",
+"https://www.youtube.com/channel/UCXc1tNxDYO80_75kdoZvpHQ",
+"https://www.youtube.com/channel/UC5fD8YOfxg4LyFvhvd7YTeg",
+"https://www.youtube.com/channel/UCuOidtkjvp-3wNiRE_ZwB-w",
+"https://www.youtube.com/channel/UC4vigT_So-RtsaMvsMgG2Og",
+"https://www.youtube.com/channel/UCJh0V_fHAKvdjYGCCJmWSyQ",
+"https://www.youtube.com/channel/UC7f_vOjDbosoTd-q5ObP2Aw",
+"https://www.youtube.com/channel/UCncJ76qXqb1RKSmobQ7dL9g",
+"https://www.youtube.com/channel/UCvjRem5yvdVRG6JcfmTtSyQ",
+"https://www.youtube.com/channel/UC9aLmZS9WZuxvviTyPiBM3A",
+"https://www.youtube.com/channel/UCrfUq1jDlOXRaL5DqsP18cw",
+"https://www.youtube.com/channel/UCjDHkvz7_IcLnu8OhVH-Oyw",
+"https://www.youtube.com/channel/UCtnsPl2aTVpW8Hu4GBNzpEQ",
+"https://www.youtube.com/channel/UCe-xLVx6sEUncfAiZVpvK9A",
+"https://www.youtube.com/channel/UCr30cIbc-O-joesGtFlh0Bw",
+"https://www.youtube.com/channel/UC8wJY4Dqd4KuMQXpyLQLH6Q",
+"https://www.youtube.com/channel/UC7zN3t8hiAZUnWKdsm_kJ2w",
+"https://www.youtube.com/channel/UC-3ullFhpH4UT9ZvBmvnBWQ",
+"https://www.youtube.com/channel/UCBaGCy5MmW7-37zltVMww5A",
+"https://www.youtube.com/channel/UCf-iglc1qFFXuPkxPAIsRNA",
+"https://www.youtube.com/channel/UCQOFI3y1RxgbQBZNtMRY9RA",
+"https://www.youtube.com/channel/UCaoAatg7Uo70TS-mQFQfIMw",
+"https://www.youtube.com/channel/UClsewnJ38-jUNvAaV8YJU0Q",
+"https://www.youtube.com/channel/UCQAq65FVWLPydZe7w4DNKgA",
+"https://www.youtube.com/channel/UCta3X5paSrKqlP8GSREZM4A",
+"https://www.youtube.com/channel/UCS-IRVbBdvnojj657z50t6w",
+"https://www.youtube.com/channel/UC_OfU-ReowptXk-6J2jltEw",
+"https://www.youtube.com/channel/UCPUvugPSqCc2wOO9fkuLdCA",
+"https://www.youtube.com/channel/UCy8DmkqBFkq_l6NEeTiyYYA",
+"https://www.youtube.com/channel/UCiKl3KgZBWP5j9gXiIWioAg",
+"https://www.youtube.com/channel/UCA5CeSn0u9u_KHQotevgLZw",
+"https://www.youtube.com/channel/UCdnGUC9ZbqHog4NS-IfLcdA",
+"https://www.youtube.com/channel/UC3R7CGXtA7qvVJoDW3stCcg",
+"https://www.youtube.com/channel/UClWQX3c81JuFAcT8baLTldA",
+"https://www.youtube.com/channel/UCfJkb5NGxvmE3-Vmx8tynAg",
+"https://www.youtube.com/channel/UC9OMbqaLbPwLiVaLo1NRhHA",
+"https://www.youtube.com/channel/UChL0Pu0xNmEL-O6phnqHkOA",
+"https://www.youtube.com/channel/UC5ygw4gVgYfsC12XYPnyL0A",
+"https://www.youtube.com/channel/UCCSSrAZ14tFbYqWi6-SXyzw",
+"https://www.youtube.com/channel/UCHibg-qOXf2jSlrojICTEwA",
+"https://www.youtube.com/channel/UCfRnFZXIIBo9aiLEY4S_nPw",
+"https://www.youtube.com/channel/UCCeIRhd0JTPSdnHXFX-gtpg",
+"https://www.youtube.com/channel/UC-QC5xtoj0VdgXZxD3o_EwA",
+"https://www.youtube.com/channel/UCNvOGFFRHNgz1WWLjpJ11FQ",
+"https://www.youtube.com/channel/UClHPtgRD25g9Q7W4RoelJug",
+"https://www.youtube.com/channel/UCeam9zN0SPWuTFlimAooatA",
+"https://www.youtube.com/channel/UCM_iehCV7XBQL6AaUdc417A",
+"https://www.youtube.com/channel/UCT9VeYsqSQFjwsPrbWiuFbA",
+"https://www.youtube.com/channel/UC3CQdUABLEQeQcEmjr3OJog",
+"https://www.youtube.com/channel/UCCMauISmtFHxHM9glRMxKOg",
+"https://www.youtube.com/channel/UC2zaKsYUjRmWaAHgUwwE-ig",
+"https://www.youtube.com/channel/UCHHvLH0Ql4fTKUH-d-vsSdw",
+"https://www.youtube.com/channel/UCA5pk9cc91LaT9VOhqjRM3A",
+"https://www.youtube.com/channel/UCqpnfQAJTzNFtiOkXRcVhKQ",
+"https://www.youtube.com/channel/UC2qk2WepWRmqMoq_ZWqmZoQ",
+"https://www.youtube.com/channel/UCdzCY3co3pacnBMtOpCYFDg",
+"https://www.youtube.com/channel/UCur-bSUeCMEaLMhJFQr-Q-g",
+"https://www.youtube.com/channel/UCX_Nk4nwu0AWm3yZrMwHI7Q",
+"https://www.youtube.com/channel/UCZjfjq_m9v__cgL5jD0VrvA",
+"https://www.youtube.com/channel/UCfz5SXKBGEj_3CIuAY9S1cA",
+"https://www.youtube.com/channel/UCzXkHmybgDnEafF2skVt4wQ",
+"https://www.youtube.com/channel/UC9xxGffizNdiQmyODr_2A0w",
+"https://www.youtube.com/channel/UC7nRgJPF0HDw4O87S8-F3nw",
+"https://www.youtube.com/channel/UCyHNJ2oySsKqc3PAeKnBOCQ",
+"https://www.youtube.com/channel/UCcMpyEKKN5zL7bToorTCYBQ",
+"https://www.youtube.com/channel/UC2TYuPLmroNS4jG7e0s0orQ",
+"https://www.youtube.com/channel/UCPwBtHBEsf3bUUVv9elVEPg",
+"https://www.youtube.com/channel/UC5bD6ZItjSVEb_1-fF0vVOQ",
+"https://www.youtube.com/channel/UCmSL8QHiJwQGkPhHb93ukjw",
+"https://www.youtube.com/channel/UCwuTzEZb9NlZE5eAfbFfWdg",
+"https://www.youtube.com/channel/UCC2HtOAgT96lbDcASDGEFYA",
+"https://www.youtube.com/channel/UCMppHtup5VoIuqxjr7Iiouw",
+"https://www.youtube.com/channel/UCq4RiGzmp0P4juLt-zSSYrg",
+"https://www.youtube.com/channel/UCOF3GCWj0NwCKJ0QOnXyhmg",
+"https://www.youtube.com/channel/UCyqoG3TZ7DSz_86w5S1tjow",
+"https://www.youtube.com/channel/UCWTYDJnhjOC9v98UR3pvXiw",
+"https://www.youtube.com/channel/UCJUHSpT0w7ka6i6uAog0Ivw",
+"https://www.youtube.com/channel/UCt9og9ao9I0xeajVwz0gOoQ",
+"https://www.youtube.com/channel/UC_H2HSq-ShGG6RWa6Is0EkQ",
+"https://www.youtube.com/channel/UCurkkjEo7nxh5Xb1CZnjJiQ",
+"https://www.youtube.com/channel/UCBYKKb9xH8ETiXzdE6zYiYQ",
+"https://www.youtube.com/channel/UCE7TXGFfbmZAuh5psDStdmA",
+"https://www.youtube.com/channel/UCOfnuXNKhizFonbJdldrDJg",
+"https://www.youtube.com/channel/UCXnraCZtbwNk-XGApYBKGXg",
+"https://www.youtube.com/channel/UCCpGHjiQtC2LxfVm-r1Q-4w",
+"https://www.youtube.com/channel/UC_i0uFr5NYzNRWNrKf8kr4A",
+"https://www.youtube.com/channel/UC2HKuN0AjMjCZIzyCVCXMpA",
+"https://www.youtube.com/channel/UCSKUW6oDgJHSZSAJk-BEWVA",
+"https://www.youtube.com/channel/UCBAwrNlMRchXt75b1RLeh9A",
+"https://www.youtube.com/channel/UC0nwKoyA-vfswqbBTBJOQDA",
+"https://www.youtube.com/channel/UCXcIE6YruI0YG6Lo3HA6pMg",
+"https://www.youtube.com/channel/UCOwSBom9Hr2bxPfcSALLDyA",
+"https://www.youtube.com/channel/UC-dyqkbSFMUKnb_LyGkZjZQ",
+"https://www.youtube.com/channel/UC8FcggL6xZLohl00_ZBqCag",
+"https://www.youtube.com/channel/UCCAJahwYxFwk41Uw42UH7mw",
+"https://www.youtube.com/channel/UCoiPeV8TbzkhfarEgOJUvJg",
+"https://www.youtube.com/channel/UCMBGFQnjFDnxNZkR4qy640Q",
+"https://www.youtube.com/channel/UCK6JYY_N8jNfEY4GJGKpBFg",
+"https://www.youtube.com/channel/UCQxCdbN3X2irPn5K7xMSKJA",
+"https://www.youtube.com/channel/UCv3DNwhYXQQaqqlbBpVH8uw",
+"https://www.youtube.com/channel/UCmnr4LUtpsVgQQgixFt5wCw",
+"https://www.youtube.com/channel/UC7uPKHNTeaxAVocvRZ7iG2w",
+"https://www.youtube.com/channel/UC0Uw9qbjSVf-WRXt0sEQTKQ",
+"https://www.youtube.com/channel/UC8kTl-bfNoedowM1rVX3kYA",
+"https://www.youtube.com/channel/UCQ2VYu_mNEiNQxZciQNf6DQ",
+"https://www.youtube.com/channel/UCXmQy6nn87q2ggOPLXwRF5g",
+"https://www.youtube.com/channel/UCj7KO3iPgjE0mv-pkz7Nyag",
+"https://www.youtube.com/channel/UCI4GBR3wbqV7uMdIKgQJ3Jg",
+"https://www.youtube.com/channel/UCSqZ_ibyMzB5ROEqcyR193A",
+"https://www.youtube.com/channel/UCrPbNLNZiI_YeHYtzfmpwWQ",
+"https://www.youtube.com/channel/UCLiD8saRTfgUdxp7jpV4TyQ",
+"https://www.youtube.com/channel/UCsYHqodrtjgJFcZsk8D4PHg",
+"https://www.youtube.com/channel/UC4qVGnuIFQLhWUdwRapyhnw",
+"https://www.youtube.com/channel/UCyhm8n9RwLEOIyhOyI1HEwA",
+"https://www.youtube.com/channel/UCBFrTgOFk0KOuwHWxHBu7Dg",
+"https://www.youtube.com/channel/UCiitiYLgtsvCEL9_7gb2XUw",
+"https://www.youtube.com/channel/UCZsEYPW1ZnBDXIoTWFyA5zQ",
+"https://www.youtube.com/channel/UCB8KOiSLgcUYdy-kPFqpjSA",
+"https://www.youtube.com/channel/UCMi8XEapLkkVujEPvBoXUzQ",
+"https://www.youtube.com/channel/UC7_qcaRqGI3h1XuoFGSr5_g",
+"https://www.youtube.com/channel/UCeMsEsz_tY0gS4IDsRsnnVQ",
+"https://www.youtube.com/channel/UCEEYYkYNQbJ7_mNyfqRnMSw",
+"https://www.youtube.com/channel/UCgEKdX7wrP8e_ZACuHFsajg",
+"https://www.youtube.com/channel/UCXD1P4aRQbLMRItIgUCSv5Q",
+"https://www.youtube.com/channel/UCZ3WOUlHavD5z11MoSNVicQ",
+"https://www.youtube.com/channel/UC-46N-r6RHSSuZAPy3_IxYA",
+"https://www.youtube.com/channel/UCNXxVZuMt5gEbl5IFTb8yLw",
+"https://www.youtube.com/channel/UCUsyMKmEGFX9GqeSRWI7G-w",
+"https://www.youtube.com/channel/UCvoI1PeYafdcDJqYHrog_ow",
+"https://www.youtube.com/channel/UCPYVXrnb9bvTUpktyafCSxw",
+"https://www.youtube.com/channel/UC-5Lp9xTY6WDkYiC8i1vCKw",
+"https://www.youtube.com/channel/UC59nL3zfwHXHmrnBZYRqOEQ",
+"https://www.youtube.com/channel/UCAYbZBJ7w0IX6j1xJC0HhnQ",
+"https://www.youtube.com/channel/UCpWq9MCgPBubIZku0FXWraQ",
+"https://www.youtube.com/channel/UCKYaAAiHnaV6i4xwKboyObw",
+"https://www.youtube.com/channel/UCV0TfD7QZWCHUIabuG_BejQ",
+"https://www.youtube.com/channel/UCCwZ4RUwKXiyAZRyLIR6VnQ",
+"https://www.youtube.com/channel/UCe2BsymIbirLG7S3cqhYaeg",
+"https://www.youtube.com/channel/UCQeVqTGI4u2dRwyXc0eVSXQ",
+"https://www.youtube.com/channel/UC-UWQ0uBb1qZKGcn4qxHm7w",
+"https://www.youtube.com/channel/UCEh4f4gK2yZXeJ2ZpvO3AJw",
+"https://www.youtube.com/channel/UCyW6NADXBPGsOpkzDtwA5Cg",
+"https://www.youtube.com/channel/UCsUFdQcFBDYpdMuZ0IaSpSg",
+"https://www.youtube.com/channel/UCjfKlHZJ-rscx1H7Nb9Iz2Q",
+"https://www.youtube.com/channel/UCRC4Hk_Q-cHGnY4y6fY6S4g",
+"https://www.youtube.com/channel/UClE81Xje_QWWm6ufnUDBVSg",
+"https://www.youtube.com/channel/UCGOXwhdFOTbpUjIPkKSTB-g",
+"https://www.youtube.com/channel/UCBbN6pLChJc1legQQlnuzsQ",
+"https://www.youtube.com/channel/UCcQsXlcaIsK_S435DagD8cw",
+"https://www.youtube.com/channel/UCpmNXFM1nUngCQyJcXL-qKg",
+"https://www.youtube.com/channel/UCnA2TUikOG-2Zpvr8dAwh3Q",
+"https://www.youtube.com/channel/UCcw3WqPSswZLeYe36SqiYlQ",
+"https://www.youtube.com/channel/UCPG39Wx8lyPifCmdw8C7CNQ",
+"https://www.youtube.com/channel/UCSNwdfVXwP1Izh0UpHEHXoA",
+"https://www.youtube.com/channel/UC5NqReUjIpa4ivHiHIELRCQ",
+"https://www.youtube.com/channel/UCq8gNAG4fDmTXljFvnqkwzQ",
+"https://www.youtube.com/channel/UC1ghbyQGGjbP4qEaQKoinjQ",
+"https://www.youtube.com/channel/UC12CZprUj6ldfl20Z34SJHg",
+"https://www.youtube.com/channel/UCYXxAUg9Td3odJsMzB7uu-A",
+"https://www.youtube.com/channel/UCEmlL_amOXUVNGLHXItSF6A",
+"https://www.youtube.com/channel/UCznygmS05SyVMOODq52Vkqw",
+"https://www.youtube.com/channel/UCpWZMMpTju8L8NZpLy7nGCA",
+"https://www.youtube.com/channel/UC_GDsJoq83qWNxxdMp60Phw",
+"https://www.youtube.com/channel/UC1KBf4eUlIcFPDpE9AonxzQ",
+"https://www.youtube.com/channel/UCpWHBWXZ5wK21P0_3Gb0FfQ",
+"https://www.youtube.com/channel/UCMdbNwuVSRY2NB8mdA-EOFg",
+"https://www.youtube.com/channel/UC2qdTLkVeWvnGkMZ9THb8RQ",
+"https://www.youtube.com/channel/UCPJPDWRoPPakRlBZMTTECTg",
+"https://www.youtube.com/channel/UCH17gx2MZByB2MfC2Psjywg",
+"https://www.youtube.com/channel/UCX8q0NVsH1ehcWQKN4Yoh7Q",
+"https://www.youtube.com/channel/UCIs1Grf0hlL2Z6QgiK0CWCg",
+"https://www.youtube.com/channel/UCDy5AbgVxE-susSU-uYpw8w",
+"https://www.youtube.com/channel/UC5Ca0HmkTJ1iVZpNhTUzCLg",
+"https://www.youtube.com/channel/UCTx_b5IyZkkSZG-qQmqlCeg",
+"https://www.youtube.com/channel/UCkBQ3Njs1AZi-6Xq4K0Nyog",
+"https://www.youtube.com/channel/UC6m1TynyDCSXypSVRhH48EQ",
+"https://www.youtube.com/channel/UCNkH-Cid4JbjrzWkX_3W4Eg",
+"https://www.youtube.com/channel/UCrHe9e8M1taQGhrs83H_ERQ",
+"https://www.youtube.com/channel/UCzdaRdn9lyht5XOFMAtmacQ",
+"https://www.youtube.com/channel/UCbK2MEy35ykpbCnUyGMO5gw",
+"https://www.youtube.com/channel/UC5GIAiY0c-3_H5EjlkCQihA",
+"https://www.youtube.com/channel/UCbIqId240qChrA6H1LIZ10A",
+"https://www.youtube.com/channel/UCUJER4QYY9_kGeT9BDQN7Pw",
+"https://www.youtube.com/channel/UCbYWWx9G1Ff-OJ_SPXxfBhQ",
+"https://www.youtube.com/channel/UCWiQL5ou5VNntODvV-sM06Q",
+"https://www.youtube.com/channel/UCri2GpkHM3oa4fHRlCU8Tig",
+"https://www.youtube.com/channel/UChxHNuDCWjm-4cS158y7YcA",
+"https://www.youtube.com/channel/UCLDkds4NrKR0mjj7SWVjLvw",
+"https://www.youtube.com/channel/UC9ChzvRtsxb6-e1lSglGghw",
+"https://www.youtube.com/channel/UCDuVojHZv2CFAwOC9VBJbvA",
+"https://www.youtube.com/channel/UC6_SKbIJa-szmPgZ54xB3WA",
+"https://www.youtube.com/channel/UC_MHR_7Zf86XRylkfGCoR5A",
+"https://www.youtube.com/channel/UCehs8Jc6XlZd-__cszf9C-A",
+"https://www.youtube.com/channel/UCX57vW0Seme5Zl4VFEIfahw",
+"https://www.youtube.com/channel/UCteEGtOGRTsUkfKBwqqhZKA",
+"https://www.youtube.com/channel/UCvHZ9tuZjt0yNU577QrKUwQ",
+"https://www.youtube.com/channel/UCN52nzK6wBXcHh581N250BA",
+"https://www.youtube.com/channel/UCqKngBVx7d2Bc4_RWYNNjtQ",
+"https://www.youtube.com/channel/UCQU5V4xd1HYned9VFqNkTWw",
+"https://www.youtube.com/channel/UC8oDayD-Nm0dTC7RnziLOtw",
+"https://www.youtube.com/channel/UC-V6eGFeAmCJhPXHYCH7bwA",
+"https://www.youtube.com/channel/UCJXAagNL8zP7mo7iTiVeIxg",
+"https://www.youtube.com/channel/UCnHRJ-HcE_p8xB08nT93B3g",
+"https://www.youtube.com/channel/UCB0d-XxoQHOGeGLZzawj-ug",
+"https://www.youtube.com/channel/UCzNS_J9y13g_YQ57DlHMqLg",
+"https://www.youtube.com/channel/UC9wiHUC1z6aSVxwflzBKtuA",
+"https://www.youtube.com/channel/UCq82Stxf4XZ_SBL9KWYXvQQ",
+"https://www.youtube.com/channel/UCvRSlqvcX6ZU5edfIdOVw_w",
+"https://www.youtube.com/channel/UCkTbCD2u5P1m5qAoeE2CwYA",
+"https://www.youtube.com/channel/UCxUAtwbo9kd-R24RpISoJfw",
+"https://www.youtube.com/channel/UCHSkPngPCytXhd0OQS2X-cw",
+"https://www.youtube.com/channel/UCQg-O0rasTnaJek-VZ9S6UA",
+"https://www.youtube.com/channel/UCgneGcq9QMUOVHPr7WAYVRw",
+"https://www.youtube.com/channel/UCqzFyxhOxdK9AS9oFQ0-bHw",
+"https://www.youtube.com/channel/UCW6TzLalwd2VUy4p6h80rgw",
+"https://www.youtube.com/channel/UC26BO_SJtNSCTEEbf4bVzow",
+"https://www.youtube.com/channel/UCyxVTDFbXedfSPi9HfbGghg",
+"https://www.youtube.com/channel/UCJ5KRFalHmoZ6skCni-mHsw",
+"https://www.youtube.com/channel/UCI6NX_GcbXTJzS2oOselEwA",
+"https://www.youtube.com/channel/UCTEeUl0A0HHnOKNwDQstluw",
+"https://www.youtube.com/channel/UC2C0SQL0v3gLHk0m6wBE9Aw",
+"https://www.youtube.com/channel/UChFTH4uBVX_0ZES-Cj-VmBQ",
+"https://www.youtube.com/channel/UCujPCnSaciD2_FmkQC7VMvA",
+"https://www.youtube.com/channel/UCs37Oym2pAx_CgC4vj-JR_A",
+"https://www.youtube.com/channel/UCP5AO6wfw7TLlvgnkceoTVg",
+"https://www.youtube.com/channel/UCUQ-snFkLPAG9aSUpZ9OURw",
+"https://www.youtube.com/channel/UCNK2NiAVUoSFoheT_m68aeQ",
+"https://www.youtube.com/channel/UCRLb_pOk4uYRdfNRg5tPRoQ",
+"https://www.youtube.com/channel/UCEdHHuDNdeBDro0VVlIgijQ",
+"https://www.youtube.com/channel/UCIAbIMdiXTpfIU-FZkkrcJA",
+"https://www.youtube.com/channel/UCcZ9DyHGe0FCYyCs0g3aGow",
+"https://www.youtube.com/channel/UC1G1w3Wj0uohImpBkn1TPBA",
+"https://www.youtube.com/channel/UCLAkxMRx6L5dzduOYiNzlBQ",
+"https://www.youtube.com/channel/UCjaLpYUv8OXgC_6oOBiJsrA",
+"https://www.youtube.com/channel/UCM0r3hzLNU-HY3v5MoOSWSQ",
+"https://www.youtube.com/channel/UC8eTs3VGAdFyko1Ci6JlX5g",
+"https://www.youtube.com/channel/UCB70WVMpTQfeziLdAtY6mng",
+"https://www.youtube.com/channel/UCnE2CYY9cdcs-3E2IVwnn_w",
+"https://www.youtube.com/channel/UCJn6nTuxBTWe73jmHNgl1yA",
+"https://www.youtube.com/channel/UCjmgyVjXAcHwazMWD25hyYw",
+"https://www.youtube.com/channel/UCJFrCWNDpIdtyp0T9QAkGEQ",
+"https://www.youtube.com/channel/UCWeWW31AsVUufoNBvvdaZxw",
+"https://www.youtube.com/channel/UC6udo7woQ0OgZlOFH3EsESg",
+"https://www.youtube.com/channel/UCKQpOI68LW03jawrSVJS4Sw",
+"https://www.youtube.com/channel/UCV13R4pL0ZIUgM4PX-O8T0A",
+"https://www.youtube.com/channel/UCrPMuD9uV4kcM0eab1Piwrw",
+"https://www.youtube.com/channel/UCWW27YNFcqcjpWbsCsqbf8g",
+"https://www.youtube.com/channel/UCSEhk_rQM2pG7kb1BfrwGtQ",
+"https://www.youtube.com/channel/UCu19aRKb8-VEYHiKO4KtzhA",
+"https://www.youtube.com/channel/UCGx51uo8FC0sfJGDhgOLX1A",
+"https://www.youtube.com/channel/UCbtepGXXwoF0EAKpSAMHZQw",
+"https://www.youtube.com/channel/UC1ZyXz7DDaz8P2hTyd39l_A",
+"https://www.youtube.com/channel/UCLZgAoKNVOeSuXAiJcJXznw",
+"https://www.youtube.com/channel/UCK6V1Ghaam_tNJ-6w40x_5A",
+"https://www.youtube.com/channel/UCGmCg8Hig47ctrkV5Y9-86g",
+"https://www.youtube.com/channel/UCIZMSqRMAOssGt5Vp2kzr6g",
+"https://www.youtube.com/channel/UCQgSiSr4aFuL0Rjz2bddYBg",
+"https://www.youtube.com/channel/UClrxt_pjo-HRnPY5IaQdoMA",
+"https://www.youtube.com/channel/UC-wg0_wDYArxqc0fD9SnbaQ",
+"https://www.youtube.com/channel/UCgIhC3v15iy_YKWqC6jT7lg",
+"https://www.youtube.com/channel/UCuHoIS4YH9hDN9ZO6g4rmRw",
+"https://www.youtube.com/channel/UCPIeDnSMT75ttr0aJpN9M3Q"
+
+
];
// MISC SETTINGS:
- const CONVERT_DIACRITICS = true; // Convert special unicode characters to plain characters
+ const CONVERT_DIACRITICS = true; // Convert special unicode characters to plain characters
- const DEBUG = false;
+ const DEBUG = true;
const INTERVAL = 300; // ms
// END OF SETTINGS. PLEASE DO NOT MODIFY ANYTHING BELOW THIS LINE IF YOU DON'T KNOW WHAT YOU ARE DOING
- const _spamFlair = "SPAM";
+ const _spamFlair = "我是五毛或者垃圾";
let _removedComments = 0;
let _removedCommentsTotal = 0;
@@ -109,13 +3669,7 @@ $(function() {
if (REMOVE_FIRST) {
const first = [
- "first",
- "frist",
- "1st",
- "second",
- "2nd",
- "3rd",
- "4th"
+"BBB"
];
for (var f in first) {
@@ -142,11 +3696,69 @@ $(function() {
if (REMOVE_EARLY) {
const earlyOptions = [
- "i was this early",
- "i am so early",
- "i'm early",
- "im early",
- "who else is early"
+"BB",
+"DF",
+"Sb",
+"SB",
+"三飞",
+"不留人",
+"反攻大陆",
+"东风",
+"台独",
+"台湾国",
+"尼马",
+"巨浪",
+"民进党",
+"吃屎",
+"导弹",
+"你妈",
+"吹牛哔",
+"吹牛逼",
+"呆弯",
+"呆灣",
+"歼1",
+"歼2",
+"歼6",
+"诈菜",
+"走狗",
+"阴文",
+"囼",
+"国税局",
+"宝杰",
+"经国号",
+"保洁",
+"哔",
+"威尔刚",
+"看门狗",
+"统一",
+"美帝",
+"留岛",
+"畜",
+"脏",
+"脑残",
+"梦",
+"野种",
+"喝尿",
+"智商",
+"智商",
+"智障",
+"渣",
+"猪",
+"菜菜子",
+"傻B",
+"傻哔",
+"意淫",
+"签",
+"逼",
+"榨菜",
+"熊三",
+"操过",
+"彎彎",
+"灣灣",
+"湾湾",
+"脑子不好使",
+"呆湾",
+"弯弯"
];
for (var eo in earlyOptions) {
@@ -189,7 +3801,8 @@ $(function() {
"like =",
"like:",
"dislike: ",
- "like if you're watching in"
+ "like if you're watching in",
+"BB"
];
for (var sl in selfLikes) {
@@ -303,7 +3916,7 @@ $(function() {
if (spamCounter.length === 0) {
commentCounter.append(``);
} else {
- spamCounter.html(` (${newSpamCount} Spam)`);
+ spamCounter.html(` (已處理${newSpamCount} 筆五毛留言)`);
}
}
@@ -425,4 +4038,4 @@ $(function() {
}
if (DEBUG) { console.log("YTCF: YouTube Comment Filter (YTCF) script active."); }
-});
\ No newline at end of file
+});