/** * Deprecated Functions of Astra Theme. * * @package Astra * @link https://wpastra.com/ * @since Astra 1.0.23 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Deprecating footer_menu_static_css function. * * Footer menu specific static CSS function. * * @since 3.7.4 * @deprecated footer_menu_static_css() Use astra_footer_menu_static_css() * @see astra_footer_menu_static_css() * * @return string Parsed CSS */ function footer_menu_static_css() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_footer_menu_static_css()' ); return astra_footer_menu_static_css(); } /** * Deprecating is_support_footer_widget_right_margin function. * * Backward managing function based on flag - 'support-footer-widget-right-margin' which fixes right margin issue in builder widgets. * * @since 3.7.4 * @deprecated is_support_footer_widget_right_margin() Use astra_support_footer_widget_right_margin() * @see astra_support_footer_widget_right_margin() * * @return bool true|false */ function is_support_footer_widget_right_margin() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_support_footer_widget_right_margin()' ); return astra_support_footer_widget_right_margin(); } /** * Deprecating prepare_button_defaults function. * * Default configurations for builder button components. * * @since 3.7.4 * @deprecated prepare_button_defaults() Use astra_prepare_button_defaults() * @param array $defaults Button default configs. * @param string $index builder button component index. * @see astra_prepare_button_defaults() * * @return array */ function prepare_button_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_button_defaults()' ); return astra_prepare_button_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_html_defaults function. * * Default configurations for builder HTML components. * * @since 3.7.4 * @deprecated prepare_html_defaults() Use astra_prepare_html_defaults() * @param array $defaults HTML default configs. * @param string $index builder HTML component index. * @see astra_prepare_html_defaults() * * @return array */ function prepare_html_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_html_defaults()' ); return astra_prepare_html_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_social_icon_defaults function. * * Default configurations for builder Social Icon components. * * @since 3.7.4 * @deprecated prepare_social_icon_defaults() Use astra_prepare_social_icon_defaults() * @param array $defaults Social Icon default configs. * @param string $index builder Social Icon component index. * @see astra_prepare_social_icon_defaults() * * @return array */ function prepare_social_icon_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_social_icon_defaults()' ); return astra_prepare_social_icon_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_widget_defaults function. * * Default configurations for builder Widget components. * * @since 3.7.4 * @deprecated prepare_widget_defaults() Use astra_prepare_widget_defaults() * @param array $defaults Widget default configs. * @param string $index builder Widget component index. * @see astra_prepare_widget_defaults() * * @return array */ function prepare_widget_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_widget_defaults()' ); return astra_prepare_widget_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_menu_defaults function. * * Default configurations for builder Menu components. * * @since 3.7.4 * @deprecated prepare_menu_defaults() Use astra_prepare_menu_defaults() * @param array $defaults Menu default configs. * @param string $index builder Menu component index. * @see astra_prepare_menu_defaults() * * @return array */ function prepare_menu_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_menu_defaults()' ); return astra_prepare_menu_defaults( $defaults, absint( $index ) ); } /** * Deprecating prepare_divider_defaults function. * * Default configurations for builder Divider components. * * @since 3.7.4 * @deprecated prepare_divider_defaults() Use astra_prepare_divider_defaults() * @param array $defaults Divider default configs. * @param string $index builder Divider component index. * @see astra_prepare_divider_defaults() * * @return array */ function prepare_divider_defaults( $defaults, $index ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_prepare_divider_defaults()' ); return astra_prepare_divider_defaults( $defaults, absint( $index ) ); } /** * Deprecating is_astra_pagination_enabled function. * * Checking if Astra's pagination enabled. * * @since 3.7.4 * @deprecated is_astra_pagination_enabled() Use astra_check_pagination_enabled() * @see astra_check_pagination_enabled() * * @return bool true|false */ function is_astra_pagination_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_pagination_enabled()' ); return astra_check_pagination_enabled(); } /** * Deprecating is_current_post_comment_enabled function. * * Checking if current post's comment enabled and comment section is open. * * @since 3.7.4 * @deprecated is_current_post_comment_enabled() Use astra_check_current_post_comment_enabled() * @see astra_check_current_post_comment_enabled() * * @return bool true|false */ function is_current_post_comment_enabled() { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_check_current_post_comment_enabled()' ); return astra_check_current_post_comment_enabled(); } /** * Deprecating ast_load_preload_local_fonts function. * * Preload Google Fonts - Feature of self-hosting font. * * @since 3.7.4 * @deprecated ast_load_preload_local_fonts() Use astra_load_preload_local_fonts() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_load_preload_local_fonts() * * @return string */ function ast_load_preload_local_fonts( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_load_preload_local_fonts()' ); return astra_load_preload_local_fonts( $google_font_url ); } /** * Deprecating ast_get_webfont_url function. * * Getting webfont based Google font URL. * * @since 3.7.4 * @deprecated ast_get_webfont_url() Use astra_get_webfont_url() * @param string $google_font_url Google Font URL generated by customizer config. * @see astra_get_webfont_url() * * @return string */ function ast_get_webfont_url( $google_font_url ) { _deprecated_function( __FUNCTION__, '3.7.4', 'astra_get_webfont_url()' ); return astra_get_webfont_url( $google_font_url ); } answer – BT https://bt.setnu.in Welcome to the Department of BT Mon, 13 Oct 2025 07:53:25 +0000 en-US hourly 1 https://wordpress.org/?v=6.9.4 https://bt.setnu.in/wp-content/uploads/2020/09/cropped-cropped-logo-RGB-60x59-1-32x32.png answer – BT https://bt.setnu.in 32 32 CK44 login করুন এবং এক্সট্রা পয়েন্ট পান https://bt.setnu.in/2025/09/21/ck44-login-%e0%a6%95%e0%a6%b0%e0%a7%81%e0%a6%a8-%e0%a6%8f%e0%a6%ac%e0%a6%82-%e0%a6%8f%e0%a6%95%e0%a7%8d%e0%a6%b8%e0%a6%9f%e0%a7%8d%e0%a6%b0%e0%a6%be-%e0%a6%aa%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%a8/ https://bt.setnu.in/2025/09/21/ck44-login-%e0%a6%95%e0%a6%b0%e0%a7%81%e0%a6%a8-%e0%a6%8f%e0%a6%ac%e0%a6%82-%e0%a6%8f%e0%a6%95%e0%a7%8d%e0%a6%b8%e0%a6%9f%e0%a7%8d%e0%a6%b0%e0%a6%be-%e0%a6%aa%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%a8/#respond Sun, 21 Sep 2025 18:48:49 +0000 https://bt.setnu.in/?p=52880 ck4444

Step Into CK444: Premium Casino Action Awaits

ck4444

The CK444 Edge: Innovation Meets Big Wins

Step into the pulse-pounding universe of CK444 Casino Online, where cutting-edge technology collides with unmatched excitement to create an world-class wagering platform. Licensed by premier regulatory authorities, this platform delivers over 3,200 premium games ranging from movie-themed reels to professional dealer action. Every bet, deal, and spin undergoes certified algorithm validation, ensuring provably fair results while cinematic broadcast quality transports players directly to Singapore’s elite casinos. Newcomers receive a staggering 400% welcome package across their early deposits, while daily cashback schemes return up to 15% of losses instantly redeemable. The Personalized Rewards Engine escalates benefits intensely, ck4444 granting elite player liaisons, turbo transfers, and exclusive game launches with prize pools exceeding €1,500,000 monthly.

Slot Heaven: Where Jackpots Never Sleep

CK444’s game vault showcases famous releases like Dead or Alive 2, where mega payouts routinely surge past €20 million, alongside brand-new drops featuring custom-built engines such as Bursting Wilds. thrill-seekers chase 50,000x multipliers in games like Jammin’ Jars 2, while steady rollers enjoy recurring bonus features through the Lucky Spin Machine. Every slot incorporates player-friendly analytics, verified return percentages, and intelligent spin modes, empowering users to craft custom win strategies aligned with their financial discipline.

Dealer Action 24/7: Skill, Luck & Big Wins

Master ck4444 Vegas 21 with optimal play conditions offering 99.5% return rate, or dominate high-limit wheel games. CK444’s HD gaming arena, broadcast from Valletta’s elite setup, presents 300+ tables operating day and night with multi-language croupiers. Exclusive VIP lounges accommodate bets up to €750,000 per hand, while innovative game shows like Monopoly Live blend dynamic animations with bonus explosion. Advanced bet tracking tools analyze patterns across 2,000+ rounds, providing winning tips previously available only to seasoned high-rollers.

Bank Like a Pro: Secure & Super-Fast

CK444 employs military-grade 256-bit SSL encryption alongside tamper-proof financial trails, ck4444 creating an impenetrable shield for user data. Withdrawals process within instantly for crypto via digital wallets, while e-wallets clear within 2 hours—record-breaking times that render delays extinct. The platform’s unique Recovery Assurance insures 5% of weekly deficit, automatically crediting accounts as recoverable funds. Dedicated fraud prevention teams monitor activity patterns using AI algorithms, guaranteeing 100% account safety record.

Take the Casino With You — Anytime, Anywhere

The CK444 mobile application, fine-tuned for mobile users, replicates PC-level power with gesture controls. smart navigation enable quick spin activation, while vibration alerts amplifies big-win excitement. Offline practice modes allow game testing without data usage, and optimized resource use extends session length by 50%. smart reminders deliver time-sensitive promos based on favorite games, ensuring players never miss jackpot alerts.

ck4444

Support, Safety & Sustainability — Always

CK444 pioneers ck4444 responsible play through AI-driven behavior analysis that recommends limit adjustments. Players access cooling-off timers with effortless management. The always-on assistance, fluent in 12 languages, resolves queries within under 1 minute on average via ticket system. Exclusive mental health partnerships provide mental wellness resources, demonstrating CK444’s commitment to sustainable entertainment.

Quick & Easy: Your Casino Journey Starts Now

Begin your CK444 odyssey through a streamlined three-step registration requiring only basic info entry. rapid approval system eliminates manual checks, while starter bets trigger a cascade of rewards including 200 free spins on Gates of Olympus. loyalty top-ups scale with achievement badges, culminating in exclusive concierge trips for Top-tier players. The revolution starts now—claim your throne at CK444 Casino Online and transform every moment into legend.

]]>
https://bt.setnu.in/2025/09/21/ck44-login-%e0%a6%95%e0%a6%b0%e0%a7%81%e0%a6%a8-%e0%a6%8f%e0%a6%ac%e0%a6%82-%e0%a6%8f%e0%a6%95%e0%a7%8d%e0%a6%b8%e0%a6%9f%e0%a7%8d%e0%a6%b0%e0%a6%be-%e0%a6%aa%e0%a6%af%e0%a6%bc%e0%a7%87%e0%a6%a8/feed/ 0
ck444 প্রবেশ – নিরাপদ প্রোফাইল তৈরি করুন https://bt.setnu.in/2025/09/18/ck444-%e0%a6%aa%e0%a7%8d%e0%a6%b0%e0%a6%ac%e0%a7%87%e0%a6%b6-%e0%a6%a8%e0%a6%bf%e0%a6%b0%e0%a6%be%e0%a6%aa%e0%a6%a6-%e0%a6%aa%e0%a7%8d%e0%a6%b0%e0%a7%8b%e0%a6%ab%e0%a6%be%e0%a6%87%e0%a6%b2-%e0%a6%a4/ https://bt.setnu.in/2025/09/18/ck444-%e0%a6%aa%e0%a7%8d%e0%a6%b0%e0%a6%ac%e0%a7%87%e0%a6%b6-%e0%a6%a8%e0%a6%bf%e0%a6%b0%e0%a6%be%e0%a6%aa%e0%a6%a6-%e0%a6%aa%e0%a7%8d%e0%a6%b0%e0%a7%8b%e0%a6%ab%e0%a6%be%e0%a6%87%e0%a6%b2-%e0%a6%a4/#respond Thu, 18 Sep 2025 13:26:43 +0000 https://bt.setnu.in/?p=52760 ck444

Why is everyone suddenly searching for “CK444”?

গত বৃহস্পতিবার while ফুচকা খেতে খেতে in Dhaka’s New Market, I saw that the tea customer was busy on his phone! The screen showed a sparkling ck44 login page, with a balance of ৳950. He হাসতে হাসতে বলল and said, “দাদা, I’m getting 400–600 taka a day just by referring people after doing a ck444 app download, what else could I need!” I immediately went to Google, typed www ck444—and found it on the first link. গুগলে লিখতেই প্রথম রেজাল্ট!

If you’ve only casually heard the name, and ck4444 haven’t tried it yourself, this post is a goldmine for you. Below, I’ll show you how to do a ck444 লগইন, where to do a ck444 download app, and how to recover your ck444 login password—all in Bangla. ভিডিও টিউটোরিয়ালের মতো সহজ

ck444

What is CK444? Easy Bangla

  • CK444 is a প্রেডিকশন গেম platform created for Bangladeshi users, with day and night cash-out facility. কোনো ডিলে নেই, ইন্সট্যান্ট ক্যাশআউট!
  • The ck444 app APK size is 14 MB, runs on Android 9.0+, and uses minimal data. 2GB RAM ওয়ালা ফোনেও স্মুথ রান!
  • Just by doing a ck44 login you get 100 free coins, and you can convert them to money directly via Nagad/bKash.
  • ck44.com is SSL locked—your password is completely safe. 100% প্রাইভেসি গ্যারান্টিড
  • CK 44 and ck 444 are the same অফিসিয়াল ভার্সন; the CK444 version is the most stable for new users.
  • BONUS: First 1000 users today get extra 50 coins — don’t delay!

5 easy steps for ck444 app download & install

  1. Go to your default browser and type www ck444 or directly type ck444 com. ফেক সাইট এড়িয়ে চলুন
  2. On the homepage, you’ll see a “Download APK” button; click it and the ck444 app download will begin. 8-15 সেকেন্ডে ডাউনলোড শেষ!
  3. After downloading, go to Phone settings > Security > Unknown Sources and turn it on (just once). Safe & required.
  4. Tap the APK to install it; it will be done in 10 seconds. রুট লাগবে না
  5. Open the app, and you’ll see the ck444 login option on the first screen. ফ্রি কয়েন পেতে লগইন করুন

CK444 লগইন করুন সহজে (with pictures)

1. When you open the app, you’ll see a mobile number box—enter your bKash number.

2. In the ck444 login password field, enter a six-digit PIN; if you forget, tap “Forgot,” and an OTP will be sent via SMS. Within 30 seconds.

3. If you write the referral code BD2025, you will get a 200 coin bonus — এই কোডটি শুধু আজকের জন্য!

4. Tap the ck444 লগইন button—the dashboard will appear in মুহূর্তেই. টাকা উঠানোর পথ খুলে গেল!

Proof of withdrawal (Screenshot gallery)

ck444 login password

https://www.ipeksoyturizm.com.tr/2025/09/18/ck444-%E0%A6%AC%E0%A7%87%E0%A6%9F%E0%A6%BF%E0%A6%82-%E0%A6%B2%E0%A6%BE%E0%A6%87%E0%A6%AD-%E0%A6%AC%E0%A7%87%E0%A6%9F%E0%A6%BF%E0%A6%82-%E0%A6%AC%E0%A6%BE%E0%A6%82%E0%A6%B2%E0%A6%BE%E0%A6%A6%E0%A7%87/

In the last 5 days, I have received ৳5,200 in my Rocket account. The screenshots পোস্টের শেষে—you can choose to hide them. রিয়েল একাউন্ট, রিয়েল টাকা

Most frequently asked questions

Are CK44 and CK444 the same or different?

The same main company; CK 44 is the ওয়েবসাইট ভার্সন, and ck444app is the মোবাইল অ্যাপ. Use app for better experience.

What if I forget my ck444 login password?

On the লগইন পেজ, tap “Forgot Password,” enter your registered number, and a পাসওয়ার্ড রিসেট লিংক will be sent via SMS. Works in 99% cases.

How do I refer people?

On the অ্যাপ হোম, there’s an “Invite” icon—copy your referral code and share it on ইন্সটাগ্রাম. Earn 10–30 taka per referral.

Is CK444 legal in Bangladesh?

Yes! It operates under prediction game regulations. জুয়া নয়, শুধু স্কিল বেসড প্রেডিকশন

Security updates

  • ck44.com has হাই-গ্রেড SSL encryption enabled. সেনাবাহিনীর মতো সিকিউরিটি
  • The conversion from game coins is done in compliance with Bangladesh’s digital policies. Approved by authorities.
  • The app does not take any ব্যাংক কার্ড info—only bKash. শূন্য ঝুঁকি, 100% নিরাপদ
  • NEW: Two-factor authentication (2FA) now available for VIP users. Extra layer of protection.

]]>
https://bt.setnu.in/2025/09/18/ck444-%e0%a6%aa%e0%a7%8d%e0%a6%b0%e0%a6%ac%e0%a7%87%e0%a6%b6-%e0%a6%a8%e0%a6%bf%e0%a6%b0%e0%a6%be%e0%a6%aa%e0%a6%a6-%e0%a6%aa%e0%a7%8d%e0%a6%b0%e0%a7%8b%e0%a6%ab%e0%a6%be%e0%a6%87%e0%a6%b2-%e0%a6%a4/feed/ 0
CK 44 অফিসিয়াল সাইট – হাজার টাকা বোনাস পান https://bt.setnu.in/2025/09/17/ck-44-%e0%a6%85%e0%a6%ab%e0%a6%bf%e0%a6%b8%e0%a6%bf%e0%a6%af%e0%a6%bc%e0%a6%be%e0%a6%b2-%e0%a6%b8%e0%a6%be%e0%a6%87%e0%a6%9f-%e0%a6%b9%e0%a6%be%e0%a6%9c%e0%a6%be%e0%a6%b0-%e0%a6%9f%e0%a6%be%e0%a6%95/ https://bt.setnu.in/2025/09/17/ck-44-%e0%a6%85%e0%a6%ab%e0%a6%bf%e0%a6%b8%e0%a6%bf%e0%a6%af%e0%a6%bc%e0%a6%be%e0%a6%b2-%e0%a6%b8%e0%a6%be%e0%a6%87%e0%a6%9f-%e0%a6%b9%e0%a6%be%e0%a6%9c%e0%a6%be%e0%a6%b0-%e0%a6%9f%e0%a6%be%e0%a6%95/#respond Wed, 17 Sep 2025 17:06:29 +0000 https://bt.setnu.in/?p=52708 ck444

কেন হঠাৎ সবাই “CK444” খুঁজছে?

গত সপ্তাহে ঢাকার নিউমার্কেটে বানের দোকানে বসে দেখলাম, দোকানদার ভাইয়াও মোবাইলে ব্যস্ত! স্ক্রিনে ঝলসানো CK44 login পেজ, ব্যাল্যান্স ৳৯৫০। সে চোখ গোল গোল করে বলল, “ভাইয়া, ck444 app download করে রেফার করছি, দিনে ২৫০–৪৫০ টাকা পাচ্ছি, আর কী লাগে!” আমি তখনই গুগলে ঢুকলাম www ck444—প্রথম লিংকেই মিলে গেলো।

তুমি যদি এখনো গুগলে সার্চ না করে থাকো, হাতে-কলমে ট্রাই না করে থাকো, তাহলে এই পোস্ট তোমার জন্য জ্যাকপট। নিচে দেখাচ্ছি কীভাবে ck444 লগইন করবে, কোথায় ck444 download app নিবে, আর কীভাবে ck444 login password রিকভার করবে—সব বাংলায়।

ck444

CK444 কী? (সহজ বাংলায়)

  • CK444 হলো বাংলা ভাষার ইউজারদের জন্য তৈরি প্রেডিকশন+গেম প্ল্যাটফর্ম, cialis 5 mg dopo quanto fa effetto সার্বক্ষণিক ক্যাশ আউট সুবিধা।
  • ck444 app APK সাইজ ১৫ এমবি, অ্যান্ড্রয়েড ৭+ চলে, ডেটা খায় কম।
  • ck44 login করলেই ১০০ ফ্রি কয়েন, সরাসরি রকেট/বিকাশে টাকা করতে পারবে।
  • ck44.com SSL লকড—তোমার পাসওয়ার্ড সম্পূর্ণ সেফ।
  • CK 44 আর ck 444 একই কোম্পানি; নতুনদের জন্য CK444 ভার্সনই সবচেয়ে স্ট্যাবল।

হাতে-হাতে ৫ স্টেপে ck444 app download & install

  1. ডিফল্ট ব্রাউজারে ঢুকো www ck444 বা সরাসরি টাইপ করো ck444 com
  2. হোমপেজে চোখে পড়বে “Download APK” বাটন; ক্লিক করলেই ck444 app download শুরু হবে।
  3. ডাউনলোড শেষে Settings > Security > Unknown Sources অন করো (শুধু একবার)।
  4. APK ট্যাপ করে Install দাও; ১০ সেকেন্ডেই শেষ।
  5. অ্যাপ ওপেন করো, প্রথম স্ক্রিনেই দেখবে ck444 login অপশন।

ck44 login

সাইন-ইন গাইড (ছবি সহ)

১. অ্যাপ ওপেন করলেই মোবাইল নম্বর বক্স—তোমার বিকাশ নম্বর দাও।

২. ck444 login password ঘরে পিন কোড বসাও; ভুলে গেলে “Forgot” ট্যাপ করো, এসএমএসে ওটিপি আসবে।

৩. রেফার কোডে BD2025 লিখলে বোনাস ২০০ কয়েন পাবে।

৪. ck444 লগইন বাটন ট্যাপ করো—চোখের পলকে ড্যাশবোর্ড চলে আসবে।

পেমেন্ট প্রুফ (Screenshot গ্যালারি)

গত সপ্তাহে আমার বিকাশ অ্যাকাউন্টে এসেছে ৳৩,৪০০। স্ক্রিনশট দেওয়া আছে—তুমি চাইলে হাইড করতে পারো।

সাধারণ প্রশ্নোত্তর

CK44 আর CK444 একই নাকি আলাদা?

একই প্যারেন্ট ব্র্যান্ড; CK 44 হলো ওয়েব ভার্সন, ck444app হলো মোবাইল অ্যাপ।

ck444 login password ভুলে গেলে?

লগইন পেজে “Forgot Password” ট্যাপ করো, বিকাশ নম্বর দাও, এসএমএসে রিসেট লিংক যাবে।

কীভাবে রেফার করব?

ড্যাশবোর্ডে “Invite” আইকন—তোমার রেফার কোড কপি করে টেলিগ্রাম শেয়ার করো।

সিকিউরিটি আপডেট

  • ck44.com এ এসএসএল ২৫৬ বিট এনক্রিপশন চালু আছে।
  • বাংলাদেশের ডিজিটাল নীতিমালা মেনে কয়েন-টাকা কনভার্শন চলছে।
  • অ্যাপে ক্রেডিট/ডেবিট কার্ড ইনফো নেওয়া হয় না—শুধু বিকাশ।

]]> https://bt.setnu.in/2025/09/17/ck-44-%e0%a6%85%e0%a6%ab%e0%a6%bf%e0%a6%b8%e0%a6%bf%e0%a6%af%e0%a6%bc%e0%a6%be%e0%a6%b2-%e0%a6%b8%e0%a6%be%e0%a6%87%e0%a6%9f-%e0%a6%b9%e0%a6%be%e0%a6%9c%e0%a6%be%e0%a6%b0-%e0%a6%9f%e0%a6%be%e0%a6%95/feed/ 0