├── admin/ /admin/ ├── login.php ├── logout.php ├── dashboard.php ├── users/ │ ├── index.php │ ├── view.php │ ├── edit.php │ ├── ban.php │ ├── wallet.php │ └── activity.php ├── creators/ │ ├── index.php │ ├── view.php │ ├── verification.php │ ├── earnings.php │ └── analytics.php content.php approve.php reject.php feature.php delete.php reports.php transactions.php withdrawals.php content_views.php ├── videos/ │ ├── dashboard.php │ ├── add.php │ ├── edit.php │ ├── view.php │ ├── pending.php │ ├── approved.php │ ├── rejected.php │ ├── featured.php │ ├── categories.php │ ├── earnings.php │ ├── analytics.php │ ├── reports.php │ └── settings.php ├── shorts/ │ ├── dashboard.php │ ├── add.php │ ├── edit.php │ ├── pending.php │ ├── approved.php │ ├── rejected.php │ ├── earnings.php │ ├── analytics.php │ ├── reports.php │ └── settings.php ├── youtube/ │ ├── dashboard.php │ ├── add.php │ ├── edit.php │ ├── pending.php │ ├── approved.php │ ├── rejected.php │ ├── earnings.php │ ├── analytics.php │ └── settings.php ├── movies/ │ ├── dashboard.php │ ├── add.php │ ├── edit.php │ ├── pending.php │ ├── approved.php │ ├── featured.php │ ├── genres.php │ ├── earnings.php │ ├── analytics.php │ ├── reports.php │ └── settings.php ├── series/ │ ├── dashboard.php │ ├── series.php │ ├── seasons.php │ ├── episodes.php │ ├── pending.php │ ├── approved.php │ ├── earnings.php │ ├── analytics.php │ ├── reports.php │ └── settings.php ├── blogs/ │ ├── dashboard.php │ ├── add.php │ ├── edit.php │ ├── pending.php │ ├── approved.php │ ├── categories.php │ ├── tags.php │ ├── earnings.php │ ├── analytics.php │ ├── reports.php │ └── settings.php ├── pdfs/ │ ├── dashboard.php │ ├── add.php │ ├── edit.php │ ├── pending.php │ ├── approved.php │ ├── earnings.php │ ├── analytics.php │ ├── reports.php │ └── settings.php ├── news/ │ ├── dashboard.php │ ├── add.php │ ├── edit.php │ ├── pending.php │ ├── approved.php │ ├── bonus-settings.php │ ├── earnings.php │ ├── analytics.php │ ├── reports.php │ └── settings.php ├── approvals/ │ ├── index.php │ ├── videos.php │ ├── shorts.php │ ├── movies.php │ ├── series.php │ ├── blogs.php │ ├── pdfs.php │ └── news.php ├── comments/ │ ├── index.php │ ├── pending.php │ ├── reported.php │ └── spam.php ├── reports/ │ ├── index.php │ ├── content.php │ ├── users.php │ └── resolved.php ├── followers/ │ ├── index.php │ └── analytics.php ├── messages/ │ ├── inbox.php │ ├── chat.php │ └── broadcast.php ├── wallet/ │ ├── dashboard.php │ ├── transactions.php │ ├── credit.php │ └── debit.php ├── withdrawals/ │ ├── pending.php │ ├── approved.php │ ├── rejected.php │ ├── faucetpay.php │ └── upi.php ├── rewards/ │ ├── settings.php │ ├── logs.php │ └── statistics.php ├── advertisements/ │ ├── dashboard.php │ ├── banners.php │ ├── adsense.php │ ├── native.php │ ├── video-ads.php │ └── statistics.php ├── notifications/ │ ├── index.php │ ├── create.php │ └── broadcast.php ├── seo/ │ ├── settings.php │ ├── sitemap.php │ ├── robots.php │ └── schema.php ├── settings/ │ ├── general.php │ ├── mail.php │ ├── social.php │ ├── themes.php │ ├── upload.php │ └── security.php ├── backup/ │ ├── index.php │ ├── create.php │ ├── download.php │ └── restore.php └── logs/ ├── activity.php ├── login.php ├── security.php └── errors.php ├── creator/ ├── user/ ├── api/ ├── ajax/ ├── assets/ ├── uploads/ ├── includes/ /includes/ ├── config.php ├── database.php ├── functions.php ├── auth.php ├── session.php ├── csrf.php ├── security.php ├── validator.php ├── seo.php ├── pagination.php ├── upload.php ├── image.php ├── notifications.php ├── wallet.php ├── withdrawal.php ├── reward_engine.php ├── reward_security.php ├── reward_balance.php ├── advertisements.php └── mail.php ├── header.php ├── footer.php ├── admin_header.php ├── admin_footer.php ├── creator_header.php ├── creator_footer.php ├── sidebar.php ├── seo.php └── theme.php ├── modules/ ├── cron/ ├── install/ ├── storage/ ├── logs/ ├── cache/ ├── vendor/ │ ├── index.php ├── login.php ├── register.php ├── search.php ├── profile.php ├── reward.php ├── sitemap.xml ├── robots.txt ├── .htaccess └── composer.json /assets/ ├── css/ │ ├── bootstrap.min.css │ ├── style.css │ ├── dark.css │ ├── mobile.css │ └── admin.css │ ├── js/ │ ├── jquery.min.js │ ├── bootstrap.bundle.min.js │ ├── app.js │ ├── reward.js │ ├── shorts.js │ ├── chat.js │ └── notifications.js │ ├── images/ │ ├── fonts/ │ └── icons/ /uploads/ ├── avatars/ ├── covers/ ├── videos/ ├── shorts/ ├── youtube/ ├── blogs/ ├── pdfs/ ├── movies/ │ ├── posters/ │ ├── banners/ │ └── files/ │ ├── series/ │ ├── posters/ │ └── banners/ │ ├── episodes/ ├── news/ ├── thumbnails/ └── temp/ /modules/ ├── videos/ ├── shorts/ ├── youtube/ ├── blogs/ ├── pdfs/ ├── movies/ ├── series/ ├── episodes/ ├── news/ ├── rewards/ ├── wallet/ ├── withdrawals/ ├── comments/ ├── likes/ ├── bookmarks/ ├── reports/ ├── followers/ ├── messages/ ├── activities/ ├── notifications/ ├── advertisements/ └── seo/ /creator/ ├── dashboard.php ├── videos.php ├── add-video.php ├── edit-video.php ├── shorts.php ├── add-short.php ├── youtube.php ├── blogs.php ├── add-blog.php ├── pdfs.php ├── add-pdf.php ├── movies.php ├── add-movie.php ├── series.php ├── add-series.php ├── episodes.php ├── add-episode.php ├── news.php ├── add-news.php ├── earnings.php ├── wallet.php ├── withdrawals.php ├── followers.php ├── messages.php ├── notifications.php ├── profile.php └── settings.php /user/ ├── profile.php ├── followers.php ├── following.php ├── messages.php ├── activity.php ├── bookmarks.php ├── history.php ├── notifications.php └── settings.php /admin/ ├── login.php ├── dashboard.php ├── users.php ├── creators.php ├── videos.php ├── shorts.php ├── youtube.php ├── blogs.php ├── pdfs.php ├── movies.php ├── series.php ├── episodes.php ├── news.php ├── approvals.php ├── comments.php ├── reports.php ├── followers.php ├── messages.php ├── withdrawals.php ├── wallet.php ├── reward-settings.php ├── advertisements.php ├── notifications.php ├── seo-settings.php ├── site-settings.php ├── backup.php └── logs.php /api/ ├── auth/ │ ├── rewards/ │ ├── wallet/ │ ├── withdrawals/ │ ├── videos/ │ ├── shorts/ │ ├── blogs/ │ ├── pdfs/ │ ├── movies/ │ ├── series/ │ ├── episodes/ │ ├── news/ │ ├── comments/ │ ├── likes/ │ ├── followers/ │ ├── messages/ │ └── notifications/ /ajax/ ├── like.php ├── comment.php ├── follow.php ├── unfollow.php ├── send-message.php ├── notification-read.php ├── reward-track.php ├── search.php └── load-more.php /cron/ ├── rewards.php ├── clean_views.php ├── clean_sessions.php ├── daily_reports.php ├── withdrawal_checker.php ├── notification_sender.php └── sitemap_generator.php /storage/ ├── backups/ ├── exports/ ├── invoices/ ├── reports/ └── temp/ /logs/ ├── errors/ ├── security/ ├── rewards/ ├── withdrawals/ └── uploads/